@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Nunito:wght@400;600;700&display=swap');

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

:root {
  --terra: #C4623A;
  --terra-dark: #A3502E;
  --bark: #2D2016;
  --cream: #FAF5EF;
  --cream-dark: #F0E8DC;
  --leaf: #5B7B3A;
  --leaf-light: #7A9E52;
  --sand: #E8D5C0;
  --text: #3D3028;
  --text-light: #6B5D52;
  --white: #FDFCFA;
  --radius: 8px;
  --radius-lg: 16px;
  --paw: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48.839 48.839'%3E%3Cpath d='M39.041,36.843c2.054,3.234,3.022,4.951,3.022,6.742c0,3.537-2.627,5.252-6.166,5.252c-1.56,0-2.567-.002-5.112-1.326c0,0-1.649-1.509-5.508-1.354c-3.895-.154-5.545,1.373-5.545,1.373c-2.545,1.323-3.516,1.309-5.074,1.309c-3.539,0-6.168-1.713-6.168-5.252c0-1.791.971-3.506,3.024-6.742c0,0,3.881-6.445,7.244-9.477c2.43-2.188,5.973-2.18,5.973-2.18h1.093v-.001c0,0,3.698-.009,5.976,2.181C35.059,30.51,39.041,36.844,39.041,36.843z M16.631,20.878c3.7,0,6.699-4.674,6.699-10.439S20.331,0,16.631,0S9.932,4.674,9.932,10.439S12.931,20.878,16.631,20.878z M10.211,30.988c2.727-1.259,3.349-5.723,1.388-9.971s-5.761-6.672-8.488-5.414-3.348,5.723-1.388,9.971C3.684,29.822,7.484,32.245,10.211,30.988z M32.206,20.878c3.7,0,6.7-4.674,6.7-10.439S35.906,0,32.206,0s-6.699,4.674-6.699,10.439C25.507,16.204,28.506,20.878,32.206,20.878z M45.727,15.602c-2.728-1.259-6.527,1.165-8.488,5.414s-1.339,8.713,1.389,9.972c2.728,1.258,6.527-1.166,8.488-5.414S48.455,16.861,45.727,15.602z'/%3E%3C/svg%3E");
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.2;
  color: var(--bark);
}

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

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 2px 20px rgba(45, 32, 22, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--terra);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
  transition: color 0.2s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--terra); }

.nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--leaf);
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.15s;
}

.nav-wa:hover {
  background: var(--leaf-light);
  transform: translateY(-1px);
}

.nav-wa svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bark);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── Hero ── */
.hero {
  margin-top: 60px;
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 4rem 1.5rem;
  padding-top: calc(60px + 4rem);
}

.hero-content { max-width: 520px; }

.hero-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terra);
  background: rgba(196, 98, 58, 0.1);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--bark);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--terra);
  font-style: italic;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: var(--terra);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196, 98, 58, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}

.btn-outline:hover {
  background: var(--terra);
  color: var(--white);
}

.btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.hero-images {
  position: relative;
  height: 520px;
}

.hero-img-main {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(45, 32, 22, 0.12);
}

.hero-img-float {
  position: absolute;
  bottom: 0;
  left: -2rem;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 4px solid var(--cream);
  box-shadow: 0 10px 30px rgba(45, 32, 22, 0.15);
}

.hero-badge {
  position: absolute;
  top: 1rem;
  right: -1rem;
  background: var(--leaf);
  color: var(--white);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 24px rgba(91, 123, 58, 0.25);
}

.hero-badge-number {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  display: block;
  line-height: 1;
}

.hero-badge-text {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  display: block;
}

/* ── Section Base ── */
.section {
  padding: 5rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-intro {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 3rem;
  font-size: 1.05rem;
}

/* ── About Strip ── */
.about-strip {
  background: var(--bark);
  color: var(--cream);
  padding: 4rem 1.5rem;
}

.about-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
}

.about-item h3 {
  color: var(--terra);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.about-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--terra);
}

