/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }

/* === DESIGN TOKENS === */
:root {
  --bg-cream: #F2E5C6;
  --bg-cream-deep: #E9D8B0;
  --bg-cream-soft: #F8F0DD;
  --primary: #E63946;
  --primary-deep: #C92F3C;
  --secondary: #4FB3B0;
  --orange: #F38B3C;
  --magenta: #D94B7E;
  --blue: #2E5BB7;
  --green: #6CA84D;
  --yellow: #F4C842;
  --purple: #8B6BA8;
  --ink: #2A2A3E;
  --ink-soft: #5A5A6E;
  --ink-faint: #8C8C9C;
  --white: #FFFEF9;

  --font-display: 'Fraunces', Georgia, serif;
  --font-accent: 'Caveat', cursive;
  --font-body: 'Nunito', system-ui, sans-serif;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 36px;
  --radius-blob: 60% 40% 50% 50% / 50% 60% 40% 50%;
  --radius-blob-2: 40% 60% 70% 30% / 50% 30% 70% 50%;

  --shadow-soft: 0 8px 30px rgba(42, 42, 62, 0.08);
  --shadow-pop: 0 16px 50px rgba(42, 42, 62, 0.15);
  --shadow-card: 0 6px 24px rgba(42, 42, 62, 0.10);

  --transition: 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);

  --max-w: 1200px;
  --max-w-narrow: 880px;
}

/* === BASE === */
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg-cream);
  line-height: 1.65;
  font-size: 17px;
  font-weight: 500;
}

html, body { overflow-x: clip; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
}

h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { color: var(--ink-soft); }
strong { color: var(--ink); font-weight: 700; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* === LAYOUT === */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 1.75rem;
}

section { padding: 5rem 0; position: relative; }

/* === HEADER & NAV === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(242, 229, 198, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(42, 42, 62, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.75rem;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.nav-logo img { height: 48px; width: auto; }

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

.nav-links a {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover { color: var(--primary); background: rgba(230, 57, 70, 0.08); }
.nav-links a.active { color: var(--primary); background: rgba(230, 57, 70, 0.12); }

.nav-mobile-logo { display: none; }

.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.15rem !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(230, 57, 70, 0.35);
}

.nav-cta:hover {
  background: var(--primary-deep) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  font-size: 1.6rem;
  color: var(--ink);
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
}

/* === HERO === */
.hero {
  position: relative;
  padding: 5rem 0 6rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.65rem;
  color: var(--primary);
  transform: rotate(-3deg);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(2.75rem, 7.5vw, 5.75rem);
  margin-bottom: 1.5rem;
}

.hero h1 .word-magenta { color: var(--magenta); }
.hero h1 .word-teal { color: var(--secondary); }
.hero h1 .word-orange { color: var(--orange); }
.hero h1 .word-blue { color: var(--blue); }
.hero h1 em {
  font-style: italic;
  font-variation-settings: "opsz" 12, "SOFT" 100;
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 30em;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.35);
}
.btn-primary:hover {
  background: var(--primary-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230, 57, 70, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-pop); }

/* Hero image (asymmetric blob) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
}

.hero-image {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 50%, var(--yellow) 100%);
  border-radius: var(--radius-blob);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-pop);
  transform: rotate(2deg);
}

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

.hero-badge {
  position: absolute;
  background: var(--white);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-badge-1 {
  top: 6%;
  left: -8%;
  transform: rotate(-6deg);
}
.hero-badge-1 .dot { width: 10px; height: 10px; background: var(--green); border-radius: 50%; }

.hero-badge-2 {
  bottom: 8%;
  right: -6%;
  transform: rotate(4deg);
  background: var(--blue);
  color: var(--white);
}

.hero-badge-3 {
  bottom: 38%;
  left: -12%;
  font-family: var(--font-accent);
  font-size: 1.4rem;
  background: var(--yellow);
  transform: rotate(-8deg);
  padding: 0.5rem 1rem;
}

/* Confetti decoration */
.confetti {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}
.confetti-1 { top: 10%; right: 45%; width: 60px; height: 60px; }
.confetti-2 { bottom: 15%; left: 5%; width: 80px; height: 80px; }
.confetti-3 { top: 40%; right: 8%; width: 50px; height: 50px; }

/* === DIRECT ANSWER (GEO) === */
.direct-answer {
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-align: center;
  max-width: 32em;
  margin: 0 auto;
  padding: 0 1rem;
}

