/* ============================================================
   Luminary Creative Studio v3
   Squarespace-style: organic, editorial, real photography
   ============================================================ */

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

:root {
  --cream:    #faf8f4;
  --warm:     #f2ede4;
  --sand:     #e8dfd0;
  --dark:     #1a1814;
  --dark-2:   #2c2820;
  --brown:    #6b5840;
  --tan:      #a08060;
  --gold:     #c9a050;
  --text:     #2c2820;
  --muted:    #8a7a6a;
  --light:    #b0a090;
  --border:   #ddd5c8;
  --white:    #ffffff;

  --serif:  'Cormorant Garamond', Georgia, serif;
  --script: 'Dancing Script', cursive;
  --sans:   'Inter', system-ui, sans-serif;
  --nav-h:  72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-script {
  font-family: var(--script);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--brown); }

.section-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 60px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-dark {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--white);
  background: var(--dark);
  padding: 15px 32px;
  border: 2px solid var(--dark);
  transition: background .25s, color .25s, gap .25s;
}
.btn-dark:hover { background: transparent; color: var(--dark); gap: 14px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s;
}
.nav.scrolled {
  background: rgba(250,248,244,.97);
  box-shadow: 0 1px 0 var(--border);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 40px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem; font-weight: 600;
  color: var(--white);
  letter-spacing: .04em;
  transition: color .3s;
}
.nav.scrolled .logo { color: var(--dark); }

.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-family: var(--sans);
  font-size: .78rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }
.nav.scrolled .nav-links a { color: var(--muted); }
.nav.scrolled .nav-links a:hover { color: var(--dark); }

.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: .3s; }
.nav.scrolled .hamburger span { background: var(--dark); }

/* ============================================================
   HERO — Full-screen real photo
   ============================================================ */
.hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Real Unsplash photo — stunning autumn road through mountains */
.hero-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1476610182048-b716b8518aae?auto=format&fit=crop&w=1920&q=85');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-photo.loaded { transform: scale(1); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.18) 0%,
    rgba(0,0,0,.38) 50%,
    rgba(0,0,0,.55) 100%
  );
}

.hero-center {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--sans);
  font-size: .65rem; font-weight: 500;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.35);
  padding: 10px 24px;
  margin-bottom: 28px;
}
.badge-icon { color: var(--gold); font-size: .7rem; }

.hero-script {
  font-family: var(--script);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #d4b483;
  margin-bottom: 16px;
  display: block;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: .95;
  letter-spacing: .02em;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  margin-bottom: 44px;
}

.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.65);
  padding: 16px 36px;
  transition: background .25s, border-color .25s;
}
.hero-btn:hover { background: rgba(255,255,255,.15); border-color: var(--white); }

.hero-scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .65rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   INTRO STATEMENT
   ============================================================ */
.intro {
  background: var(--white);
  padding: 90px 0;
  border-bottom: 1px solid var(--border);
}

.intro-text {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.1rem);
  font-weight: 400;
  line-height: 1.55;
  color: var(--dark);
  text-align: center;
  max-width: 820px;
  margin: 0 auto 52px;
}
.intro-text em { font-style: italic; color: var(--brown); }

.intro-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: 44px;
}
.istat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 0 52px;
}
.istat strong {
  font-family: var(--serif);
  font-size: 2rem; font-weight: 600;
  color: var(--dark);
}
.istat span {
  font-size: .72rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}
.istat-div { width: 1px; height: 40px; background: var(--border); }

/* ============================================================
   PORTFOLIO GRID
   ============================================================ */
.portfolio { background: var(--cream); }

.port-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 0;
}

.port-card {
  background: var(--white);
  overflow: hidden;
  transition: box-shadow .35s;
}
.port-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.1); }
.port-card.large { grid-column: span 2; }