.about-item p {
  color: var(--sand);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Services ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(45, 32, 22, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(196, 98, 58, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── Gallery Mosaic ── */
.gallery-section {
  background: var(--cream-dark);
  padding: 5rem 1.5rem;
}

.gallery-section .section-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.gallery-mosaic {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

.gallery-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s;
}

.gallery-mosaic a {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-mosaic a:first-child {
  grid-row: 1 / 3;
}

.gallery-mosaic a:hover img {
  transform: scale(1.04);
}

/* ── Reviews ── */
.reviews-section {
  background: var(--white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
}

.review-card::before {
  content: '\201C';
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--terra);
  opacity: 0.2;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  line-height: 1;
}

.review-stars {
  color: var(--terra);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--bark);
}

.review-source {
  font-size: 0.8rem;
  color: var(--text-light);
}

.reviews-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ── Location ── */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 360px;
  border: 1px solid var(--sand);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.location-details h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.location-address {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.location-address a {
  color: var(--terra);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-address a:hover { color: var(--terra-dark); }

.location-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.location-contact-item svg {
  width: 20px;
  height: 20px;
  fill: var(--terra);
  flex-shrink: 0;
}

/* ── Footer ── */
.footer {
  background: var(--bark);
  color: var(--sand);
  padding: 3rem 1.5rem;
  text-align: center;
}

.footer-brand {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.footer p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-links a {
  color: var(--sand);
  font-size: 0.85rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--terra); }

.footer-credit {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  opacity: 0.5;
}

.footer-credit a {
  color: var(--sand);
  transition: color 0.2s;
}

.footer-credit a:hover { color: var(--terra); }

/* ── Floating WhatsApp ── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

/* ── Wavy Section Separators ── */
.wave-separator {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 0;
  overflow: hidden;
  margin-top: -1px;
  margin-bottom: -1px;
  position: relative;
  z-index: 1;
}

.wave-separator svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* SVG fill = color of the section the wave flows INTO */
.wave-separator--cream svg { fill: var(--cream); }
.wave-separator--cream-dark svg { fill: var(--cream-dark); }
.wave-separator--white svg { fill: var(--white); }
.wave-separator--bark svg { fill: var(--bark); }

/* Container bg = color of the section the wave flows FROM */
.wave-bg-cream { background: var(--cream); }
.wave-bg-cream-dark { background: var(--cream-dark); }
.wave-bg-white { background: var(--white); }
.wave-bg-bark { background: var(--bark); }

/* Flip for inverted wave direction */
.wave-separator--flip {
  transform: scaleY(-1);
}

/* ── Playful Service Card Hover ── */
@keyframes bounce-icon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.service-card:hover .service-icon {
  animation: bounce-icon 0.5s ease;
}

/* ── Paw Icon (mask-based, color via background-color) ── */
.service-card::after,
.hero-badge::after,
.review-card::after,
.footer-brand::after {
  content: '';
  -webkit-mask-image: var(--paw);
  mask-image: var(--paw);
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

/* Service card paw — appears on hover */
.service-card::after {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 24px;
  height: 24px;
  background-color: var(--terra);
  opacity: 0;
  transform: scale(0.5) rotate(-20deg);
  transition: opacity 0.3s, transform 0.3s;
}

.service-card:hover::after {
  opacity: 0.25;
  transform: scale(1) rotate(0deg);
}

/* ── Hero Floating Paw ── */
@keyframes float-paw {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

.hero-badge::after {
  position: absolute;
  top: -1.4rem;
  right: -1rem;
  width: 28px;
  height: 28px;
  background-color: var(--terra);
  animation: float-paw 3s ease-in-out infinite;
}

/* Review card paw accent */
.review-card::after {
  position: absolute;
  bottom: 0.75rem;
  right: 1rem;
  width: 18px;
  height: 18px;
  background-color: var(--terra);
  opacity: 0.12;
}

/* Footer paw decoration */
.footer-brand::after {
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-left: 0.4rem;
  vertical-align: middle;
  background-color: var(--sand);
  opacity: 0.5;
}

/* ── Paw Background Pattern ── */
.hero,
.reviews-section {
  position: relative;
}

.hero::before,
.reviews-section::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-55 -55 160 160'%3E%3Cpath fill='%23C4623A' d='M39.041,36.843c2.054,3.234,3.022,4.951,3.022,6.742c0,3.537-2.627,5.252-6.166,5.252c-1.56,0-2.567-.002-5.112-1.326c0,0-1.649-1.509-5.508-1.354c-3.895-.154-5.545,1.373-5.545,1.373c-2.545,1.323-3.516,1.309-5.074,1.309c-3.539,0-6.168-1.713-6.168-5.252c0-1.791.971-3.506,3.024-6.742c0,0,3.881-6.445,7.244-9.477c2.43-2.188,5.973-2.18,5.973-2.18h1.093v-.001c0,0,3.698-.009,5.976,2.181C35.059,30.51,39.041,36.844,39.041,36.843z M16.631,20.878c3.7,0,6.699-4.674,6.699-10.439S20.331,0,16.631,0S9.932,4.674,9.932,10.439S12.931,20.878,16.631,20.878z M10.211,30.988c2.727-1.259,3.349-5.723,1.388-9.971s-5.761-6.672-8.488-5.414-3.348,5.723-1.388,9.971C3.684,29.822,7.484,32.245,10.211,30.988z M32.206,20.878c3.7,0,6.7-4.674,6.7-10.439S35.906,0,32.206,0s-6.699,4.674-6.699,10.439C25.507,16.204,28.506,20.878,32.206,20.878z M45.727,15.602c-2.728-1.259-6.527,1.165-8.488,5.414s-1.339,8.713,1.389,9.972c2.728,1.258,6.527-1.166,8.488-5.414S48.455,16.861,45.727,15.602z'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

/* Full-width background for reviews section */
.reviews-section {
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.hero > *,
.reviews-section > * {
  position: relative;
  z-index: 1;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-d1 { animation-delay: 0.1s; }
.fade-up-d2 { animation-delay: 0.2s; }
.fade-up-d3 { animation-delay: 0.3s; }
.fade-up-d4 { animation-delay: 0.4s; }

/* ── Waoh: Scroll Reveal Enhanced ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Slide from left for section headings */
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale up reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ── Waoh: Gallery Clip-Path Reveal ── */
.gallery-mosaic a {
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery-mosaic a img {
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s;
}

.gallery-mosaic a.visible img {
  clip-path: inset(0 0 0 0);
}

/* ── Waoh: Gallery Hover Enhanced ── */
.gallery-mosaic a::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45, 32, 22, 0.3), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: 1;
  border-radius: var(--radius);
}

.gallery-mosaic a {
  position: relative;
}

.gallery-mosaic a:hover::after {
  opacity: 1;
}

/* ── Waoh: Tilt 3D Service Cards ── */
.service-card {
  transform-style: preserve-3d;
  perspective: 800px;
}

/* ── Waoh: Ripple Effect ── */
.btn {
  position: relative;
  overflow: hidden;
}

.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── Waoh: Stars Stagger ── */
.review-stars span {
  display: inline-block;
  opacity: 0;
  transform: scale(0) rotate(-180deg);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.review-card.visible .review-stars span {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

/* ── Waoh: Hero Parallax ── */
.hero-img-main {
  will-change: transform;
  transition: none;
}

/* ── Waoh: Typing Effect ── */
.hero-tagline {
  overflow: hidden;
}

.hero-tagline.typing {
  border-right: 2px solid var(--terra);
  animation: blink-cursor 0.7s step-end infinite;
  white-space: nowrap;
  overflow: hidden;
}

.hero-tagline.typing-done {
  border-right: none;
  white-space: normal;
  animation: none;
}

@keyframes blink-cursor {
  from, to { border-color: transparent; }
  50% { border-color: var(--terra); }
}

/* ── Waoh: Magnetic Button Hover ── */
.btn-magnetic {
  transition: transform 0.2s ease-out;
}

/* ── Waoh: About items underline grow ── */
.about-item h3::after {
  width: 0;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-item.visible h3::after {
  width: 30px;
}

/* ── Waoh: Reduced Motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .gallery-mosaic a img {
    clip-path: none;
  }
  .review-stars span {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-tagline.typing {
    animation: none;
    border-right: none;
    white-space: normal;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: calc(60px + 2rem);
  }

  .hero-images {
    height: 350px;
    order: -1;
  }

  .hero-img-float { display: none; }

  .hero-img-main { height: 100%; }

  .hero-badge {
    top: auto;
    bottom: 1rem;
    right: 1rem;
  }

  .about-strip-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }

  .gallery-mosaic a:first-child {
    grid-row: auto;
  }

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

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

  .location-map { height: 280px; }
}

.horario-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.horario-table td {
  padding: 0.3rem 0;
  font-size: 0.95rem;
  color: var(--bark);
}

.horario-table td:last-child {
  text-align: right;
  font-weight: 600;
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem;
    border-bottom: 1px solid var(--sand);
    gap: 1rem;
    box-shadow: 0 8px 24px rgba(45, 32, 22, 0.08);
  }

  .hamburger { display: block; }

  .hero { padding: 1rem 1.2rem; padding-top: calc(60px + 1rem); }

  .hero h1 { font-size: 2rem; }

  .hero-images { height: 260px; }

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

  .section { padding: 3rem 1.2rem; }

  .gallery-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 200px);
  }

  .gallery-section { padding: 3rem 1.2rem; }

  .about-strip { padding: 3rem 1.2rem; }
}