.direct-answer::before,
.direct-answer::after {
  content: '✿';
  font-family: var(--font-accent);
  color: var(--magenta);
  font-size: 1.5rem;
  display: inline-block;
  margin: 0 0.6rem;
  transform: translateY(-0.15em);
  opacity: 0.85;
}

.direct-answer strong {
  color: var(--primary);
  font-weight: 800;
}

.direct-answer em {
  font-style: normal;
  background: linear-gradient(180deg, transparent 60%, rgba(217, 75, 126, 0.25) 60%);
  padding: 0 0.1em;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 40em;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--magenta);
  transform: rotate(-2deg);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-header p {
  font-size: 1.1rem;
  margin-top: 0.85rem;
}

/* === CARDS / OFFERINGS === */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  justify-content: center;
}

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

@media (max-width: 1079px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

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

.cards-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}

.cards-grid--two .card-feature {
  grid-column: 1 / -1;
}

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

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-pop); }

.card-image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--secondary), var(--blue));
  position: relative;
  overflow: hidden;
}

.card-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.card-image-track::-webkit-scrollbar { display: none; }

.card-image-track > img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.card-image-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 254, 249, 0.88);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
  cursor: pointer;
  padding: 0;
}

.card:hover .card-image-arrow,
.card-image-arrow:focus-visible { opacity: 1; }

.card-image-arrow--prev { left: 0.75rem; }
.card-image-arrow--next { right: 0.75rem; }
.card-image-arrow:hover { background: var(--white); }

.card-image-dots {
  position: absolute;
  bottom: 0.65rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 2;
  pointer-events: none;
}

.card-image-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 254, 249, 0.55);
  border: 1px solid rgba(42, 42, 62, 0.15);
  transition: var(--transition);
  pointer-events: auto;
  padding: 0;
  cursor: pointer;
}

.card-image-dot.is-active {
  background: var(--white);
  transform: scale(1.3);
}

@media (max-width: 720px) {
  .card-image-arrow { display: none; }
}

.card-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  font-size: 1.6rem;
  color: var(--white);
  text-align: center;
  padding: 1rem;
}

.card-color-magenta .card-image { background: linear-gradient(135deg, var(--magenta), #F38BAB); }
.card-color-blue .card-image { background: linear-gradient(135deg, var(--blue), var(--secondary)); }
.card-color-orange .card-image { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.card-color-yellow .card-image { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.card-color-green .card-image { background: linear-gradient(135deg, var(--green), #A8D080); }
.card-color-purple .card-image { background: linear-gradient(135deg, var(--purple), var(--magenta)); }

.card-body { padding: 1.5rem 1.75rem 1.85rem; flex: 1; display: flex; flex-direction: column; }
.card-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.card h3 { margin-bottom: 0.5rem; font-size: 1.4rem; }
.card-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.card-meta span { display: inline-flex; align-items: center; gap: 0.3rem; }

.card p { font-size: 0.97rem; margin-bottom: 1.2rem; flex: 1; }

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px dashed rgba(42, 42, 62, 0.15);
  margin-top: auto;
}

.card-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.card-price-from {
  font-family: var(--font-accent);
  font-size: 1rem;
  color: var(--ink-soft);
  margin-right: 0.25rem;
}

.card-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.card-link:hover { gap: 0.55rem; }

/* === WHY US / FEATURES === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.features-grid .feature {
  flex: 0 0 calc((100% - 4rem) / 3);
}

/* 4 items: 2 por fila para evitar huérfano (3+1 → 2+2) */
.features-grid:has(> .feature:nth-child(4)):not(:has(> .feature:nth-child(5))) .feature {
  flex: 0 0 calc((100% - 2rem) / 2);
}

@media (max-width: 1079px) {
  .features-grid .feature {
    flex: 0 0 calc((100% - 2rem) / 2);
  }

  /* 5 items en tablet: mantener 3 por fila para evitar huérfano */
  .features-grid:has(> .feature:nth-child(5)) .feature {
    flex: 0 0 calc((100% - 4rem) / 3);
  }
}

@media (max-width: 480px) {
  .features-grid .feature,
  .features-grid:has(> .feature:nth-child(4)):not(:has(> .feature:nth-child(5))) .feature,
  .features-grid:has(> .feature:nth-child(5)) .feature {
    flex: 0 0 100%;
  }
}

.feature {
  text-align: center;
  padding: 1.5rem;
}

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-blob);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  background: var(--secondary);
  color: var(--white);
}

.feature:nth-child(2) .feature-icon { background: var(--magenta); border-radius: var(--radius-blob-2); }
.feature:nth-child(3) .feature-icon { background: var(--orange); border-radius: 50% 30% 60% 40% / 40% 50% 50% 60%; }
.feature:nth-child(4) .feature-icon { background: var(--green); border-radius: 30% 60% 40% 50% / 60% 40% 50% 30%; }

.feature h4 { margin-bottom: 0.5rem; }
.feature p { font-size: 0.97rem; }

/* === BG VARIANTS === */
.section-cream-deep { background: var(--bg-cream-deep); }
.section-white { background: var(--white); }
.section-ink {
  background: var(--ink);
  color: var(--bg-cream);
}
.section-ink h1, .section-ink h2, .section-ink h3, .section-ink h4 { color: var(--bg-cream); }
.section-ink p { color: rgba(242, 229, 198, 0.85); }

/* === SERVICE AREA / CITIES === */
.cities-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  margin: 0 auto;
  max-width: 60em;
}

.city-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.city-chip:hover {
  border-color: var(--secondary);
  color: var(--primary);
  transform: translateY(-2px);
}

.city-chip .chip-flag {
  color: var(--magenta);
  font-family: var(--font-accent);
  font-size: 0.85rem;
}

.city-chip--home {
  background: var(--secondary);
  color: var(--white);
}

.city-chip--home:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--white);
}