.port-photo {
  width: 100%; height: 480px;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.port-card.large .port-photo { height: 580px; }
.port-card:hover .port-photo { transform: scale(1.03); }

/* Real Unsplash images for portfolio */
.pp-1 { background-image: url('https://images.unsplash.com/photo-1616400619175-5beda3a17896?auto=format&fit=crop&w=1400&q=80'); }
.pp-2 { background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=800&q=80'); }
.pp-3 { background-image: url('https://images.unsplash.com/photo-1469334031218-e382a71b716b?auto=format&fit=crop&w=800&q=80'); }
.pp-4 { background-image: url('https://images.unsplash.com/photo-1497366811353-6870744d04b2?auto=format&fit=crop&w=800&q=80'); }
.pp-5 { background-image: url('https://images.unsplash.com/photo-1586023492125-27b2c045efd7?auto=format&fit=crop&w=1400&q=80'); }

.port-meta {
  padding: 32px 36px 36px;
  background: var(--white);
}
.port-tag {
  display: inline-block;
  font-size: .68rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.port-meta h3 {
  font-family: var(--serif);
  font-size: 1.5rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.port-meta p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: 18px; }
.port-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .78rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brown);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 3px;
  transition: border-color .2s, gap .2s;
}
.port-link:hover { border-color: var(--brown); gap: 12px; }

/* ============================================================
   PHOTO BAND (quote)
   ============================================================ */
.photo-band {
  position: relative;
  height: 500px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.photo-band-img {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1483000805330-4eaf0a0d82da?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
}
.photo-band-overlay {
  position: absolute; inset: 0;
  background: rgba(20,16,10,.58);
}
.photo-band-text {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 40px;
  max-width: 780px;
}
.band-script {
  font-family: var(--script);
  font-size: 1.6rem;
  color: #d4b483;
  display: block;
  margin-bottom: 16px;
}
.photo-band-text h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400; font-style: italic;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
}
.band-attr {
  font-size: .78rem; font-weight: 400;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--warm); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.svc-card {
  background: var(--white);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }

.svc-photo {
  width: 100%; height: 240px;
  background-size: cover; background-position: center;
  transition: transform .6s ease;
}
.svc-card:hover .svc-photo { transform: scale(1.04); }

/* Service images */
.sp-1 { background-image: url('https://images.unsplash.com/photo-1524758631624-e2822e304c36?auto=format&fit=crop&w=700&q=80'); }
.sp-2 { background-image: url('https://images.unsplash.com/photo-1499951360447-b19be8fe80f5?auto=format&fit=crop&w=700&q=80'); }
.sp-3 { background-image: url('https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?auto=format&fit=crop&w=700&q=80'); }
.sp-4 { background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=700&q=80'); }

.svc-body { padding: 28px 32px 32px; }
.svc-num {
  font-family: var(--serif);
  font-size: .9rem; font-weight: 400;
  color: var(--light);
  display: block; margin-bottom: 8px;
}
.svc-body h3 {
  font-family: var(--serif);
  font-size: 1.35rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.svc-body p { font-size: .9rem; color: var(--muted); line-height: 1.75; margin-bottom: 20px; }
.svc-foot { display: flex; align-items: center; justify-content: space-between; }
.svc-price { font-size: .78rem; font-weight: 600; color: var(--brown); letter-spacing: .04em; }
.svc-link {
  font-size: .75rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--tan);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s, gap .2s;
}
.svc-link:hover { color: var(--brown); gap: 10px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-photo { overflow: hidden; }
.about-img {
  width: 100%; height: 100%; min-height: 560px;
  background-image: url('https://images.unsplash.com/photo-1531746020798-e6953c6e8e04?auto=format&fit=crop&w=900&q=80');
  background-size: cover;
  background-position: center top;
  transition: transform .8s ease;
}
.about-photo:hover .about-img { transform: scale(1.03); }

.about-text {
  padding: 80px 70px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.about-text .section-title { margin-bottom: 24px; }
.about-text p { font-size: .95rem; color: var(--muted); line-height: 1.85; margin-bottom: 18px; }

.about-vals { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 12px; }
.aval {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--text); font-weight: 400;
}
.aval i { color: var(--gold); font-size: .75rem; }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 20px;
}
.ps {
  text-align: center;
  padding: 0 20px;
}
.ps-num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 2.5rem; font-weight: 300;
  color: var(--sand);
  margin-bottom: 16px;
}
.ps h3 {
  font-family: var(--serif);
  font-size: 1.2rem; font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}
.ps p { font-size: .87rem; color: var(--muted); line-height: 1.75; }
.ps-arrow {
  color: var(--sand);
  font-size: 1.2rem;
  padding-top: 28px;
  flex-shrink: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi { background: var(--warm); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testi-card {
  background: var(--white);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: transform .3s, box-shadow .3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.07); }

.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; color: var(--gold); font-size: .8rem; }

.testi-card p {
  font-family: var(--serif);
  font-size: 1.05rem; font-style: italic; font-weight: 400;
  color: var(--dark-2);
  line-height: 1.75;
  margin-bottom: 28px;
}

.testi-who { display: flex; align-items: center; gap: 14px; }
.testi-av {
  width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
}
.tav-1 { background: linear-gradient(135deg, #d4a870 0%, #a07840 100%); }
.tav-2 { background: linear-gradient(135deg, #7090a8 0%, #406080 100%); }
.tav-3 { background: linear-gradient(135deg, #a06878 0%, #805060 100%); }
.testi-who strong { display: block; font-size: .88rem; font-weight: 600; color: var(--dark); }
.testi-who span { font-size: .78rem; color: var(--muted); }

/* ============================================================
   CTA PHOTO BAND
   ============================================================ */
.cta-band {
  position: relative;
  height: 480px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-photo {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(15,12,8,.55);
}
.cta-text { position: relative; z-index: 2; padding: 0 24px; }
.cta-text h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 600; color: var(--white);
  line-height: 1.2; margin-bottom: 40px;
}
.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--dark);
  background: var(--white);
  padding: 18px 40px;
  transition: background .25s, color .25s;
}
.cta-btn:hover { background: var(--gold); color: var(--white); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-left p { font-size: .95rem; color: var(--muted); line-height: 1.8; margin: 16px 0 28px; }
.contact-deets { display: flex; flex-direction: column; gap: 14px; }
.contact-deets a {
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem; color: var(--muted);
  transition: color .2s;
}
.contact-deets a:hover { color: var(--brown); }
.contact-deets i { color: var(--gold); width: 16px; }

/* form */
.contact-form-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 48px;
}
.fg { margin-bottom: 22px; }
.fg label {
  display: block;
  font-size: .7rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}
.fg input, .fg select, .fg textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: .9rem; color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s;
  appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: var(--light); }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--tan); }
.fg textarea { resize: vertical; }

.btn-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: .8rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 17px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, gap .2s;
}
.btn-submit:hover { background: var(--brown); gap: 14px; }

.form-success { text-align: center; padding: 80px 20px; }
.form-success i { font-size: 2.5rem; color: var(--gold); display: block; margin-bottom: 20px; }
.form-success h3 { font-family: var(--serif); font-size: 1.5rem; color: var(--dark); margin-bottom: 10px; }
.form-success p { font-size: .9rem; color: var(--muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.8rem; font-weight: 600;
  color: var(--white) !important;
  display: block; margin-bottom: 16px;
}
.footer-brand p { font-size: .84rem; color: rgba(255,255,255,.4); line-height: 1.75; max-width: 260px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); font-size: .8rem;
  transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: .68rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.footer-col { display: flex; flex-direction: column; gap: 0; }
.footer-col h4 { margin-bottom: 20px; }
.footer-col a {
  font-size: .85rem; color: rgba(255,255,255,.45);
  padding: 5px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  text-align: center; padding: 24px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.2); letter-spacing: .06em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .port-card.large { grid-column: span 2; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-img { min-height: 400px; }
  .about-text { padding: 60px 40px; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .ps-arrow { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .nav-inner { padding: 0 20px; }
  .nav-links {
    display: none;
    position: fixed; inset: 0; top: var(--nav-h);
    background: var(--cream);
    flex-direction: column; align-items: center; justify-content: center; gap: 36px;
    padding: 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; color: var(--dark); }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4.5rem); }
  .port-grid { grid-template-columns: 1fr; }
  .port-card.large { grid-column: span 1; }
  .port-photo, .port-card.large .port-photo { height: 320px; }
  .svc-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .photo-band-img, .cta-photo { background-attachment: scroll; }
  .intro-stats { gap: 0; }
  .istat { padding: 16px 24px; }
  .contact-form-wrap { padding: 32px 20px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
}
