/* ── Variables ── */
:root {
  --cream: #F4EDE4;
  --sage: #A8B5A1;
  --sage-dark: #6d7e69;
  --mauve: #B47B8C;
  --mauve-dark: #9a6475;
  --pink-tint: #F7C6D7;
  --pink-soft: #FFDDE6;
  --ink: #2b2523;
  --ink-mid: #5a4f4a;
  --ink-light: #9a8e88;
  --rule: rgba(43,37,35,.08);
  --sans: 'Montserrat', sans-serif;
  --serif: 'Playfair Display', Georgia, serif;
  --radius: 4px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --radius-lg: 12px;
  --radius-md: 8px;
  --shadow-soft: 0 4px 20px rgba(43, 37, 35, 0.05);
  --shadow-hover: 0 12px 32px rgba(43, 37, 35, 0.1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 300;
  background: #FAFAF8;
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { font-family: var(--sans); }

/* ── Layout ── */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.wrap--narrow { max-width: 720px; margin: 0 auto; padding: 0 40px; }

/* ── Typography ── */
.eyebrow {
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}
.body-text {
  font-size: .92rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-mid);
}
hr.rule {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  background: transparent;
}
.btn--primary {
  background: var(--mauve);
  color: #fff;
  box-shadow: none;
}
.btn--primary:hover {
  background: var(--mauve-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(180, 123, 140, 0.25);
}
.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn--ghost {
  color: var(--mauve);
  border-color: var(--mauve);
  border-radius: var(--radius-lg);
}
.btn--ghost:hover { background: var(--mauve); color: var(--cream); transform: translateY(-2px); }

.btn svg { width: 14px; height: 14px; stroke-width: 2; transition: transform .3s ease; }
.btn:hover svg { transform: translateX(3px); }

/* ── Navbar ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition), transform var(--transition);
}
.nav.hidden {
  transform: translateY(-100%);
}
.nav.solid {
  background: rgba(250, 250, 248, 0.8);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(43,37,35,.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo {
  width: 44px; height: 44px;
  object-fit: contain;
  transition: transform .3s ease;
}
.nav-brand:hover .nav-logo { transform: rotate(8deg) scale(1.05); }
.nav-wordmark {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--ink);
}

/* ── Nav transparent state (over hero) ── */
.nav:not(.solid) .nav-wordmark {
  color: #fff;
}
.nav:not(.solid) .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}
.nav:not(.solid) .nav-links a:hover {
  color: #fff;
}
.nav:not(.solid) .nav-links a::after {
  background: #fff;
}
.nav:not(.solid) .nav-cta {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border-color: rgba(255, 255, 255, 0.35);
}
.nav:not(.solid) .nav-cta:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
.nav:not(.solid) .hamburger {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: .7rem; font-weight: 400;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  transition: color .25s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 1px;
  background: var(--mauve);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta {
  font-size: .62rem !important;
  letter-spacing: .16em !important;
  color: var(--cream) !important;
  background: var(--mauve);
  border: 1px solid var(--mauve);
  padding: 10px 22px;
  border-radius: var(--radius);
  transition: background .25s, box-shadow .25s, transform .2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--mauve-dark);
  box-shadow: 0 4px 16px rgba(180,123,140,.3);
  transform: translateY(-1px);
}

/* Hamburger Pill Button */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(43, 37, 35, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(43, 37, 35, 0.08);
  padding: 8px 18px;
  border-radius: 24px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
.hamburger::after {
  content: 'Menú';
}
.hamburger.open::after {
  content: 'Cerrar';
}
.hamburger span { display: none; }

.mobile-nav {
  display: flex;
  position: fixed; inset: 0; z-index: 99;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 400;
  color: var(--ink);
  transition: color .2s;
}
.mobile-nav a:hover { color: var(--mauve); }

/* ── Hero Carousel ── */
.hero-carousel-section {
  position: relative;
  height: 100svh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  background: var(--ink);
}
.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}
.carousel-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  z-index: 1;
}
.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.carousel-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.carousel-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 6s ease-out;
}
.carousel-slide.active .carousel-bg img {
  transform: scale(1);
}
.carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
  z-index: 1;
}
.carousel-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 80px;
  max-width: 800px;
  margin: 0;
}
.carousel-content > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.carousel-slide.active .carousel-content .carousel-tagline { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.carousel-slide.active .carousel-content .hero-title { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.carousel-slide.active .carousel-content .hero-subtitle { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.carousel-slide.active .carousel-content .hero-actions { transition-delay: 0.8s; opacity: 1; transform: translateY(0); }

.carousel-content .hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 10px;
}
.carousel-content .hero-title em {
  font-style: italic; color: var(--pink-soft);
}
.carousel-content .hero-subtitle {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 48px;
}
.carousel-tagline {
  color: var(--pink-tint);
  margin-bottom: 28px;
}
.hero-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;
}
.carousel-control:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-50%) scale(1.1);
}
.carousel-control.prev { left: 24px; }
.carousel-control.next { right: 24px; }
.carousel-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.dot:hover { background: rgba(255,255,255,0.8); }
.dot.active {
  background: #fff;
  transform: scale(1.3);
}