.city-chip--home .chip-flag { color: var(--white); }

/* === TESTIMONIALS === */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1079px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.testimonial-card {
  background: var(--white);
  padding: 2rem 1.85rem 1.75rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  position: relative;
  border-top: 4px solid var(--ink);
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }

.testimonial-color-magenta { border-top-color: var(--magenta); }
.testimonial-color-blue { border-top-color: var(--blue); }
.testimonial-color-orange { border-top-color: var(--orange); }
.testimonial-color-yellow { border-top-color: var(--yellow); }

.testimonial-stars {
  display: inline-flex;
  gap: 0.15rem;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.testimonial-color-magenta .testimonial-stars { color: var(--magenta); }
.testimonial-color-blue .testimonial-stars { color: var(--blue); }
.testimonial-color-orange .testimonial-stars { color: var(--orange); }
.testimonial-color-yellow .testimonial-stars { color: #E8A82C; }

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.4rem;
  flex: 1;
  font-style: italic;
}

.testimonial-meta {
  border-top: 1px solid var(--bg-cream-deep);
  padding-top: 0.9rem;
  margin-top: auto;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--ink);
  font-size: 0.98rem;
  margin: 0 0 0.15rem;
}

.testimonial-detail {
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.01em;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 56em;
  margin: 0 auto;
}

details {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 2px solid transparent;
}

details[open] { border-color: var(--secondary); }

details summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 1.75rem;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-variation-settings: "opsz" 24;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--ink);
}

details summary::-webkit-details-marker { display: none; }

details summary::after {
  content: '+';
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 800;
  transition: var(--transition);
  flex-shrink: 0;
}

details[open] summary::after { content: '−'; transform: rotate(180deg); }

details > div {
  padding: 0 1.75rem 1.5rem;
}

details > div p { color: var(--ink-soft); font-size: 1rem; line-height: 1.65; }

/* === FORM === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  background: var(--ink);
  color: var(--bg-cream);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
}

.contact-info h2 { color: var(--bg-cream); margin-bottom: 1rem; font-size: 2rem; }
.contact-info p { color: rgba(242, 229, 198, 0.85); margin-bottom: 1.5rem; }

.contact-info-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.75rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.98rem;
}
.contact-info-item strong { color: var(--yellow); display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.15rem; font-family: var(--font-body); }
.contact-info-item a { color: var(--bg-cream); text-decoration: underline; text-decoration-color: rgba(242, 229, 198, 0.4); }
.contact-info-item a:hover { color: var(--yellow); }

.contact-info-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
  color: var(--white);
}

.contact-form {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pop);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-field { margin-bottom: 1rem; }
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid rgba(42, 42, 62, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg-cream-soft);
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: none;
}
.form-message.success { background: rgba(108, 168, 77, 0.15); color: var(--green); display: block; }
.form-message.error { background: rgba(230, 57, 70, 0.12); color: var(--primary); display: block; }

/* === SMS BUBBLE === */
.sms-button {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  z-index: 1000;
  box-shadow: 0 8px 26px rgba(230, 57, 70, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.sms-button:hover {
  background: var(--primary-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 34px rgba(230, 57, 70, 0.55);
}

.sms-tooltip {
  position: fixed;
  bottom: 84px;
  right: 24px;
  background: var(--ink);
  color: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
  z-index: 1000;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: var(--shadow-card);
}
.sms-tooltip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 32px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--ink);
}
.sms-tooltip.show { opacity: 1; transform: translateY(0); }

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: var(--bg-cream);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(242, 229, 198, 0.15);
}

