:root {
  --bg: #f8fcff;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #575656;
  --muted: #6d6a6a;
  --line: rgba(87, 86, 86, 0.12);
  --brand-pink: #e7295c;
  --brand-blue: #2daae1;
  --brand-orange: #f39200;
  --brand-yellow: #dddc00;
  --brand-green: #96c11f;
  --brand-green-soft: #a9cd53;
  --brand-blue-soft: #6bbfe2;
  --brand-charcoal: #575656;
  --shadow: 0 24px 60px rgba(87, 86, 86, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Trebuchet MS", Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(231, 41, 92, 0.1), transparent 28%),
    radial-gradient(circle at 80% 12%, rgba(45, 170, 225, 0.12), transparent 22%),
    radial-gradient(circle at 60% 78%, rgba(221, 220, 0, 0.08), transparent 18%),
    linear-gradient(180deg, #fcfeff 0%, #f4faff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(45, 170, 225, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 170, 225, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent);
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 20px auto 48px;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 20px rgba(45, 170, 225, 0.12);
  overflow: hidden;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(45, 170, 225, 0.12);
  color: var(--brand-charcoal);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--brand-green-soft), var(--brand-blue-soft));
  color: #fffaf3;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--surface-strong);
  font: inherit;
  font-weight: 700;
  color: var(--text);
}

.section {
  padding: 72px 0;
}

.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 170, 225, 0.24) 18%,
    rgba(231, 41, 92, 0.24) 52%,
    rgba(150, 193, 31, 0.24) 82%,
    transparent
  );
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  min-height: calc(100vh - 128px);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-pink);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.98;
}

h1,
h2 {
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  max-width: 13ch;
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  max-width: 16ch;
  line-height: 1.06;
}

h3 {
  font-size: 1.2rem;
}

.hero-text,
.intro-copy p,
.feature-card p,
.split-panel p,
.animal-copy p,
.animal-card p,
.testimonial-card p,
.contact-copy p,
.detail-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-actions,
.hero-facts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin: 32px 0 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(87, 86, 86, 0.12);
}

.button-primary {
  border: 0;
  background: linear-gradient(135deg, var(--brand-green-soft), var(--brand-blue-soft));
  color: #fffaf3;
}

.button-secondary {
  border: 1px solid rgba(45, 170, 225, 0.12);
  background: rgba(45, 170, 225, 0.08);
  color: var(--text);
}