/* ── Section spacing ── */

.section { padding: 120px 0; }
.section--sm { padding: 80px 0; }

/* ── Alternating section backgrounds ── */
.section--tinted { background: var(--cream); }

/* ── About / Esencia ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-label { margin-bottom: 20px; }
.about-heading { margin-bottom: 32px; }
.about-text { margin-bottom: 18px; }
.about-visual {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: var(--radius);
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.about-visual:hover img { transform: scale(1.04); }
.about-visual-caption {
  position: absolute;
  bottom: 20px; left: 20px;
  font-family: var(--serif);
  font-size: .82rem;
  font-style: italic;
  color: rgba(244,237,228,.9);
  max-width: 200px;
  line-height: 1.5;
  text-shadow: 0 1px 8px rgba(0,0,0,.3);
}

/* ── Catalog Grid ── */
.catalog-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.catalog-card {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  width: 240px;
  height: 240px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
  display: block;
}
.catalog-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.catalog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.catalog-card:hover img { transform: scale(1.05); }
.catalog-overlay {
  position: absolute; inset: 0;
  background: rgba(43,37,35,.4);
  display: flex; flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  transition: background .4s ease;
}
.catalog-card:hover .catalog-overlay {
  background: rgba(43,37,35,.2);
}
.catalog-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 0;
  text-align: center;
  text-shadow: 0 2px 6px rgba(0,0,0,.6);
}
@media (max-width: 768px) {
  .catalog-grid { gap: 24px; }
  .catalog-card { width: 160px; height: 160px; }
  .catalog-title { font-size: 1.1rem; }
}

/* ── Values Cards ── */
.values-header { text-align: center; margin-bottom: 56px; }

/* ── Services / Showcase ── */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: transform .4s ease, box-shadow .4s ease;
}
.showcase-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

/* ── Mini Carousels (Lo que hacemos) ── */
.mini-carousel-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--cream);
}
.mini-carousel-slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  object-fit: cover;
  z-index: 1;
}
.mini-carousel-slide.active {
  opacity: 1;
  z-index: 2;
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.showcase-card:hover img { transform: scale(1.06); }
.showcase-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(43,37,35,.6) 0%, transparent 50%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: background .4s ease;
}
.showcase-card:hover .showcase-overlay {
  background: linear-gradient(to top, rgba(43,37,35,.75) 0%, rgba(43,37,35,.1) 60%);
}
.showcase-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 6px;
}
.showcase-sub {
  font-size: .75rem;
  font-weight: 300;
  color: rgba(255,255,255,.8);
  letter-spacing: .06em;
  transform: translateY(8px);
  opacity: 0;
  transition: transform .4s ease, opacity .4s ease;
}
.showcase-card:hover .showcase-sub { transform: translateY(0); opacity: 1; }

