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

:root {
  --dark-1:   #1C1915;
  --dark-2:   #2A2520;
  --dark-3:   #131110;
  --accent:   #C47A3A;
  --accent-h: #A8622A;
  --cream:    #F5F1EC;
  --white:    #FFFFFF;
  --body-dk:  #3D3630;
  --body-lt:  #C4B8A8;
  --hdg-lt:   #1C1915;
  --star:     #D4A843;
  --border:   #DDD5CA;
  --max-w:    1160px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--body-dk);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  line-height: 1.12;
  color: var(--hdg-lt);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-label::before { content: '◆'; font-size: 7px; }

.accent { color: var(--accent); }
.acc-ul { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent); }

/* ── Layout ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 44px;
}
section { padding: 112px 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,122,58,0.35);
}
.btn-ghost-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.08); border-color: #fff; }
.btn-ghost-accent {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost-accent:hover { background: rgba(196,122,58,0.07); }

/* ── Stars ── */
.stars { display: flex; gap: 3px; }
.stars span { color: var(--star); font-size: 15px; }

/* ── Fade in ── */
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Link accent ── */
.link-acc {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s;
}
.link-acc:hover { gap: 8px; }

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s, padding 0.3s, box-shadow 0.3s;
}
#nav.scrolled {
  background: rgba(28,25,21,0.97);
  backdrop-filter: blur(8px);
  padding: 14px 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}
