:root {
  --green-dark: #1E2D1C;
  --bg-secondary: #EDE8DC;
  --bg-primary: #FFFFFF;
  --black: #000000;
  --text-dark: #161616;
}

.dark {
  --bg-secondary: #161616;
  --text-on-bg: #F5F2EC;
  --bg-primary: #1A1A1A;
  --black: #000000;
  --text-dark: #F5F2EC;
}

.dark .hero,
.dark .floating-nav,
.dark .nav-drawer,
.dark .cta,
.dark .services {
  color: var(--text-on-bg);
}

.dark .products-header {
  color: var(--text-on-bg);
}

.dark .about,
.dark .products-header,
.dark .products-overlay-content {
  background-color: #1E1E1E;
}

.dark .contact {
  background-color: var(--bg-secondary);
}

.dark .testimonials {
  background-color: #1C1C1C;
}

.dark .hours {
  background-color: #1C1C1C;
}

.dark .location {
  background-color: #1E1E1E;
  color: var(--text-on-bg);
}

.dark .location-heading,
.dark .location-address {
  color: var(--text-on-bg);
}

.location .contact-label,
.location .contact-value,
.location .contact-value a,
.location .contact-social-link {
  color: var(--bg-secondary);
}

.location .contact-value a {
  text-decoration: underline;
  text-decoration-color: rgba(237, 232, 220, 0.3);
  text-underline-offset: 3px;
}

.location .contact-accessibility {
  color: var(--bg-secondary);
  opacity: 0.6;
}

.location .contact-item {
  border-color: rgba(237, 232, 220, 0.2);
}

.dark .testi-bubble,
.dark .testi-bubble-tail {
  background-color: #1E1E1E;
}

.dark .testi-prev,
.dark .testi-next {
  background-color: #1E1E1E;
}

.dark .testi-stars {
  color: #d4a853;
}



.dark .stylist {
  background-color: #1E1E1E;
}

.dark .floating-nav-link,
.dark .hero-nav-link,
.dark .lang-btn,
.dark .lang-divider,
.dark .nav-drawer-link,
.dark .cta-phone,
.dark .cta-text,
.dark .services-heading,
.dark .services-group-title,
.dark .service-name,
.dark .service-overlay-title,
.dark .service-overlay-text {
  color: var(--text-on-bg);
}

.dark .about-value-label,
.dark .about-value-icon i {
  color: var(--text-on-bg);
}

.dark .about-value-icon i {
  opacity: 0.85;
}

.dark .value-tooltip {
  color: var(--text-on-bg);
  background: var(--green-dark);
}

.dark .cta-overlay-title,
.dark .cta-overlay-text {
  color: var(--text-on-bg);
}

.dark .products-title,
.dark .services-heading,
.dark .contact-heading,
.dark .cta-text {
  border-color: var(--text-on-bg);
}

.dark .nav-circle,
.dark .nav-drawer-circle {
  border-width: 3px;
  border-color: rgba(30, 30, 30, 0.8);
}

.dark .nav-hamburger span {
  background: #EDE8DC;
}

.dark .contact-value a {
  text-decoration-color: rgba(237, 232, 220, 0.3);
}

.dark .about-text-inner p {
  color: #A8A59E;
  opacity: 0.85;
}

.dark .about-text-title {
  color: var(--text-on-bg);
}



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

html {
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 3rem;
}

body {
  font-family: 'Nunito', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 400;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* ===== Lang Toggle ===== */
.lang-toggle {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--bg-secondary);
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s;
  padding: 0;
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-btn--active {
  opacity: 1;
}

.lang-divider {
  color: var(--bg-secondary);
  opacity: 0.3;
  font-size: 0.7rem;
}

@media (max-width: 950px) {
  .lang-toggle {
    top: 1rem;
    right: 1rem;
  }
}

/* ===== Hero ===== */
.hero {
  background-color: var(--green-dark);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-wordmark {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#watermark-canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
}

#watermark-canvas.loaded {
  opacity: 1;
  transition: opacity 0.3s;
}

.emblem-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100vh;
  width: auto;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
}

.hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

/* ===== Floating Nav ===== */
.floating-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--green-dark);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem 2rem;
  display: flex;
  align-items: center;
  z-index: 200;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.floating-nav.visible {
  transform: translateY(0);
}

.floating-nav a:first-child {
  display: flex;
  align-items: center;
}

.floating-nav-logo {
  height: 28px;
  width: auto;
  flex-shrink: 0;
  display: block;
}

.floating-nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 3rem;
}

.floating-nav-link {
  color: var(--bg-secondary);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.floating-nav-link:hover,
.floating-nav-link.active {
  color: #fff;
  text-underline-offset: 6px;
  opacity: 1;
  text-decoration: underline;
}

/* ===== Hamburger ===== */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.nav-right .lang-toggle {
  position: static;
}

.nav-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2.5px solid rgba(237, 232, 220, 0.4);
  flex-shrink: 0;
  cursor: pointer;
  filter: none !important;
}

.nav-drawer-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2.5px solid rgba(237, 232, 220, 0.4);
  flex-shrink: 0;
  cursor: pointer;
  filter: none !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 210;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg-secondary);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Drawer ===== */
.nav-drawer {
  display: none;
}

@media (max-width: 950px) {
  .floating-nav {
    padding: 0.5rem 1rem;
  }

  .floating-nav-logo {
    height: 22px;
  }

  .floating-nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-circle {
    display: none;
  }



.floating-nav-logo {
    height: 22px;
  }

  .floating-nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .nav-circle {
    display: none;
  }

  .nav-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--green-dark);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    overflow-y: auto;
  }

  .nav-drawer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 5rem;
    gap: 2rem;
  }

  .nav-drawer.open {
    opacity: 1;
    pointer-events: all;
  }


.nav-drawer-link {
  color: var(--bg-secondary);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}

  .nav-drawer-link:hover,
  .nav-drawer-link.active {
    color: #fff;
  text-underline-offset: 6px;
    opacity: 1;
    text-decoration: underline;
  }
}

/* ===== Hero Nav ===== */
.hero-nav {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 3rem;
  z-index: 1;
}

.hero-nav-link {
  color: var(--bg-secondary);
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.hero-nav-link:hover {
  text-underline-offset: 6px;
  opacity: 1;
  text-decoration: underline;
}

@media (max-width: 950px) {
  .hero-nav {
    gap: 1rem;
    bottom: 2rem;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    padding: 0 1rem;
  }

  .hero-nav-link {
    font-size: 0.75rem;
  }
}

/* ===== Blurb ===== */
.blurb {
  background-color: var(--bg-primary);
  padding: 6rem 2rem 5rem;
  display: flex;
  justify-content: center;
}

.blurb-content {
  max-width: 800px;
  text-align: center;
}

.blurb-tagline {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(1rem, 4.5vw, 3.5rem);
  font-weight: 400;
  font-style: italic;
  white-space: nowrap;
  display: inline-block;
  max-width: 100%;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  line-height: 1.15;
  color: var(--text-dark);
}

html[lang="es"] .blurb-tagline {
  font-size: clamp(0.9rem, 4vw, 3rem);
}

.blurb-text {
  font-size: 1.125rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--text-dark);
  opacity: 0.85;
  max-width: 680px;
  margin: 0 auto;
}

/* ===== Stylist ===== */
.stylist {
  background-color: var(--bg-secondary);
  padding: 5rem 2rem;
}

.stylist-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.stylist-image-wrap {
  flex-shrink: 0;
  width: 320px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(30, 45, 28, 0.15);
}

.stylist-image {
  width: 100%;
  height: auto;
  display: block;
}

.stylist-text {
  flex: 1;
}

.stylist-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.stylist-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.stylist-bio {
  font-size: 1.05rem;
  line-height: 1.9;
  opacity: 0.85;
  color: var(--text-dark);
}