.footer-brand img { height: 60px; margin-bottom: 1rem; filter: brightness(0) invert(1) sepia(0.4) saturate(0.6); }
.footer-brand .tagline {
  font-family: var(--font-accent);
  color: var(--yellow);
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
}
.footer-brand p { color: rgba(242, 229, 198, 0.7); font-size: 0.92rem; }

.footer-col h5 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--bg-cream);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul li { margin-bottom: 0.55rem; }
.footer-col a {
  color: rgba(242, 229, 198, 0.75);
  font-size: 0.94rem;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--yellow); }

.social-links {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
}
.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(242, 229, 198, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--bg-cream);
  font-weight: 700;
}
.social-links a:hover { background: var(--primary); transform: translateY(-2px); }

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
  color: rgba(242, 229, 198, 0.55);
}

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* === DETAIL PAGE === */
.page-hero {
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.15rem; max-width: 36em; margin: 0 auto; }

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.breadcrumbs a { color: var(--primary); font-weight: 600; }
.breadcrumbs span { color: var(--ink-faint); }

.hero-note {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink-soft);
  max-width: 36em;
  margin-left: auto;
  margin-right: auto;
}

.hero-note strong { color: var(--ink); font-weight: 700; font-style: normal; }

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, var(--magenta), var(--yellow));
  transition: var(--transition);
}

.gallery-item:nth-child(2n) { background: linear-gradient(135deg, var(--secondary), var(--magenta)); }
.gallery-item:nth-child(3n) { background: linear-gradient(135deg, var(--orange), var(--yellow)); }
.gallery-item:nth-child(5n) { background: linear-gradient(135deg, var(--purple), var(--magenta)); }

.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-pop); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item .card-image-placeholder {
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item--tall { grid-row: span 2; }
}

@media (max-width: 600px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery-item--wide,
  .gallery-item--tall { grid-column: auto; grid-row: auto; }
}

/* === POLICY / INFO BOX === */
.policies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (max-width: 720px) {
  .policies-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.info-box {
  background: var(--bg-cream-soft);
  padding: 2rem;
  border-radius: var(--radius-md);
  border-left: 6px solid var(--orange);
}

.info-box h4 {
  margin-bottom: 0.85rem;
  font-family: var(--font-display);
  color: var(--ink);
}

.info-box ul li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.info-box ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--magenta));
  color: var(--white);
  padding: 4rem 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 4rem auto;
  max-width: var(--max-w);
}

.cta-banner h2 { color: var(--white); margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 3rem); }
.cta-banner p { color: rgba(255, 254, 249, 0.9); font-size: 1.15rem; margin-bottom: 1.75rem; max-width: 36em; margin-left: auto; margin-right: auto; }

.cta-banner .btn-primary { background: var(--white); color: var(--primary); }
.cta-banner .btn-primary:hover { background: var(--bg-cream); }
.cta-banner .btn-outline { color: var(--white); border-color: var(--white); }
.cta-banner .btn-outline:hover { background: var(--white); color: var(--primary); }