/* ── Form Section ── */
.form-section { background: var(--cream); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}
.form-info-title { margin-bottom: 24px; }
.form-info-body { margin-bottom: 32px; }
.form-contacts { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.form-contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.form-contact-row svg {
  width: 16px; height: 16px;
  color: var(--sage-dark);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-contact-label { font-size: .62rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-light); margin-bottom: 2px; }
.form-contact-val { font-size: .85rem; font-weight: 300; color: var(--ink); }
.form-contact-val a { color: var(--ink); transition: color .25s; }
.form-contact-val a:hover { color: var(--mauve); }

/* Form fields */
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.field {
  display: flex; flex-direction: column;
  margin-bottom: 32px;
  position: relative;
}
.field label {
  font-size: .6rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 10px;
  transition: color .25s;
}
.field:focus-within label { color: var(--mauve); }
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: .88rem; font-weight: 300;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(43,37,35,.18);
  padding: 8px 0 12px;
  color: var(--ink);
  outline: none;
  transition: border-color .25s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--radius-md);
}
.field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239a8e88' stroke-width='1.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 20px;
}
.field textarea { resize: none; min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus { border-bottom-color: var(--mauve); }
.field input.err, .field select.err, .field textarea.err { border-bottom-color: #a05050; }
.field-err {
  font-size: .68rem; color: #a05050;
  letter-spacing: .04em; margin-top: 5px;
  display: none;
}
.field-err.show { display: block; }
.form-submit-row { display: flex; align-items: center; gap: 28px; margin-top: 8px; }
.form-note { font-size: .72rem; font-weight: 300; color: var(--ink-light); max-width: 240px; }
.form-success {
  font-size: .82rem; font-weight: 400;
  color: var(--sage-dark);
  letter-spacing: .04em;
  margin-top: 20px;
  display: none;
  padding: 16px;
  background: rgba(168,181,161,.1);
  border-radius: var(--radius);
  border-left: 3px solid var(--sage);
}
.form-success.show { display: block; }

/* ── Contact Bar ── */
.contact-bar { background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.contact-col {
  padding: 56px 44px;
  border-right: 1px solid var(--rule);
}
.contact-col:last-child { border-right: none; }
.contact-col-label { margin-bottom: 8px; }
.contact-col-val {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.contact-col-val a { transition: color .25s; }
.contact-col-val a:hover { color: var(--mauve); }
.contact-col-sub { font-size: .78rem; font-weight: 300; color: var(--ink-light); }

/* ── Footer ── */
.footer {
  border-top: none;
  padding: 56px 0;
  background: var(--sage);
  color: #fff;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-logo { width: 32px; height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
.footer-wordmark {
  font-family: var(--serif);
  font-size: .95rem; font-weight: 400;
  color: #fff;
}
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a {
  font-size: .65rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color .25s;
}
.footer-links a:hover { color: #fff; }
.footer-socials { display: flex; gap: 16px; align-items: center; }
.footer-socials a {
  color: #fff;
  transition: transform .3s ease, opacity .3s ease;
  display: flex; align-items: center; justify-content: center;
}
.footer-socials a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}
.footer-socials svg { width: 20px; height: 20px; }
.footer-bottom {
  width: 100%; display: flex; justify-content: center; align-items: center;
  margin-top: 24px; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px;
}
.footer-copy {
  font-size: .65rem; font-weight: 300;
  color: rgba(255, 255, 255, 0.7); letter-spacing: .06em;
}

/* ── Reveal Animation ── */
.r {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.r.d1 { transition-delay: .1s; }
.r.d2 { transition-delay: .2s; }
.r.d3 { transition-delay: .3s; }
.r.d4 { transition-delay: .4s; }
.r.vis { opacity: 1; transform: none; }

/* ── Local Section ── */
.local-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.local-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
}
.local-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.local-label { margin-bottom: 12px; }
.local-heading { margin-bottom: 24px; }
.local-text { margin-bottom: 0; }

/* ── FAQ Section ── */
.faq-accordion {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
  overflow: hidden;
  border: 1px solid var(--rule);
  transition: box-shadow .3s ease;
}
.faq-item:hover {
  box-shadow: var(--shadow-soft);
}
.faq-question {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  padding: 24px 32px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--mauve);
  transition: transform .3s ease;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  padding: 0 32px 24px;
  font-size: .9rem;
  font-weight: 300;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════
   TITLE BOTANICAL FRAMES (Florería)
   Elegant line-art framing the section titles
   ══════════════════════════════════════════════════════════ */

.values-header .headline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

/* Base styling for the pseudo-elements (the lines) */
.values-header .headline::before,
.values-header .headline::after {
  content: '';
  display: block;
  flex-grow: 1;
  max-width: 180px;
  height: 40px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.8;
}

/* Right side is mirrored */
.values-header .headline::after {
  transform: scaleX(-1);
}

/* SVG Line Art - Flowing botanical stem with a circle icon */
.values-header .headline::before,
.values-header .headline::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 40' fill='none' stroke='%23A8B5A1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M0 20 Q 40 5, 80 20 T 160 20' stroke-width='1.5'/%3E%3Cpath d='M160 20 L 200 20' stroke-width='1.5' stroke-dasharray='2 4'/%3E%3Cpath d='M30 15 Q 20 2, 10 10 Q 20 18, 30 15' stroke-width='1.2'/%3E%3Cpath d='M130 25 Q 140 38, 150 30 Q 140 22, 130 25' stroke-width='1.2'/%3E%3Ccircle cx='90' cy='20' r='14' stroke-width='1' stroke='%23B47B8C'/%3E%3Cpath d='M90 12 C 86 16, 86 24, 90 28 C 94 24, 94 16, 90 12' stroke='%23B47B8C' stroke-width='1.2'/%3E%3Cpath d='M82 20 C 86 16, 94 16, 98 20 C 94 24, 86 24, 82 20' stroke='%23B47B8C' stroke-width='1.2'/%3E%3Ccircle cx='90' cy='20' r='2' fill='%23B47B8C' stroke='none'/%3E%3C/svg%3E");
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .values-header .headline {
    gap: 12px;
  }
  .values-header .headline::before,
  .values-header .headline::after {
    max-width: 80px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .values-header .headline::before,
  .values-header .headline::after {
    display: none; /* Hide on very small screens to save space */
  }
}


/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-actions { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 56px; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-col { border-right: none; border-bottom: 1px solid var(--rule); }
  .contact-col:last-child { border-bottom: none; }
  .local-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .wrap, .wrap--narrow { padding: 0 24px; }
  .nav { padding: 14px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 120px 24px 56px; }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .footer-inner { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .gallery-strip img { height: 300px; }
  .section { padding: 56px 0; }
  .section--sm { padding: 48px 0; }
}
@media (max-width: 480px) {
  .hero-content { padding: 100px 20px 44px; }
  .hero-title { font-size: 2.2rem; line-height: 1.1; }
  .hero-actions { flex-direction: column; width: 100%; gap: 14px; }
  .btn { width: 100%; text-align: center; }
  .showcase-grid { grid-template-columns: 1fr; gap: 16px; }
  .catalog-grid { gap: 16px; }
  .catalog-card { width: 140px; height: 140px; }
}/* ── Reviews Section ── */
.reviews-section {
  background: var(--cream);
}

/* ── Botón WhatsApp Flotante ── */
@keyframes floatAnimation {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform .3s ease, box-shadow .3s ease;
  animation: floatAnimation 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 32px; height: 32px;
}

/* ── Botón Instagram Flotante ── */
.instagram-float {
  position: fixed;
  bottom: 96px; /* above whatsapp */
  right: 24px;
  width: 60px;
  height: 60px;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(214, 36, 159, 0.4);
  z-index: 1000;
  transition: transform .3s ease, box-shadow .3s ease;
}
.instagram-float:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 10px 24px rgba(214, 36, 159, 0.5);
}
.instagram-float svg { width: 32px; height: 32px; }

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }

  .instagram-float {
    bottom: 84px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .instagram-float svg { width: 28px; height: 28px; }
  
  .carousel-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 100%);
  }
  .carousel-content {
    text-align: center;
    padding: 0 24px;
    margin: 0 auto;
  }
  .carousel-content .hero-actions { justify-content: center; }
  .carousel-control { display: none; }
}