@media (max-width: 950px) {
  .stylist-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .stylist-image-wrap {
    width: 220px;
    height: 220px;
    border-radius: 50%;
  }

  .stylist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .stylist {
    padding: 3rem 1.5rem;
  }
}

/* ===== Instagram Feed ===== */
.insta-feed {
  background-color: var(--bg-primary);
  padding: 5rem 2rem;
  text-align: center;
}

.insta-feed-content {
  max-width: 700px;
  margin: 0 auto;
}

.insta-feed-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
  color: var(--text-dark);
}

.insta-feed-handle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.insta-feed-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1.5px dashed currentColor;
  padding-bottom: 2px;
  transition: opacity 0.2s;
  cursor: pointer;
}

.insta-feed-link:hover {
  opacity: 1;
}

.insta-feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 0 auto;
}

.insta-flip-card {
  aspect-ratio: 2 / 3;
  perspective: 800px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.insta-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-style: preserve-3d;
}

@media (hover: hover) {
  .insta-flip-card:hover .insta-flip-inner {
    transform: rotateY(180deg);
  }
}



.insta-flip-front,
.insta-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 12px;
  overflow: hidden;
}

.insta-flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--green-dark), #3a5a38);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(30, 45, 28, 0.2);
}

.insta-flip-back p {
  color: var(--bg-secondary);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.insta-card-num {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(237, 232, 220, 0.4);
  font-family: 'Raleway', sans-serif;
  z-index: 1;
}

.insta-feed-placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-dark) 0%, #4A5D48 50%, var(--green-dark) 100%);
  background-size: 200% 200%;
  background-position: 0% 0%;
  transition: background-position 0.6s ease;
  position: relative;
  overflow: hidden;
  animation: insta-shimmer 3s ease-in-out infinite alternate;
}

@keyframes insta-shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.insta-feed-placeholder-img::before {
  content: '\f16d';
  font-family: 'Font Awesome 6 Brands';
  font-size: 1.8rem;
  color: rgba(237, 232, 220, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.insta-flip-card:nth-child(odd) .insta-feed-placeholder-img {
  background: linear-gradient(225deg, var(--green-dark) 0%, #4A5D48 50%, var(--green-dark) 100%);
}

.insta-flip-card:nth-child(2) .insta-feed-placeholder-img {
  animation-delay: 0.15s;
}

.insta-flip-card:nth-child(3) .insta-feed-placeholder-img {
  animation-delay: 0.3s;
}

.insta-flip-card:nth-child(4) .insta-feed-placeholder-img {
  animation-delay: 0.45s;
}

.insta-flip-card:nth-child(5) .insta-feed-placeholder-img {
  animation-delay: 0.6s;
}

@media (max-width: 950px) {
  .insta-feed-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }

  .insta-flip-card {
    width: calc(50% - 0.4rem);
    max-width: 160px;
  }
}

.insta-feed-btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.6rem 2rem;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.insta-feed-btn:hover {
  opacity: 1;
}

@media (max-width: 950px) {
  .insta-feed {
    padding: 2.5rem 1.5rem 3rem;
  }
}

/* ===== Instagram Overlay ===== */
.insta-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.insta-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.insta-overlay-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
  line-height: 1;
}

.insta-overlay-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.insta-overlay-prev,
.insta-overlay-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: none;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s, background 0.2s;
  line-height: 1;
}

.insta-overlay-prev:hover,
.insta-overlay-next:hover {
  opacity: 1;
  background: rgba(255,255,255,0.15);
}

.insta-overlay-prev { left: 1rem; }
.insta-overlay-next { right: 1rem; }

.insta-overlay-main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.insta-overlay-stage {
  width: 80vmin;
  height: 80vmin;
  max-width: 500px;
  max-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.insta-overlay-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
  max-width: 420px;
  width: 100%;
  height: 3.5rem;
  overflow-y: auto;
  margin: 0.4rem auto 1.5rem;
  padding: 0 1rem;
  scrollbar-gutter: stable;
}