.nav-logo .nm { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 20px; color: #fff; letter-spacing: 0.3px; }
.nav-logo .sub { font-size: 9.5px; font-weight: 600; letter-spacing: 2.8px; text-transform: uppercase; color: var(--accent); }

.nav-links { display: flex; list-style: none; gap: 34px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

.nav-cta { font-size: 13px !important; padding: 10px 20px !important; border-radius: 6px !important; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  position: relative;
  height: 95vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-bg-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(28,25,21,0.48) 45%, rgba(28,25,21,0.02) 100%),
    linear-gradient(to top, #1C1915 0%, rgba(28,25,21,0.7) 12%, transparent 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 52px;
  max-width: 680px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-label::before { content: '◆'; font-size: 7px; }

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 62px);
  font-weight: 700;
  color: #fff;
  line-height: 1.07;
  margin-bottom: 22px;
}
.hero-h1 em { font-style: italic; color: var(--accent); }

.hero-sub {
  font-size: 16px;
  color: var(--body-lt);
  max-width: 500px;
  margin-bottom: 36px;
  line-height: 1.78;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.hero-rating {
  position: absolute;
  bottom: 44px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.hero-rating .score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.hero-rating .stars span { font-size: 15px; }
.hero-rating .via {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}

/* ══════════════════════════════════════
   SCROLL ANIMATION
══════════════════════════════════════ */
.scroll-text-panel {
  transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
#services { background: var(--cream); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 56px;
}
.services-intro h2 { font-size: clamp(34px, 4vw, 46px); }
.services-intro p { font-size: 15px; line-height: 1.78; padding-top: 6px; }

.services-top { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.services-bot { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.svc-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 18px 44px rgba(50,30,10,0.13); }
.svc-card:first-child { border-color: var(--accent); }

.svc-img { width: 100%; object-fit: cover; display: block; }
.svc-img-lg { height: 220px; }
.svc-img-sm { height: 150px; }

.svc-icon-wrap {
  height: 110px;
  background: var(--dark-1);
  display: flex; align-items: center; justify-content: center;
}
.svc-icon-wrap svg { width: 44px; height: 44px; color: var(--accent); stroke-width: 1.5; }

.svc-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.svc-body { padding: 20px 22px 24px; }
.svc-body h3 { font-size: 19px; margin-bottom: 8px; }
.svc-body p { font-size: 13.5px; color: #777; line-height: 1.65; margin-bottom: 14px; }

.services-note {
  text-align: center;
  margin-top: 44px;
  font-size: 15px;
}
.services-note strong { color: var(--accent); }

/* ══════════════════════════════════════
   ABOUT / MEET TY  (dark)
══════════════════════════════════════ */
#about { background: var(--dark-1); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 84px;
  align-items: center;
}

#about .section-label { color: var(--accent); }
#about h2 { font-size: clamp(32px, 4vw, 46px); color: #fff; margin-bottom: 20px; }
#about p { color: var(--body-lt); font-size: 15.5px; line-height: 1.8; margin-bottom: 18px; }

.pullquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--accent);
  line-height: 1.55;
  border-left: 3px solid var(--accent);
  padding: 10px 0 10px 22px;
  margin: 26px 0 32px;
}

.about-stats { display: flex; gap: 44px; }
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat .stars { justify-content: center; margin-top: 4px; }
.stat-lbl { font-size: 11.5px; color: var(--body-lt); letter-spacing: 0.5px; margin-top: 5px; }

.about-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}

.about-collage {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.collage-main {
  flex: 1.55;
  min-width: 0;
  border-radius: 14px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  display: block;
}

.collage-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.collage-sm {
  flex: 1;
  min-height: 0;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  width: 100%;
  display: block;
}

/* ══════════════════════════════════════
   BENEFITS  (cream)
══════════════════════════════════════ */
#benefits { background: var(--cream); }

.benefits-hd {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}
.benefits-hd h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 14px; }
.benefits-hd p { font-size: 15px; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 44px; }

.ben-item { display: flex; flex-direction: column; gap: 11px; }

.ben-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.ben-icon svg { width: 22px; height: 22px; color: var(--accent); stroke-width: 1.6; }

.ben-item h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--hdg-lt);
}
.ben-item p { font-size: 13.5px; color: #777; line-height: 1.65; }

/* ══════════════════════════════════════
   GALLERY  (dark-2)
══════════════════════════════════════ */
#gallery { background: var(--dark-2); }

.gallery-hd { text-align: center; margin-bottom: 52px; }
.gallery-hd h2 { font-size: clamp(32px, 4vw, 46px); color: #fff; margin-bottom: 12px; }
.gallery-hd p { font-size: 15px; color: var(--body-lt); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 210px;
  gap: 10px;
}
.g-item { overflow: hidden; border-radius: 8px; position: relative; }
.g-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.g-item:hover img { transform: scale(1.06); }

.g-item:nth-child(1)  { grid-column: span 5; grid-row: span 2; }
.g-item:nth-child(2)  { grid-column: span 4; grid-row: span 1; }
.g-item:nth-child(3)  { grid-column: span 3; grid-row: span 1; }
.g-item:nth-child(4)  { grid-column: span 4; grid-row: span 1; }
.g-item:nth-child(5)  { grid-column: span 3; grid-row: span 1; }
.g-item:nth-child(6)  { grid-column: span 4; grid-row: span 2; }
.g-item:nth-child(7)  { grid-column: span 4; grid-row: span 1; }
.g-item:nth-child(8)  { grid-column: span 4; grid-row: span 1; }
.g-item:nth-child(9)  { grid-column: span 4; grid-row: span 1; }
.g-item:nth-child(10) { grid-column: span 4; grid-row: span 1; }

.g-item--inspiration { position: relative; }
.inspiration-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(28, 19, 9, 0.72);
  color: var(--amber);
  font-size: 10.5px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.gallery-footer { text-align: center; margin-top: 44px; }

/* ══════════════════════════════════════
   TESTIMONIALS  (cream)
══════════════════════════════════════ */
#testimonials { background: var(--cream); }

.test-hd {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 52px;
}
.test-hd h2 { font-size: clamp(32px, 4vw, 44px); margin-bottom: 12px; }
.test-hd p { font-size: 15px; }

.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.test-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px;
}
.test-card .stars { margin-bottom: 14px; }
.test-card .stars span { font-size: 15px; }
.test-card blockquote {
  font-size: 14.5px;
  color: var(--body-dk);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}
.test-card .author { font-weight: 600; font-size: 14px; color: var(--hdg-lt); }
.test-card .detail { font-size: 12.5px; color: #aaa; margin-top: 2px; }

.test-bottom {
  text-align: center;
  margin-top: 36px;
  font-size: 13.5px;
  color: #999;
}
.test-bottom a { color: var(--accent); font-weight: 600; text-decoration: none; }

/* ══════════════════════════════════════
   SERVICE AREAS  (white)
══════════════════════════════════════ */
#areas { background: var(--white); padding: 80px 0; }

.areas-in { text-align: center; }
.areas-in h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 12px; }
.areas-in > p { font-size: 15px; margin-bottom: 36px; }

.areas-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.area-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 14px;
  font-weight: 500;
}
.areas-note { font-size: 14px; color: #999; }
.areas-note strong { color: var(--accent); }

/* ══════════════════════════════════════
   FAQ  (cream)
══════════════════════════════════════ */
#faq { background: var(--cream); padding-top: 0; }

.faq-hd { margin-bottom: 44px; }
.faq-hd h2 { font-size: clamp(32px, 4vw, 44px); }

.faq-list { border-top: 1px solid var(--border); }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.faq-btn {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  text-align: left;
  gap: 20px;
}
.faq-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--hdg-lt);
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.2s;
  font-size: 16px;
  color: var(--accent);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; border-color: var(--accent); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner { padding: 0 0 22px; font-size: 14.5px; color: #666; line-height: 1.75; max-width: 740px; }

/* ══════════════════════════════════════
   CTA  (dark-1)
══════════════════════════════════════ */
#cta { background: var(--dark-1); }

.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  text-align: left;
}
.cta-left h2 { font-size: clamp(28px, 3.5vw, 42px); color: #fff; margin-bottom: 18px; line-height: 1.1; }
.cta-left p { font-size: 15px; color: var(--body-lt); line-height: 1.75; margin-bottom: 36px; }

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.cta-phone:hover { color: #fff; }
.cta-note { font-size: 12.5px; color: var(--body-lt); letter-spacing: 0.5px; }

.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body-lt);
}
.cta-trust-item::before {
  content: '✓';
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: rgba(196,122,58,0.12);
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* Form card */
.estimate-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 36px;
}
.estimate-form-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 12px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
}
.form-field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C47A3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form-field select option { background: #2A2520; color: #fff; }
.form-field textarea { resize: vertical; min-height: 100px; }
.form-submit-row { grid-column: 1 / -1; margin-top: 4px; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer { background: var(--dark-3); padding: 64px 0 30px; }

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .nm { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #fff; }
.footer-brand .sub { font-size: 9px; letter-spacing: 2.8px; text-transform: uppercase; color: var(--accent); }
.footer-brand p { font-size: 13px; color: var(--body-lt); margin-top: 14px; line-height: 1.7; }

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col li a, .footer-col li span {
  font-size: 13.5px;
  color: var(--body-lt);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col li a:hover { color: #fff; }

.footer-bottom {
  padding-top: 26px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 13.5px;
  color: rgba(196,184,168,0.38);
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-bot { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 22px; }
  section { padding: 72px 0; }
  #nav { padding: 16px 22px; }
  #nav.scrolled { padding: 12px 22px; }
  .nav-links { display: none; }
  .hero-content { padding: 0 22px; }
  .hero-rating { right: 22px; bottom: 28px; }
  .services-intro { grid-template-columns: 1fr; }
  .services-top { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-stats { gap: 28px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .g-item { grid-column: span 1 !important; grid-row: span 1 !important; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .cta-layout { grid-template-columns: 1fr; gap: 44px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-h1 { font-size: 36px; }
  .services-bot { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .about-stats { flex-wrap: wrap; gap: 20px; }
}
