/* LMC Home Improvement — production styles */

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

@keyframes lmcFadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes lmcFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes lmcMarquee { from { transform: translateX(0); } to { transform: translateX(-33.3333%); } }

* { box-sizing: border-box; }
body {
  margin: 0;
  background: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  font-family: 'Manrope', sans-serif;
  color: #22262B;
  overflow-x: hidden;
}
a { color: #0B1E36; text-decoration: none; }
a:hover { color: #C6A15B; }
::selection { background: #C6A15B; color: #0B1E36; }
button { font-family: inherit; }
img { max-width: 100%; }

.wrap { max-width: 1280px; margin: 0 auto; }

/* ---------- NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(11,30,54,0.08);
  box-shadow: 0 2px 24px rgba(11,30,54,0.04);
}
.site-header .bar {
  max-width: 1280px; margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo-link { display: flex; align-items: center; gap: 10px; }
.logo-link img { height: 46px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 600; color: #0B1E36; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-size: 15px; font-weight: 700; color: #0B1E36; display: flex; align-items: center; gap: 8px; }
.btn-header-cta {
  background: #0B1E36; color: #FFFFFF; padding: 12px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(11,30,54,0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(11,30,54,0.3); color: #FFFFFF; }
.hamburger-btn { display: none; background: none; border: none; padding: 8px; cursor: pointer; }
.mobile-menu { display: none; flex-direction: column; padding: 8px 24px 24px; gap: 4px; background: #FFFFFF; border-top: 1px solid rgba(11,30,54,0.08); }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 600; color: #0B1E36; border-bottom: 1px solid rgba(11,30,54,0.06); }
.mobile-menu .call-link { padding: 14px 0 6px; font-weight: 700; color: #0B1E36; border-bottom: none; }
.mobile-menu .btn-mobile-cta { margin-top: 8px; background: #0B1E36; color: #FFFFFF; text-align: center; padding: 14px; border-radius: 999px; font-weight: 700; border-bottom: none; }

@media (max-width: 899px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger-btn { display: block; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  background: linear-gradient(160deg, #0B1E36 0%, #142E52 55%, #0B1E36 100%);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(115deg, rgba(198,161,90,0.05) 0px, rgba(198,161,90,0.05) 2px, transparent 2px, transparent 42px);
  opacity: 0.6;
}
.hero::after {
  content: ''; position: absolute; right: -10%; top: 10%; width: 60%; height: 90%;
  background: radial-gradient(circle, rgba(198,161,90,0.18) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 100px 24px 80px; position: relative;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; width: 100%;
}
.hero-copy { animation: lmcFadeUp 0.9s ease both; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; background: rgba(198,161,90,0.12);
  border: 1px solid rgba(198,161,90,0.35); color: #E4C58A; padding: 8px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-copy h1 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 48px; line-height: 1.08; font-weight: 800;
  color: #FFFFFF; margin: 22px 0 20px; letter-spacing: -0.01em;
}
.hero-copy p { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.72); max-width: 540px; margin: 0 0 34px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; }
.btn-hero-primary {
  background: linear-gradient(135deg, #D6B57C, #B8925A); color: #0B1E36; padding: 17px 32px;
  border-radius: 999px; font-weight: 800; font-size: 15px; box-shadow: 0 12px 30px rgba(198,161,90,0.3);
  transition: transform 0.25s ease;
}
.btn-hero-primary:hover { transform: translateY(-3px); }
.btn-hero-secondary {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.28); color: #FFFFFF;
  padding: 17px 32px; border-radius: 999px; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 10px; transition: background 0.25s ease;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.16); color: #FFFFFF; }
.hero-image-wrap { position: relative; animation: lmcFadeIn 1.2s ease 0.2s both; }
.hero-image-frame {
  border-radius: 24px; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12); aspect-ratio: 4/5; position: relative;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge {
  position: absolute; bottom: -26px; left: -26px; background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px); border-radius: 18px; padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(11,30,54,0.25); display: flex; align-items: center; gap: 14px;
}
.hero-badge .icon {
  width: 46px; height: 46px; border-radius: 50%; background: #0B1E36; display: flex;
  align-items: center; justify-content: center; color: #D6B57C; font-weight: 800; font-size: 15px;
}
.hero-badge .title { font-weight: 800; color: #0B1E36; font-size: 15px; }
.hero-badge .sub { font-size: 13px; color: #6B7280; }

@media (max-width: 899px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-copy h1 { font-size: 34px; }
  .hero-image-wrap { display: none; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar { background: #0E2340; padding: 22px 0; overflow: hidden; }
.trust-track { display: flex; width: max-content; animation: lmcMarquee 22s linear infinite; will-change: transform; }
.trust-item { display: flex; align-items: center; gap: 12px; padding: 0 40px; white-space: nowrap; }
.trust-item span { color: #FFFFFF; font-size: 14.5px; font-weight: 600; }

/* ---------- SECTIONS SHARED ---------- */
.section { max-width: 1280px; margin: 0 auto; padding: 110px 24px 90px; }
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.eyebrow { color: #B8925A; font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; }
.section-head h2 {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 38px; font-weight: 800; color: #0B1E36;
  margin: 0 0 16px; letter-spacing: -0.01em;
}
.section-head p { color: #5B6472; font-size: 17px; line-height: 1.7; margin: 0; }
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ---------- SERVICES ---------- */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 24px; }
.service-card {
  transition: opacity 0.8s ease, transform 0.8s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  background: #FFFFFF; border: 1px solid rgba(11,30,54,0.08); border-radius: 20px; padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(11,30,54,0.05); display: flex; flex-direction: column; gap: 18px; min-height: 220px;
}
.service-card:hover { box-shadow: 0 20px 45px rgba(11,30,54,0.14); border-color: rgba(198,161,90,0.4); transform: translateY(-6px); }
.service-card .icon-box {
  width: 54px; height: 54px; border-radius: 14px; background: linear-gradient(135deg, #0E2A4C, #163A63);
  display: flex; align-items: center; justify-content: center;
}
.service-card .icon-box .mark { width: 22px; height: 22px; border: 2px solid #D6B57C; border-radius: 5px; position: relative; }
.service-card .icon-box .mark::after { content: ''; position: absolute; left: 50%; top: -2px; bottom: -2px; width: 2px; background: #D6B57C; }
.service-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 19px; font-weight: 700; color: #0B1E36; margin: 0 0 8px; }
.service-card p { font-size: 14.5px; line-height: 1.6; color: #5B6472; margin: 0; }
.service-card .learn-more { margin-top: auto; display: flex; align-items: center; gap: 8px; color: #B8925A; font-weight: 700; font-size: 14px; }
.svc-span-2 { grid-column: span 2; }
.svc-span-3 { grid-column: span 3; }

@media (max-width: 899px) {
  .services-grid { grid-template-columns: 1fr; }
  .svc-span-2, .svc-span-3 { grid-column: 1 / -1; }
}

/* ---------- WHY US ---------- */
.why-us { background: #F7F6F2; padding: 100px 24px; }
.why-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.why-image { border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(11,30,54,0.14); aspect-ratio: 1/1; }
.why-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-grid h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; color: #0B1E36; margin: 0 0 34px; letter-spacing: -0.01em; }
.why-list { display: flex; flex-direction: column; gap: 22px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; transition: opacity 0.7s ease, transform 0.7s ease; }
.why-item .num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: #0B1E36; color: #D6B57C;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.why-item .title { font-weight: 700; color: #0B1E36; font-size: 16.5px; margin-bottom: 4px; }
.why-item .desc { color: #5B6472; font-size: 14.5px; line-height: 1.6; }

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

/* ---------- GALLERY ---------- */
.work-viewer {
  position: relative; border-radius: 22px; overflow: hidden; box-shadow: 0 24px 60px rgba(11,30,54,0.16);
  aspect-ratio: 16/9; background: #0E2340;
}
.work-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; will-change: opacity; }
.work-slide.active { opacity: 1; }
.work-slide img { width: 100%; height: 100%; object-fit: cover; display: block; cursor: pointer; }
.work-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 40px 32px 24px;
  background: linear-gradient(transparent, rgba(11,30,54,0.82)); pointer-events: none;
}
.work-tag {
  display: inline-block; background: rgba(214,181,124,0.9); color: #0B1E36; font-size: 11.5px; font-weight: 800;
  padding: 5px 14px; border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 10px;
}
.work-label { color: #FFFFFF; font-size: 19px; font-weight: 700; }
.work-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  border: none; background: rgba(11,30,54,0.55); backdrop-filter: blur(6px); color: #FFFFFF; cursor: pointer;
  display: flex; align-items: center; justify-content: center; z-index: 6; opacity: 0;
  transition: background 0.2s ease, opacity 0.25s ease;
}
.work-viewer:hover .work-arrow { opacity: 1; }
.work-arrow:hover { background: rgba(214,181,124,0.85); color: #0B1E36; }
.work-arrow.prev { left: 18px; }
.work-arrow.next { right: 18px; }
.work-counter {
  position: absolute; right: 18px; top: 18px; background: rgba(11,30,54,0.6); backdrop-filter: blur(6px);
  color: #FFFFFF; font-size: 12px; font-weight: 700; padding: 6px 12px; border-radius: 999px; z-index: 6;
}
.work-dots { position: absolute; left: 0; right: 0; bottom: 16px; display: flex; justify-content: center; gap: 8px; z-index: 5; }
.dot { height: 8px; border-radius: 999px; border: none; cursor: pointer; transition: width 0.3s ease, background 0.3s ease; padding: 0; width: 8px; background: rgba(255,255,255,0.35); }
.dot.active { width: 26px; background: #D6B57C; }
.thumb-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 14px; margin-top: 24px; }
.thumb {
  position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1/1; box-shadow: 0 6px 18px rgba(11,30,54,0.1);
  border: 2px solid transparent; cursor: pointer;
}
.thumb.active { border-color: #D6B57C; }
.thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 899px) { .thumb-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(6,16,30,0.92);
  align-items: center; justify-content: center; padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox-close, .lightbox-nav {
  position: absolute; border-radius: 50%; border: none; background: rgba(255,255,255,0.12); color: #FFFFFF;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}
.lightbox-close { top: 24px; right: 28px; width: 44px; height: 44px; font-size: 22px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-nav.prev { left: 24px; }
.lightbox-nav.next { right: 24px; }
.lightbox-content { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lightbox-content img { max-width: 92vw; max-height: 82vh; object-fit: contain; border-radius: 12px; display: block; }
.lightbox-label { color: #FFFFFF; font-size: 15px; font-weight: 600; opacity: 0.85; }

/* ---------- PROCESS ---------- */
.process { background: #0B1E36; padding: 110px 24px; position: relative; overflow: hidden; }
.process::before {
  content: ''; position: absolute; right: -8%; bottom: -20%; width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(198,161,90,0.14) 0%, transparent 70%);
}
.process .wrap { position: relative; }
.process .section-head h2 { color: #FFFFFF; }
.process .eyebrow { color: #D6B57C; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.process-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px;
  padding: 32px 26px; backdrop-filter: blur(8px);
}
.process-card .num { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 34px; font-weight: 800; color: rgba(214,181,124,0.4); margin-bottom: 14px; }
.process-card .title { font-weight: 700; color: #FFFFFF; font-size: 18px; margin-bottom: 8px; }
.process-card .desc { color: rgba(255,255,255,0.62); font-size: 14.5px; line-height: 1.6; }

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

/* ---------- TESTIMONIALS ---------- */
.reviews-viewer { position: relative; max-width: 720px; margin: 0 auto; min-height: 300px; }
.review-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateX(24px); pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.review-slide.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.review-card {
  background: #FFFFFF; border: 1px solid rgba(11,30,54,0.08); border-radius: 20px; padding: 40px 44px;
  box-shadow: 0 20px 50px rgba(11,30,54,0.1); display: flex; flex-direction: column; gap: 18px; align-items: center; text-align: center;
}
.review-stars { display: flex; gap: 4px; }
.review-card blockquote { font-size: 17px; line-height: 1.75; color: #3A414C; margin: 0; font-style: italic; }
.review-person { display: flex; align-items: center; gap: 12px; padding-top: 8px; border-top: 1px solid rgba(11,30,54,0.06); }
.review-person .initials {
  width: 42px; height: 42px; border-radius: 50%; background: #0B1E36; color: #D6B57C; display: flex;
  align-items: center; justify-content: center; font-weight: 800; font-size: 14px;
}
.review-person .name { font-weight: 700; color: #0B1E36; font-size: 15px; text-align: left; }
.review-person .loc { font-size: 13px; color: #8A8F98; text-align: left; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.review-dots .dot.active { background: #C6A15B; }
.review-dots .dot { background: rgba(11,30,54,0.15); }

@media (max-width: 899px) {
  .review-card { padding: 32px 24px; }
}

/* ---------- FAQ ---------- */
.faq { background: #F7F6F2; padding: 110px 24px; }
.faq .wrap { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: #FFFFFF; border: 1px solid rgba(11,30,54,0.08); border-radius: 16px; overflow: hidden; box-shadow: 0 6px 20px rgba(11,30,54,0.04); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none; padding: 22px 24px; display: flex;
  justify-content: space-between; align-items: center; cursor: pointer; font-family: 'Manrope', sans-serif;
  font-size: 16px; font-weight: 700; color: #0B1E36;
}
.faq-icon {
  flex-shrink: 0; margin-left: 16px; width: 26px; height: 26px; border-radius: 50%; background: #F7F6F2;
  display: flex; align-items: center; justify-content: center; transition: transform 0.25s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-icon .vert { display: block; }
.faq-item.open .faq-icon .vert { display: none; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { margin: 0; padding: 0 24px 22px; color: #5B6472; font-size: 14.5px; line-height: 1.7; }

/* ---------- ESTIMATE ---------- */
.estimate { background: linear-gradient(160deg, #0B1E36, #142E52); padding: 110px 24px; position: relative; overflow: hidden; }
.estimate::before {
  content: ''; position: absolute; left: -10%; top: -10%; width: 50%; height: 70%;
  background: radial-gradient(circle, rgba(198,161,90,0.14) 0%, transparent 70%);
}
.estimate .wrap { max-width: 1000px; position: relative; }
.estimate-head { text-align: center; margin-bottom: 48px; }
.estimate-head h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 40px; font-weight: 800; color: #FFFFFF; margin: 0 0 16px; letter-spacing: -0.01em; }
.estimate-head p { color: rgba(255,255,255,0.68); font-size: 17px; margin: 0; }
.thank-you {
  display: none; background: rgba(255,255,255,0.96); border-radius: 20px; padding: 60px 40px; text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3);
}
.thank-you.show { display: block; }
.thank-you .icon { width: 56px; height: 56px; border-radius: 50%; background: #0B1E36; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.thank-you h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 24px; font-weight: 800; color: #0B1E36; margin: 0 0 10px; }
.thank-you p { color: #5B6472; font-size: 15px; margin: 0; }
.estimate-form {
  background: rgba(255,255,255,0.96); backdrop-filter: blur(14px); border-radius: 22px; padding: 44px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.3); display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.estimate-form.hide { display: none; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 700; color: #0B1E36; }
.field input, .field select, .field textarea {
  padding: 14px 16px; border-radius: 12px; border: 1px solid rgba(11,30,54,0.15); font-family: 'Manrope', sans-serif;
  font-size: 15px; outline: none; background: #FFFFFF;
}
.field textarea { resize: vertical; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, #D6B57C, #B8925A); color: #0B1E36; padding: 18px; border: none;
  border-radius: 999px; font-weight: 800; font-size: 16px; cursor: pointer; box-shadow: 0 14px 34px rgba(198,161,90,0.32);
  transition: transform 0.25s ease;
}
.btn-submit:hover { transform: translateY(-2px); }
.form-note { text-align: center; color: #8A8F98; font-size: 12.5px; margin: 14px 0 0; }

@media (max-width: 899px) { .estimate-form { grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
.site-footer { background: #08172C; padding: 80px 24px 32px; }
.footer-grid {
  max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-grid img { height: 44px; width: auto; filter: brightness(0) invert(1); opacity: 0.95; margin-bottom: 18px; }
.footer-grid p { color: rgba(255,255,255,0.55); font-size: 14px; line-height: 1.7; max-width: 280px; margin: 0 0 20px; }
.social-row { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center; color: #D6B57C; font-size: 13px; font-weight: 700;
  transition: background 0.25s ease;
}
.social-icon:hover { background: rgba(214,181,124,0.18); color: #D6B57C; }
.footer-col-title { color: #FFFFFF; font-weight: 700; font-size: 15px; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-links span { color: rgba(255,255,255,0.55); font-size: 14px; }
.footer-links a.cta-link { color: #D6B57C; font-weight: 700; }
.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding-top: 26px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
}
.footer-bottom span { color: rgba(255,255,255,0.4); font-size: 13px; }

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