.insta-overlay-thumbs {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.insta-overlay-thumb {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  padding: 0;
  background: none;
  opacity: 0.4;
}

.insta-overlay-thumb.active,
.insta-overlay-thumb:hover {
  border-color: #fff;
  opacity: 1;
}

.insta-overlay-thumb .insta-feed-placeholder-img {
  animation: none;
  border-radius: 0;
}

@media (max-width: 950px) {
  .insta-overlay-stage {
    width: 90vw;
    height: 90vw;
    max-width: 90vw;
    max-height: 90vw;
  }

  .insta-overlay-prev,
  .insta-overlay-next {
    width: 40px;
    height: 40px;
    font-size: 2rem;
    top: auto;
    bottom: 6rem;
    transform: none;
  }

  .insta-overlay-prev { left: 0.5rem; }
  .insta-overlay-next { right: 0.5rem; }

  .insta-overlay-thumbs {
    gap: 0.3rem;
  }

  .insta-overlay-thumb {
    width: 36px;
    height: 36px;
  }

  .insta-overlay-close {
    font-size: 2rem;
    top: 0.5rem;
    right: 1rem;
  }
}

/* ===== Testimonials Carousel ===== */
.testimonials {
  background-color: #F4F1EA;
  padding: 5rem 2rem;
  text-align: center;
}

.testimonials-content {
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  color: var(--text-dark);
}

.testi-carousel {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testi-slide {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testi-bubble {
  background: var(--bg-primary);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  max-width: 560px;
  width: 100%;
}

.testi-bubble-text {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin: 0;
  color: var(--text-dark);
}

.testi-bubble-tail {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  background: var(--bg-primary);
  box-shadow: 3px 3px 5px rgba(0,0,0,0.04);
}

.testi-name {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-top: 1.5rem;
  color: var(--text-dark);
}

.testi-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.testi-prev-mobile,
.testi-next-mobile {
  display: none;
}

.testi-prev,
.testi-next {
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  background: var(--bg-primary);
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s;
  font-size: 1rem;
  z-index: 2;
}

.testi-prev:hover,
.testi-next:hover {
  opacity: 1;
}

.testi-prev { left: 0; }
.testi-next { right: 0; }

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-dark);
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.2;
  transition: opacity 0.2s;
}

.testi-dot.active,
.testi-dot:hover {
  opacity: 0.6;
}

.testi-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.testi-stars {
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: #e8a317;
}

.testi-rating {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.testi-count {
  font-size: 0.85rem;
  opacity: 0.5;
  color: var(--text-dark);
}

.testi-google-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.65rem 2rem;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 30px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.testi-google-btn:hover {
  opacity: 1;
}

@media (max-width: 950px) {
  .testimonials {
    padding: 3rem 1.5rem;
  }
  .testi-bubble {
    padding: 1.5rem;
  }

  .testi-prev-mobile,
  .testi-next-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-primary);
    border: 1.5px solid var(--text-dark);
    color: var(--text-dark);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    opacity: 0.5;
    transition: opacity 0.2s;
    flex-shrink: 0;
  }

  .testi-prev-mobile:hover,
  .testi-next-mobile:hover {
    opacity: 1;
  }

  .testimonials-heading {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .testi-carousel {
    margin-top: 0.3rem;
  }

  .testi-prev,
  .testi-next {
    display: none;
  }
}

/* ===== Hours ===== */
.hours {
  background-color: var(--bg-secondary);
  padding: 5rem 2rem;
  text-align: center;
}

.hours-content {
  max-width: 480px;
  margin: 0 auto;
}

.hours-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  color: var(--text-dark);
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-day {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--text-dark);
}

.hours-time {
  font-size: 0.9rem;
  opacity: 0.7;
  color: var(--text-dark);
}

@media (max-width: 950px) {
  .hours {
    padding: 3rem 1.5rem;
  }
  .hours-content {
    padding: 2rem 1.5rem 1.5rem;
  }
}

