
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --color-green: #2f6b3f;
  --color-terra: #d97732;
  --color-cream: #f7f2e8;
  --color-ink: #2b2b2b;
  --color-logo-blue: #1f78b8;
  --color-leaf: #7a9d3d;
  --color-sun: #f2aa2f;
  --shadow-soft: 0 22px 60px rgba(47, 107, 63, .16);
  --shadow-lift: 0 16px 38px rgba(43, 43, 43, .13);
  --header-height: 160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--color-ink);
  background: radial-gradient(circle at 6% 16%, rgba(217,119,50,.1), transparent 28%), radial-gradient(circle at 92% 12%, rgba(31,120,184,.1), transparent 26%), var(--color-cream);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(47,107,63,.08) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, transparent 85%);
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.text-terra { color: var(--color-terra); }
.text-green { color: var(--color-green); }
.bg-white\/70 { background-color: rgba(255,255,255,.7); }
.page-shell { position: relative; z-index: 1; }
.tinga-border {
  height: 26px;
  background: radial-gradient(circle at 12px 12px, #fff 0 3px, transparent 3.5px), radial-gradient(circle at 42px 18px, #fff 0 2px, transparent 2.5px), linear-gradient(135deg, transparent 0 18px, #111 18px 23px, transparent 23px 44px), repeating-linear-gradient(90deg, #d97732 0 38px, #2f6b3f 38px 76px, #111 76px 114px, #f2aa2f 114px 152px);
  background-size: 72px 28px, 72px 28px, 76px 28px, 152px 28px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(217,119,50,.08), transparent 26%),
    rgba(247,242,232,.98);
  backdrop-filter: blur(18px);
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -46px;
  height: 72px;
  pointer-events: none;
  background: rgba(247,242,232,.98);
  clip-path: polygon(0 0, 100% 0, 100% 36%, 88% 45%, 72% 41%, 55% 52%, 36% 47%, 18% 62%, 0 50%);
  filter: drop-shadow(0 18px 16px rgba(47,107,63,.08));
}
.header-inner { min-height: var(--header-height); max-width: 1280px; margin: 0 auto; padding: 16px 20px 28px; display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo-link { display: flex; align-items: center; flex: 0 0 clamp(390px, 35%, 500px); min-width: 0; }
.logo-img { width: 100%; height: auto; max-height: 138px; object-fit: contain; filter: drop-shadow(0 8px 14px rgba(47,107,63,.13)); }
.nav-wrap { display: flex; align-items: center; gap: 18px; min-width: 0; padding-top: 10px; }
.desktop-nav { display: flex; align-items: center; gap: 18px; }
.nav-link { position: relative; font-weight: 650; color: var(--color-ink); }
.nav-link::after { content: ''; position: absolute; left: 0; right: 0; bottom: -14px; height: 3px; transform: scaleX(0); transform-origin: left; background: var(--color-terra); transition: transform .25s ease; }
.nav-link:hover::after, .nav-link:focus-visible::after, .nav-link.is-active::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.lang-switch { display: flex; gap: 4px; padding: 4px; border-radius: 999px; background: rgba(255,255,255,.82); box-shadow: 0 8px 24px rgba(47,107,63,.1); }
.lang-button { min-width: 42px; border: 0; border-radius: 999px; padding: 9px 11px; background: transparent; color: var(--color-green); font-weight: 800; cursor: pointer; }
.lang-button[aria-pressed='true'] { background: var(--color-green); color: #fff; }
.whatsapp-cta, .outline-cta, .terra-cta { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 14px; padding: 12px 16px; font-weight: 800; transition: transform .22s ease, background-color .22s ease, box-shadow .22s ease; }
.whatsapp-cta { background: var(--color-green); color: #fff; box-shadow: var(--shadow-soft); }
.whatsapp-cta:hover, .terra-cta:hover, .outline-cta:hover { transform: translateY(-2px); }
.whatsapp-cta:hover { background: var(--color-terra); }
.outline-cta { border: 2px solid var(--color-terra); background: rgba(255,255,255,.76); color: var(--color-terra); }
.outline-cta:hover { background: var(--color-terra); color: #fff; }
.terra-cta { background: var(--color-terra); color: #fff; box-shadow: var(--shadow-soft); }
.terra-cta:hover { background: var(--color-green); }
.menu-toggle { display: none; width: 48px; height: 48px; place-items: center; border: 2px solid rgba(47,107,63,.22); border-radius: 14px; background: #fff; color: var(--color-green); cursor: pointer; }
.mobile-panel { display: none; border-top: 1px solid rgba(47,107,63,.12); background: rgba(247,242,232,.98); }
.mobile-panel.is-open { display: block; }
.mobile-panel-inner { max-width: 1280px; margin: 0 auto; padding: 12px 20px 20px; display: grid; gap: 12px; }
.mobile-nav-link { padding: 13px 2px; border-bottom: 1px solid rgba(47,107,63,.1); font-weight: 750; }
.container { max-width: 1280px; margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.section { padding: 84px 0; }
.hero-section { overflow: hidden; border-bottom: 1px solid rgba(47,107,63,.12); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 54px; align-items: center; padding-top: 58px; padding-bottom: 68px; }
.home-hero-photo {
  position: relative;
  min-height: clamp(650px, 78vh, 840px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(47,107,63,.12);
  margin-top: -30px;
  padding-top: 42px;
  background: url('assets/babajay-hero-veranda.jpg') center 36% / cover no-repeat;
}
.home-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 34, 25, .5) 0%, rgba(47, 107, 63, .22) 45%, rgba(247, 242, 232, .16) 100%),
    linear-gradient(0deg, rgba(43, 43, 43, .14), rgba(43, 43, 43, .14));
}
.home-hero-inner {
  position: relative;
  width: 100%;
  padding-top: 72px;
  padding-bottom: 72px;
}
.home-hero-card {
  width: min(100%, 620px);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 30px;
  background: rgba(247,242,232,.92);
  box-shadow: 0 30px 80px rgba(24, 40, 28, .28);
  padding: clamp(28px, 4vw, 48px);
  backdrop-filter: blur(10px);
}
.home-hero-card .display-title {
  max-width: 520px;
}
.home-hero-card .lead {
  max-width: 540px;
}
.home-benefits-section {
  position: relative;
  z-index: 2;
  padding: 38px 0 34px;
  background: rgba(255,255,255,.72);
}
.home-benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.eyebrow { display: inline-flex; align-items: center; gap: 12px; border-radius: 999px; background: #fff; padding: 10px 16px; color: var(--color-green); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; box-shadow: var(--shadow-soft); }
.eyebrow-dot { width: 8px; height: 8px; border-radius: 999px; background: var(--color-terra); }
.display-title { margin: 22px 0 0; max-width: 610px; color: var(--color-green); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.45rem, 4.1vw, 4.15rem); line-height: 1.05; font-weight: 800; }
.page-title { margin: 20px 0 0; color: var(--color-green); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.65rem, 5vw, 5rem); line-height: 1; font-weight: 800; }
.section-title { margin: 12px 0 0; color: var(--color-green); font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2.1rem, 3.6vw, 3.5rem); line-height: 1.06; font-weight: 800; }
.section-intro { max-width: 760px; margin: 18px auto 0; color: rgba(43,43,43,.78); font-size: 18px; line-height: 1.75; }
.lead { margin-top: 24px; max-width: 620px; color: rgba(43,43,43,.84); font-size: 18px; line-height: 1.75; }
.squiggle { width: 88px; height: 10px; margin: 26px 0; background: url("data:image/svg+xml,%3Csvg width='88' height='10' viewBox='0 0 88 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 5c4 0 4-4 8-4s4 4 8 4 4-4 8-4 4 4 8 4 4-4 8-4 4 4 8 4 4-4 8-4 4 4 8 4 4-4 8-4 4 4 8 4 4-4 8-4' fill='none' stroke='%23D97732' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat; }
.center { text-align: center; }
.center .squiggle { margin-left: auto; margin-right: auto; }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 34px; }
.hero-media { position: relative; min-height: 420px; }
.hero-media::before, .hero-media::after { content: ''; position: absolute; border-radius: 52% 48% 42% 58% / 48% 42% 58% 52%; z-index: -1; }
.hero-media::before { width: 290px; height: 290px; left: -28px; top: 34px; background: rgba(47,107,63,.16); }
.hero-media::after { width: 230px; height: 230px; right: -24px; bottom: 42px; background: rgba(217,119,50,.2); }
.hero-image { width: 100%; height: 560px; object-fit: cover; border-radius: 34% 8% 8% 28% / 18% 8% 8% 24%; box-shadow: var(--shadow-soft); }
.benefit-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 18px; }
.benefit-card, .room-card, .category-card, .tour-card, .contact-card, .map-card { border: 1px solid rgba(47,107,63,.1); border-radius: 22px; background: rgba(255,255,255,.82); box-shadow: var(--shadow-soft); transition: transform .22s ease, box-shadow .22s ease; }
.benefit-card:hover, .room-card:hover, .category-card:hover, .tour-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.benefit-card { padding: 24px 18px; text-align: center; }
.home-benefit {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 24px 16px;
  text-align: center;
}
.home-benefit .icon-circle {
  margin-bottom: 16px;
}
.home-benefit .card-title {
  font-size: 20px;
}
.home-benefit p {
  margin: 8px 0 0;
  color: rgba(43,43,43,.72);
  font-size: 14px;
  line-height: 1.5;
}
.icon-circle { width: 64px; height: 64px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 999px; color: #fff; background: var(--color-green); box-shadow: var(--shadow-soft); }
.icon-circle.terra { background: var(--color-terra); }
.card-title { margin: 0; color: var(--color-green); font-family: 'Playfair Display', Georgia, serif; font-size: 24px; line-height: 1.15; font-weight: 800; }
.about-grid, .contact-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 48px; align-items: center; }
.framed-image { overflow: hidden; border-radius: 28px; background: #fff; padding: 8px; box-shadow: var(--shadow-lift); border: 1px solid rgba(47,107,63,.1); }
.framed-image img { display: block; width: 100%; height: 430px; object-fit: cover; border-radius: 22px; }
.quote { margin-top: 30px; border-left: 4px solid var(--color-terra); background: rgba(255,255,255,.72); padding: 24px; color: var(--color-green); font-family: 'Playfair Display', Georgia, serif; font-size: 26px; line-height: 1.24; font-weight: 800; box-shadow: var(--shadow-soft); }
.quote-section {
  background: var(--color-cream);
}
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, .82fr) minmax(0, .9fr);
  gap: 24px;
  align-items: stretch;
}
.quote-panel {
  border-radius: 28px;
  background: var(--color-green);
  color: #fff;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-soft);
}
.quote-panel blockquote {
  margin: 28px 0 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 1.08;
  font-weight: 800;
}
.quote-panel .eyebrow {
  color: var(--color-green);
}
.reason-list {
  display: grid;
  gap: 16px;
}
.why-photo {
  min-height: 100%;
}
.why-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.reason-card {
  border: 1px solid rgba(47,107,63,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}
.reason-card i {
  width: 34px;
  height: 34px;
  color: var(--color-terra);
}
.reason-card h3 {
  margin: 12px 0 8px;
  color: var(--color-green);
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}
.reason-card p {
  margin: 0;
  color: rgba(43,43,43,.74);
  line-height: 1.62;
}
.pattern-soft {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(rgba(247,242,232,.86), rgba(247,242,232,.9)),
    url('assets/babajay-garden-background.jpg') center / cover no-repeat;
}
.pattern-soft::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 14% 22%, rgba(217,119,50,.22), transparent 30%),
    linear-gradient(120deg, rgba(47,107,63,.2), rgba(255,255,255,.12) 48%, rgba(217,119,50,.16));
}
.pattern-soft > .container { position: relative; z-index: 1; }
.why-grid, .category-grid, .tour-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 44px; }
.info-card, .category-card, .tour-card { padding: 28px; }
.info-card { border: 1px solid rgba(47,107,63,.1); border-radius: 22px; background: #fff; box-shadow: var(--shadow-soft); }
.info-card p, .category-card li, .tour-card p, .room-card p { color: rgba(43,43,43,.76); line-height: 1.68; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin-top: 34px; }
.photo-hover { overflow: hidden; border-radius: 22px; box-shadow: var(--shadow-lift); }
.photo-hover img { display: block; width: 100%; height: 290px; object-fit: cover; transition: transform .6s ease, filter .6s ease; }
.photo-hover:hover img { transform: scale(1.06); filter: saturate(1.08); }
.page-hero { padding: 72px 0 44px; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.room-card { overflow: hidden; }
.room-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.room-body { padding: 24px; }
.room-meta { display: inline-flex; align-items: center; gap: 8px; margin: 14px 0; color: var(--color-terra); font-weight: 800; }
.amenities { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 22px; padding: 0; list-style: none; }
.amenities li { border-radius: 999px; background: rgba(47,107,63,.1); color: var(--color-green); padding: 8px 10px; font-size: 13px; font-weight: 750; }
.category-card ul, .service-list { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.category-card li, .service-list li { position: relative; padding-left: 24px; }
.category-card li::before, .service-list li::before { content: ''; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 999px; background: var(--color-terra); }
.tour-card .tour-price {
  margin-top: 16px;
  border-top: 1px solid rgba(47,107,63,.12);
  padding-top: 16px;
  color: var(--color-ink);
  font-weight: 800;
  line-height: 1.68;
}
.cta-band { margin: 72px 0 0; border-radius: 30px; padding: 44px; background: var(--color-green); color: #fff; box-shadow: var(--shadow-soft); position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; right: -80px; top: -80px; width: 220px; height: 220px; border-radius: 50%; background: rgba(217,119,50,.35); }
.cta-band h2 { margin: 0; font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 1; }
.cta-band p { max-width: 760px; color: rgba(255,255,255,.84); font-size: 18px; line-height: 1.7; }
.contact-card, .map-card { padding: 32px; }
.contact-method { display: grid; gap: 8px; margin: 24px 0; }
.contact-method a { color: var(--color-green); font-size: 20px; font-weight: 850; }
.map-frame { width: 100%; min-height: 380px; border: 0; border-radius: 22px; box-shadow: var(--shadow-soft); }
.site-footer { position: relative; z-index: 1; background: var(--color-green); color: #fff; }
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 48px 20px; display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 34px; }
.footer-logo { display: none; }
.footer-text { max-width: 480px; color: rgba(255,255,255,.8); line-height: 1.7; }
.footer-heading { color: rgba(255,255,255,.72); font-size: 13px; font-weight: 850; letter-spacing: .18em; text-transform: uppercase; }
.footer-booking-text { margin: 16px 0 14px; color: rgba(255,255,255,.82); line-height: 1.6; }
.footer-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; color: rgba(255,255,255,.84); }
.gallery-action { margin-top: 32px; display: flex; justify-content: center; }
.copyright { border-top: 1px solid rgba(255,255,255,.15); padding: 18px 20px; text-align: center; color: rgba(255,255,255,.74); font-size: 14px; }
.floating-whatsapp { position: fixed; right: 20px; bottom: 20px; z-index: 50; width: 64px; height: 64px; display: grid; place-items: center; border-radius: 999px; background: #25d366; color: #fff; box-shadow: var(--shadow-lift); border: 4px solid #fff; transition: transform .22s ease; }
.floating-whatsapp:hover { transform: translateY(-3px); }
@media (max-width: 1160px) {
  .desktop-nav, .header-actions .whatsapp-cta { display: none; }
  .menu-toggle { display: grid; }
  .header-inner { padding-bottom: 22px; }
  .logo-link { flex-basis: clamp(300px, 48vw, 420px); }
  .logo-img { max-height: 112px; }
  .benefit-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-benefits-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .rooms-grid, .why-grid, .category-grid, .tour-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  :root { --header-height: 124px; }
  .hero-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; }
  .why-photo img { min-height: 340px; }
  .home-hero-photo { min-height: 650px; align-items: flex-end; margin-top: -24px; padding-top: 34px; background-position: 48% center; }
  .home-hero-inner { padding-top: 50px; padding-bottom: 44px; }
  .home-hero-overlay { background: linear-gradient(0deg, rgba(22,34,25,.55), rgba(47,107,63,.2)); }
  .home-hero-card { width: min(100%, 560px); }
  .hero-grid { padding-top: 46px; padding-bottom: 56px; }
  .hero-media { min-height: auto; }
  .hero-image { height: 390px; border-radius: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-inner { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  :root { --header-height: 94px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .header-inner { min-height: var(--header-height); padding: 7px 12px 12px; gap: 8px; }
  .nav-wrap, .header-actions { gap: 6px; }
  .logo-link { flex-basis: clamp(150px, 45vw, 250px); }
  .logo-img { max-height: 76px; }
  .site-header::after { bottom: -34px; height: 52px; }
  .menu-toggle { width: 42px; height: 42px; border-radius: 12px; }
  .lang-switch { gap: 2px; padding: 3px; }
  .lang-button { min-width: 31px; padding: 7px 6px; font-size: 12px; }
  .mobile-panel-inner { padding-left: 16px; padding-right: 16px; }
  .home-hero-photo { min-height: 610px; margin-top: -18px; padding-top: 28px; background-position: 47% center; }
  .home-hero-inner { padding-top: 42px; padding-bottom: 34px; }
  .home-hero-card { padding: 24px 20px; }
  .section { padding: 58px 0; }
  .page-hero { padding: 54px 0 32px; }
  .eyebrow { max-width: 100%; padding: 9px 12px; gap: 9px; font-size: 11px; letter-spacing: .08em; }
  .display-title { font-size: clamp(2.05rem, 9vw, 2.7rem); }
  .page-title { font-size: clamp(2.15rem, 10vw, 3.15rem); }
  .section-title { font-size: clamp(1.9rem, 9vw, 2.65rem); }
  .lead, .section-intro { font-size: 16px; line-height: 1.65; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .whatsapp-cta, .outline-cta, .terra-cta { width: 100%; }
  .benefit-grid, .rooms-grid, .why-grid, .category-grid, .tour-grid, .gallery-grid { grid-template-columns: 1fr; }
  .home-benefits-grid { grid-template-columns: 1fr; }
  .home-benefit { min-height: 0; }
  .home-hero-card { border-radius: 24px; }
  .framed-image img, .photo-hover img { height: 250px; }
  .cta-band { padding: 30px 22px; border-radius: 24px; }
  .contact-card, .map-card { padding: 24px; }
  .map-frame { min-height: 320px; }
  .floating-whatsapp { right: 14px; bottom: 14px; width: 56px; height: 56px; border-width: 3px; }
}
@media (max-width: 390px) {
  .logo-link { flex-basis: 142px; }
  .logo-img { max-height: 68px; }
  .lang-button { min-width: 29px; padding-left: 5px; padding-right: 5px; }
  .menu-toggle { width: 40px; height: 40px; }
  .home-hero-card { padding: 22px 18px; }
  .card-title { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.footer-brand { font-family: 'Playfair Display', Georgia, serif; font-size: 42px; line-height: 1; font-weight: 800; color: #fff; }
.footer-tagline { margin: 10px 0 0; color: rgba(255,255,255,.78); font-weight: 850; letter-spacing: .16em; text-transform: uppercase; font-size: 12px; }
.attraction-photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.attraction-photo-grid img { width: 100%; height: 260px; object-fit: cover; }
.pt-0 { padding-top: 0; }
@media (max-width: 820px) { .attraction-photo-grid { grid-template-columns: 1fr; } }