.hero-facts {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-facts li {
  padding: 10px 14px;
  border: 1px solid rgba(150, 193, 31, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.hero-note {
  display: inline-grid;
  gap: 10px;
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(150, 193, 31, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(150, 193, 31, 0.12), rgba(45, 170, 225, 0.08));
  box-shadow: var(--shadow);
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.visual-photo {
  position: absolute;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 30px;
  box-shadow: none;
  background: transparent;
}

.visual-photo img,
.inline-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.visual-photo-main {
  inset: 0 8% auto auto;
  width: min(100%, 420px);
  height: 360px;
  transform: rotate(1.6deg);
}

.visual-photo-accent {
  inset: auto auto 7% 2%;
  width: min(100%, 280px);
  height: 230px;
  transform: rotate(-3deg);
}

.visual-label {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-squiggle {
  position: absolute;
  border-radius: 999px;
  border: 4px solid transparent;
}

.visual-squiggle-one {
  inset: 2% auto auto 12%;
  width: 98px;
  height: 28px;
  border-top-color: var(--brand-blue);
  border-bottom-color: var(--brand-blue);
  transform: rotate(-8deg);
}

.visual-squiggle-two {
  inset: auto 8% 24% auto;
  width: 88px;
  height: 24px;
  border-top-color: var(--brand-pink);
  border-bottom-color: var(--brand-pink);
  transform: rotate(10deg);
}

.visual-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.visual-orb-one {
  inset: 10% auto auto 5%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(45, 170, 225, 0.22), transparent 70%);
}

.visual-orb-two {
  inset: auto 10% 18% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(231, 41, 92, 0.18), transparent 72%);
}

.intro-grid,
.split-layout,
.contact-section,
.animal-layout {
  display: grid;
  gap: 28px;
}

.intro-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}

.section-heading {
  margin-bottom: 28px;
}

.feature-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card,
.testimonial-card,
.detail-card,
.animal-card,
.split-panel,
.contact-path {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature-card {
  grid-column: span 6;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(45, 170, 225, 0.1), rgba(255, 255, 255, 0.9)),
    var(--surface);
}

.split-layout,
.contact-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-panel {
  padding: 30px;
}

.split-panel-highlight {
  background:
    linear-gradient(180deg, rgba(150, 193, 31, 0.1), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.inline-photo {
  overflow: hidden;
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
  aspect-ratio: 16 / 10;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.gallery-grid .inline-photo {
  margin-bottom: 0;
  aspect-ratio: 4 / 5;
}

.inline-photo-wide {
  margin-bottom: 24px;
  aspect-ratio: 16 / 9;
}

.animal-gallery {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 14px;
  margin-bottom: 24px;
}

.animal-gallery .inline-photo {
  margin-bottom: 0;
}

.detail-stack {
  display: grid;
  gap: 14px;
}

.detail-card {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(164, 138, 122, 0.14), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.detail-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  background: rgba(45, 170, 225, 0.14);
  color: var(--brand-charcoal);
  font-weight: 800;
}

.animal-copy {
  max-width: 62ch;
}

.animal-points {
  display: grid;
  gap: 14px;
}

.animal-card {
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(164, 138, 122, 0.14), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.testimonial-card {
  grid-column: span 4;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(150, 193, 31, 0.1), rgba(255, 255, 255, 0.92)),
    var(--surface);
}

.testimonial-card p {
  margin: 0;
  font-size: 1.08rem;
}

.contact-copy {
  align-self: center;
}

.contact-note {
  padding: 14px 16px;
  border-left: 4px solid var(--brand-blue);
  background: linear-gradient(180deg, rgba(45, 170, 225, 0.08), rgba(255, 255, 255, 0.9));
}

.contact-paths {
  display: grid;
  gap: 16px;
}

.contact-path {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-path:hover,
.contact-path:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(87, 86, 86, 0.16);
}

.contact-path-whatsapp {
  background: linear-gradient(180deg, rgba(150, 193, 31, 0.14), rgba(255, 255, 255, 0.92)), var(--surface);
}

.contact-path-facebook {
  background: linear-gradient(180deg, rgba(45, 170, 225, 0.12), rgba(255, 255, 255, 0.92)), var(--surface);
}

.contact-path-mail {
  background: linear-gradient(180deg, rgba(164, 138, 122, 0.14), rgba(255, 255, 255, 0.92)), var(--surface);
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 900;
  color: var(--brand-charcoal);
}

.contact-body {
  display: grid;
  gap: 4px;
}

.contact-body strong {
  font-size: 1.2rem;
}

.contact-body small {
  color: var(--muted);
  line-height: 1.5;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 12px;
  color: var(--brand-pink);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 24px 0 12px;
  border-top: 1px solid rgba(45, 170, 225, 0.12);
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(45, 170, 225, 0.08);
  color: inherit;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #dddc00;
  color: #575656;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 16px 32px rgba(87, 86, 86, 0.18);
}

.privacy-note {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 19;
  width: min(calc(100% - 108px), 340px);
  padding: 16px 18px;
  border: 1px solid rgba(87, 86, 86, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 32px rgba(87, 86, 86, 0.12);
}

.privacy-note[hidden] {
  display: none;
}

.privacy-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.95rem;
}

.privacy-note-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 12px;
}

.privacy-note-actions a {
  color: var(--brand-blue);
  text-decoration: none;
  font-weight: 700;
}

.privacy-note-actions a:hover,
.privacy-note-actions a:focus-visible {
  text-decoration: underline;
}

.privacy-note-close {
  border: 0;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(45, 170, 225, 0.1);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.privacy-note-close:hover,
.privacy-note-close:focus-visible {
  background: rgba(45, 170, 225, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
    align-items: start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 12;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    position: relative;
    z-index: 11;
    padding-top: 6px;
  }

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

  .site-nav a {
    display: block;
  }

  .hero,
  .intro-grid,
  .split-layout,
  .contact-section,
  .animal-layout,
  .content-hero {
    grid-template-columns: 1fr;
  }

  .content-hero-photo,
  .content-hero-photo-portrait {
    min-height: 320px;
  }

  .content-hero .inline-photo {
    margin-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-visual {
    min-height: 460px;
  }

  .visual-photo-main {
    inset: 0 2% auto auto;
    width: min(100%, 360px);
    height: 280px;
  }

  .visual-photo-accent {
    width: min(100%, 250px);
    height: 200px;
  }

  .feature-card,
  .testimonial-card {
    grid-column: span 12;
  }

  .content-hero,
  .faq-grid,
  .gallery-grid-wide,
  .gallery-grid-feature,
  .gallery-grid-pairs,
  .gallery-grid-rhythm,
  .gallery-grid-triptych,
  .gallery-grid-rooms-top,
  .gallery-grid-rooms-bottom,
  .gallery-grid-nature,
  .gallery-grid-animals,
  .gallery-grid-details,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
    margin-top: 10px;
  }

  .site-header {
    top: 10px;
    padding: 14px;
  }

  .section {
    padding: 56px 0;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

  .hero-visual {
    min-height: 420px;
  }

  .visual-photo-main {
    width: min(100%, 300px);
    height: 240px;
  }

  .visual-photo-accent {
    width: min(100%, 220px);
    height: 175px;
  }

  .animal-gallery {
    grid-template-columns: 1fr;
  }

  .content-hero,
  .faq-grid,
  .gallery-grid-wide,
  .gallery-grid-feature,
  .gallery-grid-pairs,
  .gallery-grid-rhythm,
  .gallery-grid-triptych,
  .gallery-grid-rooms-top,
  .gallery-grid-rooms-bottom,
  .gallery-grid-nature,
  .gallery-grid-animals,
  .gallery-grid-details,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    justify-content: flex-start;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }

  .privacy-note {
    left: 12px;
    bottom: 12px;
    width: min(calc(100% - 92px), 320px);
    padding: 14px 16px;
  }

  .privacy-note-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.legal-shell {
  width: min(calc(100% - 32px), 920px);
  margin: 20px auto 48px;
}

.legal-main {
  padding: 48px 0 24px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.legal-main .legal-card:nth-of-type(4n + 1) {
  background: linear-gradient(180deg, rgba(45, 170, 225, 0.08), rgba(255, 255, 255, 0.92));
}

.legal-main .legal-card:nth-of-type(4n + 2) {
  background: linear-gradient(180deg, rgba(150, 193, 31, 0.09), rgba(255, 255, 255, 0.92));
}

.legal-main .legal-card:nth-of-type(4n + 3) {
  background: linear-gradient(180deg, rgba(164, 138, 122, 0.14), rgba(255, 255, 255, 0.92));
}

.legal-main .legal-card:nth-of-type(4n + 4) {
  background: linear-gradient(180deg, rgba(243, 146, 0, 0.08), rgba(255, 255, 255, 0.92));
}

.legal-card + .legal-card {
  margin-top: 18px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.legal-pre {
  margin: 0;
  white-space: pre-wrap;
  font: inherit;
  color: var(--muted);
  line-height: 1.7;
}

.content-shell {
  width: min(calc(100% - 32px), 1080px);
}

.content-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
}

.content-hero-photo {
  margin-bottom: 0;
  min-height: 320px;
}

.content-hero-photo-portrait {
  min-height: 420px;
  aspect-ratio: 4 / 5;
}

.faq-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

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

.faq-card,
.faq-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 255, 255, 0.52));
}

.faq-card h3,
.faq-item h3 {
  margin-bottom: 10px;
}

.faq-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-grid-wide {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.gallery-grid-feature {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.gallery-grid-feature .inline-photo:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

.gallery-grid-feature .inline-photo:not(:first-child) {
  aspect-ratio: 4 / 3;
}

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

.gallery-grid-pairs .inline-photo:nth-child(3),
.gallery-grid-pairs .inline-photo:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

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

.gallery-grid-rhythm .inline-photo:nth-child(2),
.gallery-grid-rhythm .inline-photo:nth-child(5) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-grid-triptych {
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
}

.gallery-grid-triptych .inline-photo:first-child {
  grid-row: span 2;
  aspect-ratio: 4 / 5;
}

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

.gallery-grid-rooms-top .inline-photo {
  aspect-ratio: 16 / 10;
}

.gallery-grid-rooms-bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-grid-rooms-bottom .inline-photo {
  aspect-ratio: 4 / 5;
}

.gallery-grid-nature {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid-nature .inline-photo:nth-child(1),
.gallery-grid-nature .inline-photo:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-grid-animals {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid-animals .inline-photo:last-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

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

.gallery-grid-details .inline-photo:nth-child(2) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.impression-card {
  border-color: rgba(87, 86, 86, 0.08);
}

.impression-card-blue {
  background: linear-gradient(180deg, rgba(45, 170, 225, 0.08), rgba(255, 255, 255, 0.9));
}

.impression-card-pink {
  background: linear-gradient(180deg, rgba(231, 41, 92, 0.07), rgba(255, 255, 255, 0.9));
}

.impression-card-yellow {
  background: linear-gradient(180deg, rgba(221, 220, 0, 0.1), rgba(255, 255, 255, 0.92));
}

.impression-card-green {
  background: linear-gradient(180deg, rgba(150, 193, 31, 0.1), rgba(255, 255, 255, 0.92));
}

.impression-card-orange {
  background: linear-gradient(180deg, rgba(243, 146, 0, 0.08), rgba(255, 255, 255, 0.92));
}

.impression-card-taupe {
  background: linear-gradient(180deg, rgba(164, 138, 122, 0.14), rgba(255, 255, 255, 0.92));
}

.impressionen-page .inline-photo {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.impressionen-page .inline-photo img {
  border-radius: 24px;
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(87, 86, 86, 0.72);
  backdrop-filter: blur(8px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-image {
  display: block;
  max-width: min(100%, 1100px);
  max-height: calc(100vh - 96px);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

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

  .content-hero {
    grid-template-columns: 1fr;
  }

  .content-hero-photo,
  .content-hero-photo-portrait {
    min-height: 320px;
  }

  .content-hero .inline-photo {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 640px) {
  .content-hero {
    grid-template-columns: 1fr;
  }

  .content-hero-photo,
  .content-hero-photo-portrait {
    min-height: 260px;
  }
}