/* ===== Location ===== */
.location {
  background-color: var(--green-dark);
  color: var(--bg-secondary);
  padding: 5rem 2rem;
  text-align: center;
}

.location-content {
  max-width: 620px;
  margin: 0 auto;
}

.location-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  color: var(--bg-secondary);
}

.location-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.location-map iframe {
  display: block;
}

@media (max-width: 950px) {
  .location {
    padding: 3rem 1.5rem;
  }
}

/* ===== About ===== */
.about {
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  position: relative;
}

.about-layout {
  display: flex;
  align-items: stretch;
}

.about-text {
  flex: 1;
  display: flex;
  align-items: flex-start;
  padding: 0 3rem 2rem 5rem;
}

.about-text-inner p {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2;
  opacity: 0.85;
  margin: 0;
}

.about-text-title {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin: 0 0 3rem;
}

@media (min-width: 951px) {
  .about-text-title {
    font-size: 5rem;
    font-weight: 400;
  }

  .about-layout {
    height: 100%;
    overflow-y: auto;
    scrollbar-gutter: stable;
  }

  .about-image-wrap {
    overflow: hidden;
  }

  .about-text-inner .products-title-desktop {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 0.5rem;
    display: inline-block;
  }
}



.products-title-mobile {
  display: none;
}

@media (max-width: 950px) {
  .products-title-mobile {
    display: inline-block;
    font-family: 'Raleway', sans-serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-align: center;
    padding: 1.5rem 1.5rem 0.5rem;
    margin: 0 0 1.5rem;
    border-bottom: 1px solid var(--text-dark);
  }
}

.about-left {
  display: flex;
  align-items: stretch;
}



.about-outer-box {
  background: #1B2819;
  display: flex;
  flex-direction: column;
  width: 160px;
  flex-shrink: 1;
  min-width: 0;
  position: relative;
  cursor: pointer;
  align-self: stretch;
}

.about-outer-box::after {
  display: none;
}

@media (min-width: 951px) {
  .about-outer-box::after {
    display: block;
  }
}

.about-values-card {
  background: var(--green-dark);
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 1.5rem;
}

.about-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  width: 72px;
  flex-shrink: 0;
}

.about-value-icon {
  margin-bottom: 0.4rem;
  flex-shrink: 0;
}

.about-value-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(237, 232, 220, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-width 0.2s;
  overflow: hidden;
}

.about-value:hover .about-value-icon,
.about-value.active .about-value-icon {
  box-shadow: 0 0 0 2.5px rgba(237, 232, 220, 0.6), 0 0 0 0 rgba(237, 232, 220, 0);
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 2.5px rgba(237, 232, 220, 0.6), 0 0 0 0 rgba(237, 232, 220, 0); }
  50% { box-shadow: 0 0 0 3.5px rgba(237, 232, 220, 0.8), 0 0 0 6px rgba(237, 232, 220, 0); }
}

.about-value-icon img {
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.about-value-icon i {
  font-size: 1.25rem;
  color: var(--bg-secondary);
  opacity: 0.85;
}

.about-value-icon--organic img {
  width: 28px;
  height: 28px;
}

.about-value-icon--nontoxic img {
  width: 32px;
  height: 32px;
}

.about-value-icon--eco img {
  width: 44px;
  height: 44px;
  margin-top: 16px;
}

.about-value-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-secondary);
  text-align: center;
  width: 80px;
  line-height: 1.2;
}

.about-right {
  width: 50vw;
  flex-shrink: 0;
  display: flex;
  align-items: stretch;
}

.about-image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image-caption {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(30, 45, 28, 0.85);
  color: var(--bg-secondary);
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  pointer-events: none;
}

.about-image-caption.visible {
  display: block;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

.about-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
}

.about-intro {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.about-mission {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 3rem;
}

/* ===== Products Carousel ===== */
.products-track-wrap {
  overflow: hidden;
  position: relative;
}

.products-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 200%;
}

.products-slide {
  width: 50%;
  flex-shrink: 0;
}

@media (min-width: 951px) {
  .products-slide {
    height: calc(100vh - 290px);
  }
}

