/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #3d1428;
  background: #fffaf5;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Typography ── */
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; font-weight: 600; line-height: 1.2; }
em { font-style: italic; }

/* ── Section Shared ── */
.section { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7B2D5E;
  background: #faf0f5;
  border: 1px solid #f5dce8;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #3d1428;
  margin-bottom: 16px;
}
.section-title em { color: #7B2D5E; }
.section-desc { font-size: 1.1rem; color: #7B2D5E; opacity: 0.75; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: 2px solid transparent;
  border-radius: 100px;
  padding: 14px 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-primary {
  background: #7B2D5E;
  color: #fff;
  border-color: #7B2D5E;
}
.btn-primary:hover { background: #5c1f40; border-color: #5c1f40; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(123,45,94,0.3); }
.btn-amber {
  background: #F5C518;
  color: #3d1428;
  border-color: #F5C518;
}
.btn-amber:hover { background: #e0a800; border-color: #e0a800; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,197,24,0.4); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; transform: translateY(-2px); }
.btn-white {
  background: #fff;
  color: #7B2D5E;
  border-color: #fff;
}
.btn-white:hover { background: #faf0f5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-nav { background: #F5C518; color: #3d1428; border-color: #F5C518; padding: 10px 22px; font-size: 0.9rem; }
.btn-nav:hover { background: #e0a800; border-color: #e0a800; }
.btn-book-mobile { background: #7B2D5E; color: #fff; border-color: #7B2D5E; margin-top: 20px; justify-content: center; width: 100%; }
.btn-book-mobile:hover { background: #5c1f40; }

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,250,245,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(123,45,94,0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(123,45,94,0.1); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #7B2D5E;
}
.nav-logo-icon { color: #7B2D5E; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.nav-links a:not(.btn) {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #3d1428;
  border-radius: 100px;
  transition: all 0.2s ease;
}
.nav-links a:not(.btn):hover { background: #faf0f5; color: #7B2D5E; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #7B2D5E;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── MOBILE NAV ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,250,245,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-inner { text-align: center; }
.mobile-nav-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none; border: none;
  cursor: pointer; color: #7B2D5E;
  padding: 8px;
}
.mobile-nav-link {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #3d1428;
  padding: 14px 0;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: #7B2D5E; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 120px 0 80px;
  background: #7B2D5E;
  position: relative;
  overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}
.hero-circle-1 {
  width: 600px; height: 600px;
  background: #F5C518;
  top: -200px; right: -100px;
}
.hero-circle-2 {
  width: 400px; height: 400px;
  background: #fff;
  bottom: -100px; left: -100px;
}
.hero-circle-3 {
  width: 200px; height: 200px;
  background: #F5C518;
  bottom: 100px; left: 30%;
  opacity: 0.12;
}
.hero-container { position: relative; z-index: 1; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.3);
  color: #F5C518;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-line-accent { color: #F5C518; }
.hero-line-highlight {
  color: #fff;
  position: relative;
}
.hero-line-highlight::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0; right: 0;
  height: 6px;
  background: rgba(245,197,24,0.4);
  border-radius: 3px;
  z-index: -1;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 48px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 24px; }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
.hero-trust-item svg { color: #F5C518; flex-shrink: 0; }

/* Hero collage */
.hero-collage { position: relative; height: 680px; }
.collage-main {
  position: absolute;
  top: 0; right: 0;
  width: 75%;
  height: 85%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.collage-main img { width: 100%; height: 100%; object-fit: cover; }
.collage-float {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  border: 4px solid rgba(255,255,255,0.2);
}
.collage-float img { width: 100%; height: 100%; object-fit: cover; display: block; }
.collage-float-label {
  position: absolute;
  bottom: 12px; left: 12px;
  background: rgba(61,20,40,0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.collage-float-1 {
  width: 52%;
  bottom: 0; left: 0;
  height: 45%;
  animation: float1 6s ease-in-out infinite;
}
.collage-float-2 {
  width: 48%;
  top: 10%; right: -10%;
  height: 38%;
  animation: float2 7s ease-in-out infinite;
}
@keyframes float1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* ── SERVICES ── */
.services { background: #fffaf5; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(123,45,94,0.06);
  box-shadow: 0 4px 20px rgba(123,45,94,0.04);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(123,45,94,0.12);
  border-color: rgba(123,45,94,0.12);
}
.service-icon {
  width: 64px; height: 64px;
  background: #faf0f5;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D5E;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.service-card:hover .service-icon { background: #7B2D5E; color: #F5C518; }
.service-card h3 {
  font-size: 1.25rem;
  color: #3d1428;
  margin-bottom: 10px;
}
.service-card p { font-size: 0.95rem; color: #7B2D5E; opacity: 0.75; line-height: 1.65; }

/* ── ABOUT ── */
.about { background: #fff; }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-images { position: relative; height: 600px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 70%;
  height: 75%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(123,45,94,0.15);
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 55%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(123,45,94,0.12);
  border: 6px solid #fff;
}
.about-img-accent img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  top: 50%; right: 10%;
  transform: translateY(-50%);
  background: #F5C518;
  color: #3d1428;
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 12px 32px rgba(245,197,24,0.3);
  z-index: 2;
}
.about-text {
  font-size: 1.05rem;
  color: #7B2D5E;
  opacity: 0.8;
  line-height: 1.75;
  margin-bottom: 20px;
}
.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(123,45,94,0.1);
}
.about-stat { text-align: center; }
.stat-number {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #7B2D5E;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.85rem; color: #7B2D5E; opacity: 0.6; }

/* ── GALLERY ── */
.gallery { background: #faf0f5; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 20px;
}
.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.gallery-item-2 { grid-column: 5 / 9; grid-row: 1 / 2; }
.gallery-item-3 { grid-column: 9 / 13; grid-row: 1 / 2; }
.gallery-item-4 { grid-column: 5 / 9; grid-row: 2 / 3; }
.gallery-item-5 { grid-column: 9 / 13; grid-row: 2 / 3; }

/* ── REVIEWS ── */
.reviews { background: #fff; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fffaf5;
  border-radius: 24px;
  padding: 36px 28px;
  border: 1px solid rgba(123,45,94,0.06);
  transition: all 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(123,45,94,0.08);
}
.review-quote { margin-bottom: 16px; }
.review-text {
  font-size: 1rem;
  color: #3d1428;
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  font-size: 0.85rem;
  color: #7B2D5E;
  font-weight: 500;
  opacity: 0.7;
}

/* ── CTA ── */
.cta {
  background: #7B2D5E;
  padding: 100px 0;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.cta-tag { color: #F5C518; border-color: rgba(245,197,24,0.3); background: rgba(245,197,24,0.1); }
.cta-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #fff;
  margin-bottom: 16px;
}
.cta-title em { color: #F5C518; }
.cta-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 32px;
  line-height: 1.7;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.cta-visual { position: relative; }
.cta-img {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.cta-img img { width: 100%; height: 100%; object-fit: cover; }

/* ── CONTACT ── */
.contact { background: #fffaf5; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 48px; height: 48px;
  background: #faf0f5;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7B2D5E;
  flex-shrink: 0;
}
.contact-detail strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: #3d1428;
  margin-bottom: 4px;
}
.contact-detail p, .contact-detail a {
  font-size: 0.95rem;
  color: #7B2D5E;
  opacity: 0.8;
  line-height: 1.6;
}
.contact-detail a:hover { color: #7B2D5E; text-decoration: underline; }
.contact-map { margin-top: 8px; border-radius: 16px; overflow: hidden; }

/* Contact form */
.contact-form-wrap { max-width: 520px; }
.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 8px 40px rgba(123,45,94,0.08);
  border: 1px solid rgba(123,45,94,0.06);
}
.contact-form-card h3 {
  font-size: 1.6rem;
  color: #3d1428;
  margin-bottom: 8px;
}
.form-hint {
  font-size: 0.9rem;
  color: #7B2D5E;
  opacity: 0.65;
  margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: #3d1428;
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(123,45,94,0.15);
  border-radius: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: #3d1428;
  background: #fffaf5;
  transition: all 0.2s ease;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #7B2D5E;
  box-shadow: 0 0 0 4px rgba(123,45,94,0.08);
  background: #fff;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #7B2D5E; opacity: 0.35; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B2D5E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.form-success-icon { color: #7B2D5E; margin-bottom: 16px; }
.form-success h4 {
  font-size: 1.4rem;
  color: #3d1428;
  margin-bottom: 8px;
}
.form-success p { font-size: 0.95rem; color: #7B2D5E; opacity: 0.75; line-height: 1.65; }
.form-success a { color: #7B2D5E; font-weight: 600; }

/* ── FOOTER ── */
.footer { background: #2a0d1c; color: rgba(255,255,255,0.7); padding: 80px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo svg { color: #F5C518; }
.footer-tagline { font-size: 0.95rem; line-height: 1.7; max-width: 300px; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer-col h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  color: #F5C518;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #F5C518; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px 0;
  font-size: 0.85rem;
}
.footer-bottom a { color: #F5C518; transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.7; }

/* ── REVEAL ANIMATIONS (progressive enhancement) ── */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; gap: 48px; }
  .hero-collage { height: 480px; max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 450px; max-width: 500px; }
  .gallery-grid { grid-template-rows: repeat(2, 200px); }
  .gallery-item-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
  .gallery-item-2 { grid-column: 6 / 10; grid-row: 1 / 2; }
  .gallery-item-3 { grid-column: 10 / 13; grid-row: 1 / 2; }
  .gallery-item-4 { grid-column: 6 / 10; grid-row: 2 / 3; }
  .gallery-item-5 { grid-column: 10 / 13; grid-row: 2 / 3; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { max-width: 400px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-form-wrap { max-width: 100%; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { padding: 100px 0 60px; }
  .hero-layout { gap: 40px; }
  .hero-collage { height: 380px; }
  .collage-float-1 { width: 55%; height: 42%; }
  .collage-float-2 { width: 50%; height: 36%; right: -5%; }
  .services-grid { grid-template-columns: 1fr; }
  .about-images { height: 360px; }
  .about-badge { top: auto; bottom: 20px; right: 10px; transform: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 180px);
  }
  .gallery-item-1 { grid-column: 1 / 3; grid-row: 1 / 2; }
  .gallery-item-2 { grid-column: 1 / 2; grid-row: 2 / 3; }
  .gallery-item-3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .gallery-item-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .gallery-item-5 { grid-column: 2 / 3; grid-row: 3 / 4; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta { padding: 72px 0; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { justify-content: center; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; width: 100%; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .about-stats { flex-direction: column; gap: 20px; }
  .contact-form-card { padding: 28px 20px; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
}