/* === ABOUT === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-blob-2);
  background: linear-gradient(135deg, var(--secondary), var(--magenta));
  overflow: hidden;
  box-shadow: var(--shadow-pop);
  transform: rotate(-2deg);
}

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

.values-list { display: flex; flex-direction: column; gap: 1.1rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 1rem; align-items: flex-start; }
.value-item .num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
  line-height: 1;
  font-variation-settings: "opsz" 144;
}
.value-item h4 { margin-bottom: 0.25rem; font-size: 1.15rem; }
.value-item p { font-size: 0.97rem; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 460px; margin: 0 auto; aspect-ratio: 1/1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-top: var(--header-h, 62px); }
  h1, h2, h3 { overflow-wrap: break-word; word-break: normal; hyphens: auto; }
  section { padding: 3.5rem 0; }
  .site-header { position: fixed; top: 0; left: 0; right: 0; }
  .nav { padding: 0.75rem 1rem; }
  .nav-logo { font-size: 1.1rem; }
  .nav-logo img { height: 38px; }
  .nav-links {
    display: flex;
    position: fixed;
    top: var(--header-h, 64px);
    left: 0;
    width: 100%;
    height: calc(100dvh - var(--header-h, 64px));
    background: var(--bg-cream);
    padding-bottom: 3rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    z-index: 90;
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .nav-links.open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  .nav-mobile-logo { display: none; }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(42, 42, 62, 0.07);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    text-align: left;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--ink);
    border-radius: 0;
    letter-spacing: 0;
  }
  .nav-links a:hover { background: rgba(230, 57, 70, 0.06); color: var(--primary); }
  .nav-links a.active { background: rgba(230, 57, 70, 0.08); color: var(--primary); }
  .nav-links .nav-cta {
    display: block;
    text-align: center !important;
    margin: 1rem 1.5rem 0 !important;
    border-radius: 12px !important;
    font-size: 1rem !important;
    padding: 1rem !important;
    box-shadow: none !important;
  }
  @keyframes navLinkFadeIn {
    from { opacity: 0; transform: translateX(-6px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .nav-links.open li:nth-child(1) { animation: navLinkFadeIn 0.2s ease 0.04s both; }
  .nav-links.open li:nth-child(2) { animation: navLinkFadeIn 0.2s ease 0.08s both; }
  .nav-links.open li:nth-child(3) { animation: navLinkFadeIn 0.2s ease 0.12s both; }
  .nav-links.open li:nth-child(4) { animation: navLinkFadeIn 0.2s ease 0.16s both; }
  .nav-links.open li:nth-child(5) { animation: navLinkFadeIn 0.2s ease 0.20s both; }
  .nav-links.open li:nth-child(6) { animation: navLinkFadeIn 0.2s ease 0.24s both; }
  .nav-links.open li:nth-child(7) { animation: navLinkFadeIn 0.2s ease 0.28s both; }
  .nav-links.open li:nth-child(8) { animation: navLinkFadeIn 0.2s ease 0.32s both; }
  .nav-toggle { display: block; position: relative; z-index: 110; }

  .hero { padding: 3rem 0 4rem; }
  .hero-badge-1, .hero-badge-2, .hero-badge-3 { display: none; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }

  .sms-button { padding: 0.7rem 1.1rem; font-size: 0.92rem; bottom: 16px; right: 16px; }
  .sms-tooltip { bottom: 70px; right: 16px; }

  .cta-banner { padding: 2.75rem 1.5rem; margin: 2.5rem 1rem; }
}

@media (max-width: 460px) {
  .hero-ctas .btn { width: 100%; justify-content: center; }
}

.card-image img,
.gallery-item img {
  cursor: zoom-in;
}

.card-image-zoom-hint {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(42, 42, 62, 0.55);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 3;
  backdrop-filter: blur(4px);
}

.card-image:hover .card-image-zoom-hint,
.gallery-item:hover .card-image-zoom-hint {
  opacity: 1;
}

.gallery-item {
  position: relative;
}

@media (hover: none) {
  .card-image-zoom-hint {
    opacity: 0.85;
  }
}

html.lightbox-open,
html.lightbox-open body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: contain;
}

html.nav-open,
html.nav-open body {
  overflow: hidden;
  touch-action: none;
  overscroll-behavior: contain;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 30, 0.93);
  backdrop-filter: blur(6px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  padding: 1rem;
  overscroll-behavior: contain;
}

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

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
  max-height: 100%;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 84vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  background: var(--ink);
}

.lightbox-caption {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  text-align: center;
  max-width: 80vw;
}

.lightbox-counter {
  position: absolute;
  top: 1.1rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  border: none;
  background: rgba(255, 254, 249, 0.12);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  padding: 0;
  font-family: inherit;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 254, 249, 0.22);
}

.lightbox-close:focus-visible,
.lightbox-arrow:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

.lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  line-height: 1;
}

.lightbox-arrow {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  line-height: 1;
}

.lightbox-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

.lightbox-arrow--prev { left: 1.25rem; }
.lightbox-arrow--next { right: 1.25rem; }

@media (max-width: 720px) {
  .lightbox-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .lightbox-arrow--prev { left: 0.5rem; }
  .lightbox-arrow--next { right: 0.5rem; }
  .lightbox-img { max-height: 78vh; }
  .lightbox-close { top: 0.6rem; right: 0.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .lightbox { transition: none; }
  .lightbox-arrow:hover { transform: translateY(-50%); }
}