.products-play-btn {
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.products-play-btn:hover {
  opacity: 1;
}

.products-play-btn svg {
  width: 100%;
  height: 100%;
}

.snap-hint {
  display: none;
  font-size: 0.55rem;
  color: #4A5D48;
  text-align: center;
  padding: 0.35rem 0 0.4rem;
  opacity: 0.6;
  pointer-events: none;
  letter-spacing: 0.05em;
}

@media (min-width: 951px) {
  .snap-hint {
    display: block;
  }
}


/* ===== Products Header ===== */
.products-header {
  text-align: center;
  padding: 5rem 1rem 0.5rem;
  background: var(--bg-secondary);
  position: relative;
}

@media (min-width: 951px) {
  .products-header {
    padding-bottom: 1.5rem;
  }
}

@media (max-width: 950px) {
  .products-header {
    padding-top: 4rem;
  }
}

.products-title {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  color: var(--text-dark);
  display: inline-block;
  border: 1.5px solid var(--black);
  padding: 0.5rem 1.5rem;
}

.products-scroll-down {
  display: block;
  margin: 0.25rem auto 0.15rem;
  background: none;
  border: none;
  color: var(--text-dark);
  cursor: pointer;
  opacity: 0.4;
  animation: fade-chevron 2s ease-in-out infinite;
  transition: opacity 0.2s;
}

@media (min-width: 951px) {
  .products-scroll-down {
    display: none;
  }
}

.products-scroll-down:hover {
  opacity: 0.8;
}

@keyframes fade-chevron {
  0%, 100% { opacity: 0.15; transform: translateY(0); }
  50% { opacity: 0.6; transform: translateY(4px); }
}

/* ===== Products Nav ===== */
.products-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: var(--bg-primary);
}

.products-prev,
.products-next {
  background: none;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 1rem;
  cursor: pointer;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.products-prev:hover,
.products-next:hover {
  opacity: 1;
}



.products-dots {
  display: flex;
  gap: 0.5rem;
}

.products-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity 0.2s;
}

.products-dot.active {
  opacity: 1;
  background: var(--text-dark);
  color: var(--bg-secondary);
}

.products-overview-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1rem 0.75rem;
  background: var(--bg-primary);
}

.products-overview-btn {
  background: none;
  border: 1.5px solid var(--text-dark);
  color: var(--text-dark);
  cursor: pointer;
  font-size: 0.4rem;
  padding: 0;
  transition: opacity 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.products-overview-btn:hover {
  opacity: 1;
}

.products-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.products-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.products-overlay-content {
  background: var(--bg-secondary);
  color: var(--text-dark);
  max-width: 500px;
  width: 90%;
  padding: 2rem;
  border-radius: 12px;
  position: relative;
}

.products-overlay-list {
  max-height: 50vh;
  overflow-y: auto;
}

.products-overlay-close {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  opacity: 0.5;
}

.products-overlay-close:hover {
  opacity: 1;
}

.products-overlay-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

.products-overlay-item {
  padding: 1rem;
  border: 1px solid rgba(30,45,28,0.15);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
}

.products-overlay-item:hover {
  background: rgba(30,45,28,0.05);
}

.products-overlay-item strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.products-overlay-item p {
  font-size: 0.85rem;
  opacity: 0.7;
  margin: 0;
}

/* ===== Services ===== */
.services {
  background-color: var(--green-dark);
  color: var(--bg-secondary);
  padding: 5rem 2rem;
  text-align: center;
}

.services-content {
  max-width: 800px;
  margin: 0 auto;
}

.services-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.02em;
  margin-bottom: 3rem;
  display: inline-block;
  border: 1.5px solid var(--bg-secondary);
  padding: 0.5rem 1.5rem;
}

.services-group {
  margin-bottom: 3rem;
}

.services-group:last-child {
  margin-bottom: 0;
}

.services-group-title {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2.5rem;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.service-card {
  flex: 0 0 auto;
  width: 160px;
}

.service-card-image {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  transition: border-radius 0.3s, transform 0.3s;
  transform-origin: center center;
}

.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.service-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  background: rgba(30, 45, 28, 0.88);
  overflow: hidden;
}

.service-card:hover .service-card-image,
.service-card.active .service-card-image {
  border-radius: 10px;
  transform: scale(1.35);
  z-index: 10;
}

.service-card:hover .service-overlay,
.service-card.active .service-overlay {
  opacity: 1;
}

.service-card:hover .service-name,
.service-card.active .service-name {
  opacity: 0;
}

.service-overlay-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-secondary);
  text-align: center;
  margin-bottom: 0.3rem;
}

.service-overlay-text {
  font-size: 0.65rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--bg-secondary);
  text-align: center;
  margin: 0;
  opacity: 0.85;
}

.service-name {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
}

.service-card {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
  z-index: 1;
}

@media (max-width: 950px) {
  .services {
    padding: 4rem 1.5rem 3rem;
  }

  .services-heading {
    font-size: 2.25rem;
  }

  .service-card {
    width: 130px;
  }

  .service-card-image {
    width: 130px;
    height: 130px;
  }

  .service-image {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 950px) {
  .products-title-desktop {
    display: none;
  }

  .products-title-mobile {
    display: block;
    order: 0;
  }
}

@media (max-width: 950px), (max-height: 650px) {
  .about-layout {
    flex-direction: column;
  }

  .about-text {
    padding: 1.5rem 1.5rem 2rem;
    order: 3;
  }

  .about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .about-left {
    order: 2;
  }

  .about-right {
    order: 1;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .about-outer-box {
    width: 100%;
    max-width: 100%;
  }

  .about-values-card {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .about-value-icon {
    width: 40px;
    height: 40px;
  }

  .about-value-icon--organic img {
    width: 22px;
    height: 22px;
  }

  .about-value-icon--nontoxic img {
    width: 24px;
    height: 24px;
  }

  .about-value-icon--eco img {
    width: 32px;
    height: 32px;
  }

  .about-value-label {
    font-size: 0.8rem;
  }

  .about-content {
    padding: 3rem 1.5rem;
  }

  .about-heading {
    font-size: 2rem;
  }

  .about-intro {
    font-size: 1.35rem;
  }
}

/* ===== CTA ===== */
.cta {
  background-color: #1C2B1B;
  color: var(--bg-secondary);
  padding: 4rem 2rem;
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-text {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  display: inline-block;
  border: 1.5px dashed var(--bg-secondary);
  padding: 0.5rem 1.5rem;
}

.cta-phone {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 3rem;
  text-decoration: underline;
  text-decoration-style: dashed;
  text-underline-offset: 4px;
  text-decoration-color: rgba(237, 232, 220, 0.2);
}

.cta-treatments-title {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 2.5rem;
}

.cta-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
  row-gap: 2rem;
}

.cta-card-image {
  position: relative;
  width: 160px;
  height: 160px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  transition: border-radius 0.3s, transform 0.3s;
  transform-origin: center center;
}

.cta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  background: rgba(30, 45, 28, 0.88);
  overflow: hidden;
}

.cta-card:hover .cta-card-image,
.cta-card.active .cta-card-image {
  border-radius: 10px;
  transform: scale(1.35);
  z-index: 10;
}

.cta-card:hover .cta-overlay,
.cta-card.active .cta-overlay {
  opacity: 1;
}

.cta-card:hover .cta-name,
.cta-card.active .cta-name {
  opacity: 0;
}

.cta-card {
  position: relative;
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-overlay-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bg-secondary);
  text-align: center;
  margin-bottom: 0.3rem;
}

.cta-overlay-text {
  font-size: 0.65rem;
  font-weight: 300;
  line-height: 1.4;
  color: var(--bg-secondary);
  text-align: center;
  margin: 0;
  opacity: 0.85;
}

.cta-name {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.4;
}

@media (max-width: 950px) {
  .cta {
    padding: 2.5rem 1.5rem;
  }

  .cta-text {
    font-size: 1.5rem;
  }

  .cta-phone {
    font-size: 1.25rem;
  }

  .cta-card {
    width: 130px;
  }

.cta-card-image {
    width: 130px;
    height: 130px;
  }
}

/* ===== Contact ===== */
.contact {
  background-color: var(--bg-secondary);
  color: var(--text-dark);
  padding: 5rem 2rem;
  text-align: center;
}

.contact-content {
  max-width: 700px;
  margin: 0 auto;
}

.contact-heading {
  font-family: 'Raleway', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 3rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  display: inline-block;
  border: 1.5px solid var(--black);
  padding: 0.5rem 1.5rem;
}

.contact-cta {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 3rem;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}

.contact-value {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.contact-value a {
  text-decoration: underline;
  text-decoration-color: rgba(22, 22, 22, 0.3);
  text-underline-offset: 3px;
}

.contact-social-link {
  color: var(--text-dark);
  font-size: 1.5rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  text-decoration: none;
}

.contact-accessibility {
  font-size: 0.875rem;
  opacity: 0.6;
  max-width: 480px;
  margin: 0 auto;
}



.contact-row {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 2rem;
}

.contact-item--full {
  flex: 0 0 auto;
}

.contact-item[data-qr] {
  cursor: pointer;
}

.contact-socials {
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.contact-social-link {
  color: var(--text-dark);
  font-size: 1.5rem;
  opacity: 0.6;
  transition: opacity 0.2s;
  text-decoration: none;
}

.contact-social-link:hover {
  opacity: 1;
}

/* ===== Value Tooltip ===== */
.value-tooltip {
  position: fixed;
  background: var(--green-dark);
  color: var(--bg-secondary);
    padding: 0.5rem 1rem 0.5rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.4;
  max-width: 220px;
  pointer-events: none;
  z-index: 500;
  opacity: 0;
  transition: opacity 0.2s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  text-align: center;
}

@media (min-width: 951px) {
  .value-tooltip {
    transform: translateX(-100%) translateY(-50%);
    clip-path: polygon(16px 0, calc(100% - 14px) 0, 100% 50%, calc(100% - 14px) 100%, 16px 100%, 0 50%);
  }
}

@media (max-width: 950px) {
  .value-tooltip {
    transform: translateX(-50%) translateY(-100%);
    clip-path: polygon(0 12px, 100% 12px, 100% calc(100% - 14px), 50% 100%, 0 calc(100% - 14px));
    padding: 0.75rem 0.75rem 0.6rem;
  }
}

.value-tooltip.visible {
  opacity: 1;
}

body.page-contact {
  background-color: var(--bg-secondary);
}

/* ===== QR Popup ===== */
.qr-popup {
  position: fixed;
  pointer-events: none;
  z-index: 300;
  opacity: 0;
  transition: opacity 0.2s;
  padding: 8px;
  background: #fff;
  border: 2px solid var(--black);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.qr-popup.visible {
  opacity: 1;
}

.qr-popup img {
  display: block;
  width: 140px;
  height: 140px;
}

@media (max-width: 950px) {
  .contact {
    padding: 4rem 1.5rem 3rem;
  }

  .contact-heading {
    font-size: 2.25rem;
  }

  .contact-row {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .contact-item {
    flex: 1 1 auto;
    min-width: 140px;
  }
}

@media (max-width: 950px) {
  .hero {
    min-height: 100dvh;
    padding: 3rem 1.5rem;
  }

  .hero-image {
    max-width: 80%;
  }

  .blurb {
    padding: 3rem 1.5rem;
  }

  .blurb-text {
    font-size: 1rem;
  }

  .blurb-tagline {
    font-weight: 700;
    white-space: normal;
    font-size: clamp(1.4rem, 7vw, 2.5rem);
    margin-top: 2rem;
  }

  html[lang="es"] .blurb-tagline {
    font-size: clamp(1.4rem, 7vw, 2.5rem);
  }
}
