:root {
  --dark: #0a1a1f;
  --teal: #0e2830;
  --accent: #e8501a;
  --accent2: #c94316;
  --cream: #f0ece4;
  --hh: 68px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

#hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--hh);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: transparent;
  transition: background .3s, box-shadow .3s;
}

#hdr.solid {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 44px;
  width: auto;
}

.hdr-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hdr-nav a {
  position: relative;
  padding-bottom: 4px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.hdr-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.5px;
  background: rgba(255,255,255,.8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.hdr-nav a:hover::after,
.hdr-nav a.active::after {
  transform: scaleX(1);
}

.hdr-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--accent);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 4px;
  background: transparent;
  transition: background .2s;
}

.btn-call:hover {
  background: var(--accent);
}

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  z-index: 1300;
}

#lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}

.lang-caret {
  font-size: 13px;
  line-height: 1;
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 72px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(10,26,31,.95);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

.lang-menu.open {
  display: block;
}

.lang-menu button {
  width: 100%;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.8);
  text-align: left;
  padding: 10px 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  cursor: pointer;
}

.lang-menu button:hover {
  background: rgba(255,255,255,.05);
  color: #fff;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  border-radius: 2px;
}

.mob-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px 24px;
}

.mob-nav.open {
  display: flex;
}

.mob-nav a {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.mob-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 1401;
  border: none;
  background: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.mob-cta {
  margin-top: 6px;
  text-decoration: none;
}

@media (max-width: 1024px) {
  #hdr {
    padding: 0 24px;
  }

  .hdr-nav,
  .btn-call {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo img {
    height: 42px;
  }

  .hdr-right {
    gap: 12px;
  }

  #lang-toggle {
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  #hdr {
    height: 64px;
    padding: 0 18px;
  }

  .logo img {
    height: 38px;
    max-width: 220px;
  }

  .hdr-right {
    gap: 10px;
  }

  #lang-toggle {
    font-size: 10.5px;
    gap: 6px;
  }

  .hamburger {
    width: 38px;
    height: 38px;
  }

  .mob-nav a {
    font-size: 20px;
  }
}

#hero {
  position: relative; width: 100%; height: 100vh; min-height: 600px; display: flex; align-items: flex-end; overflow: hidden; background: #061318;
}
.hero-photo { position: absolute; inset: 0; overflow: hidden; }
.hero-photo::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 120% 80% at 75% 40%, #0d3d35 0%, #061318 60%), radial-gradient(ellipse 60% 60% at 20% 80%, #082820 0%, transparent 70%);
}
.hero-photo::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 55% at 82% 18%, rgba(200,90,30,.55) 0%, rgba(180,70,20,.2) 35%, transparent 65%), radial-gradient(ellipse 30% 40% at 65% 55%, rgba(160,60,15,.22) 0%, transparent 55%), radial-gradient(ellipse 40% 30% at 95% 60%, rgba(120,45,10,.18) 0%, transparent 50%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.hero-shapes svg { position: absolute; width: 100%; height: 100%; }
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 200px 200px; opacity: .4; mix-blend-mode: overlay;
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(6,19,24,.95) 0%, rgba(6,19,24,.75) 38%, rgba(6,19,24,.25) 65%, rgba(6,19,24,.05) 100%); }
.hero-content { position: relative; z-index: 2; padding: 0 64px 90px; max-width: 780px; }
.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px; /* tighter so line spacing matches others */
}
.hero-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin-top: 10px;
  margin-bottom: 20px; /* unified spacing */
}
h1 { font-size: clamp(40px, 5.5vw, 70px); font-weight: 900; line-height: .98; text-transform: uppercase; letter-spacing: -.015em; color: #fff; margin-bottom: 20px; }
h1 .dot { color: var(--accent); }
.hero-sub { font-size: 14px; font-weight: 300; line-height: 1.82; color: rgba(255,255,255,.74); max-width: 520px; margin-bottom: 36px; }
.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  height: 48px;          /* ← MATCHES btn-phone */
  padding: 0 28px;       /* ← remove vertical padding */

  background: var(--accent);
  color: #fff;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;

  border-radius: 5px;
  border: none;
  cursor: pointer;

  transition: background .2s;
}
.btn-orange:hover { background: var(--accent2); }

#svc-section { background: #eeebe5; padding: 80px 48px; text-align: center;}
.sec-eyebrow, .about-eyebrow, .why-eyebrow, .cnt-eyebrow, .testi-section-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--accent);
}
.sec-eyebrow, .why-eyebrow { margin-bottom: 6px; }
.sec-eyebrow, .testi-section-eyebrow { margin-bottom: 12px; }
.why-eyebrow { margin-bottom: 8px; }
.about-eyebrow { margin-bottom: 8px; }
.sec-h2, .about-h2 {
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; line-height: 1.3; letter-spacing: -.015em; color: var(--dark);
}
.sec-h2 { text-align: center; margin-bottom: 52px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.svc-card { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 16px; padding: 36px 28px 28px; display: flex; flex-direction: column; transition: transform .3s ease-out, border-color .3s ease; }
.svc-card:hover { transform: translateY(-8px); border-color: rgba(232,80,26,.3); }
.svc-icon-wrap { width: 52px; height: 52px; margin-bottom: 28px; }
.svc-icon-wrap svg, .why-icon svg { width: 100%; height: 100%; stroke: var(--accent); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.svc-title { font-size: 14px; font-weight: 700; line-height: 1.35; letter-spacing: -.01em; color: var(--dark); margin-bottom: 10px; }
.svc-desc { font-size: 13.5px; font-weight: 300; line-height: 1.82; color: #5f5f5f; flex: 1; margin-bottom: 22px; }
.svc-link { font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; padding-top: 18px; border-top: 1px solid #eee; }

#statement { background: var(--teal); padding: 64px; }
.statement-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; gap: 32px; align-items: stretch; }
.stmt-left { display: flex; align-items: stretch; }
.stmt-bar { width: 3px; background: var(--accent); border-radius: 2px; flex-shrink: 0; margin-right: 28px; }
.stmt-divider { width: 1px; background: rgba(255,255,255,.2); }
.stmt-text { max-width: 720px; font-size: clamp(15px,1.6vw,18px); font-weight: 300; line-height: 1.85; color: rgba(255,255,255,.9); }
.stmt-text strong { font-weight: 700; color: #fff; }
.stmt-cta-wrap { display: flex; align-items: center; justify-content: flex-start; }

#about { background: var(--cream); display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
.about-text-col { padding: 80px 64px; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.about-eyebrow { margin-bottom: 6px; }
.about-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin: 0 0 20px;
  align-self: flex-start;
}
.about-h2 { margin-bottom: 36px; }
.btn-dark {
  display: inline-flex; align-items: center; gap: 8px; background: var(--dark); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; padding: 14px 26px; border-radius: 5px; width: fit-content; transition: background .2s;
}
.btn-dark:hover { background: #1a3545; }
.about-photo-col { position: relative; overflow: hidden; background: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=900&q=80') center/cover no-repeat; }
.about-photo-col::after {
  content: ''; position: absolute; top: 0; right: 0; width: 0; height: 0; border-style: solid; border-width: 0 160px 160px 0; border-color: transparent var(--accent) transparent transparent;
}
.about-photo-col::before { content: ''; position: absolute; inset: 0; background: rgba(8,22,28,.25); }

#why { background: var(--teal); padding: 40px 64px 56px; text-align: center;}
.why-eyebrow {
  margin-bottom: 6px;
  text-align: center;
}
.why-line {
  width: 32px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 20px;
}
.why-4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  text-align: left;
}
.why-item { padding: 12px 44px 12px 0; border-right: 1px solid rgba(255,255,255,.1); }
.why-item:not(:first-child) { padding-left: 44px; }
.why-item:last-child { border-right: none; }
.why-item-top { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.why-icon { width: 22px; height: 22px; flex-shrink: 0; }
.why-title { font-size: 16px; font-weight: 600; line-height: 1.25; color: #fff; }
.why-desc { max-width: 320px; font-size: 15px; font-weight: 300; line-height: 1.9; color: rgba(255,255,255,.58); }

#testimonials { background: var(--teal); padding: 0 64px 72px; }
.testi-card-wrap { background: #0d2a32; border: 1px solid rgba(255,255,255,.08); border-radius: 20px; padding: 52px 52px 44px; }
.testi-section-h2 { font-size: clamp(20px, 2.5vw, 30px); font-weight: 800; color: #fff; margin-bottom: 40px; line-height: 1.25; max-width: 600px; }
.testi-grid-wrap {
  overflow: hidden;
  width: 100%;
}

.testi-grid {
  display: flex;
  gap: 24px;
  transition: transform .45s ease;
  will-change: transform;
}

.testi-card {
  background: #fff;
  padding: 36px 32px;
  border-radius: 6px;
  border: 1px solid #e8e4dc;
  display: flex;
  flex-direction: column;
  flex: 0 0 calc((100% - 48px) / 3); /* desktop = 3 */
  min-width: 0;
}

@media (max-width: 1024px) {
  .testi-card {
    flex: 0 0 calc((100% - 24px) / 2); /* tablet = 2 */
  }
}

@media (max-width: 768px) {
  .testi-card {
    flex: 0 0 100%; /* mobile = 1 */
  }
}
.testi-card { background: #fff; padding: 36px 32px; border-radius: 6px; border: 1px solid #e8e4dc; display: flex; flex-direction: column; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 18px; color: var(--accent); font-size: 14px; }
.testi-quote { font-size: 28px; line-height: 1; color: var(--accent); font-weight: 900; margin-bottom: 10px; }
.testi-text { font-size: 13px; font-weight: 300; line-height: 1.8; color: #555; flex: 1; margin-bottom: 28px; font-style: italic; }
.testi-divider { width: 32px; height: 2px; background: var(--accent); margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: #fff; flex-shrink: 0; }
.testi-name { font-size: 12.5px; font-weight: 700; color: var(--dark); }
.testi-role { font-size: 10px; font-weight: 400; color: #999; letter-spacing: .05em; margin-top: 2px; }
.testi-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 40px; }
.testi-arrow { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.2); background: transparent; color: rgba(255,255,255,.6); cursor: pointer; }
.testi-dots { display: flex; gap: 8px; }
.testi-dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; border: none; }
.testi-dot.active { background: var(--accent); transform: scale(1.3); }

#contact {
  background: #eeebe5;
  padding: 72px 64px;
}

.contact-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 24px;
  padding: 64px 56px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 56px;
  align-items: stretch;
  box-shadow: 0 12px 40px rgba(10,26,31,.04);
}

.contact-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-left h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.018em;
  color: var(--dark);
  margin-bottom: 20px;
  max-width: 560px;
}

.contact-left p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.85;
  color: #666;
  margin-bottom: 34px;
  max-width: 520px;
}

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

.btn-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 48px;              /* ← force same height */
  padding: 0 22px;           /* ← remove vertical padding */

  border-radius: 6px;
  border: 1px solid rgba(10,26,31,.14);
  background: transparent;
  color: var(--dark);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;

  transition: border-color .2s, background .2s, color .2s;
}

.btn-phone:hover {
  border-color: var(--dark);
  background: rgba(10,26,31,.04);
}

.contact-info-card {
  background: linear-gradient(180deg, rgba(10,26,31,.02) 0%, rgba(10,26,31,.04) 100%);
  border: 1px solid rgba(10,26,31,.06);
  border-radius: 20px;
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-row {
  padding: 18px 0;
  border-bottom: 1px solid rgba(10,26,31,.08);
}

.contact-info-row:first-child {
  padding-top: 0;
}

.contact-info-row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.contact-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.contact-value {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(35,53,59,.85);
  text-decoration: none;
}

.contact-value:hover {
  color: var(--dark);
}

@media (max-width: 1024px) {
  .contact-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 36px;
  }

  .contact-info-card {
    padding: 26px 24px;
  }
}

@media (max-width: 768px) {
  #contact {
    padding: 56px 24px;
  }

  .contact-card {
    padding: 34px 24px;
    border-radius: 20px;
  }

  .contact-left h2 {
    margin-bottom: 16px;
  }

  .contact-left p {
    margin-bottom: 28px;
  }

  .contact-value {
    font-size: 16px;
  }
}

#footer {
  background: var(--dark);
  padding: 72px 48px 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 22px;
  align-items: start;
}

.footer-logo {
  max-width: 210px;
  height: auto;
}

.ft-desc {
  margin-top: 18px;
  max-width: 280px;
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,.56);
}

.ft-col-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.ft-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-links li,
.ft-links a {
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.58);
}

.ft-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: rgba(255,255,255,.34);
}

.footer-bar {
  width: 36px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.page-hero { padding: 150px 64px 60px; background: var(--dark); color: #fff; }
.page-hero-inner { max-width: 900px; }
.page-kicker { font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(36px, 4vw, 56px); }
.page-hero p { max-width: 700px; font-size: 14px; line-height: 1.8; color: rgba(255,255,255,.75); }
.page-content { padding: 72px 64px; background: #eeebe5; }
.page-card { max-width: 900px; background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 20px; padding: 48px; }
.page-card p { font-size: 14px; line-height: 1.85; color: #555; }
.svc-page-section + .svc-page-section { margin-top: 48px; }
.svc-page-header { margin-bottom: 24px; }
.svc-page-kicker { font-size: 10px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.svc-page-header h2 { font-size: 30px; margin-bottom: 12px; }
.svc-page-lead { font-size: 14px; line-height: 1.8; color: #666; max-width: 760px; }
.svc-page-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.svc-page-card { background: #fff; border: 1px solid rgba(0,0,0,.07); border-radius: 16px; padding: 28px; }
.svc-page-card h3 { font-size: 18px; margin-bottom: 8px; }
.svc-page-subtitle { font-size: 12px; color: var(--accent); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.svc-page-card p { font-size: 13.5px; line-height: 1.8; color: #5f5f5f; }

@media (max-width: 1024px) {
  .cards-4, .testi-grid, .svc-page-cards { grid-template-columns: repeat(2,1fr); }

  .why-4 { 
    grid-template-columns: repeat(2,1fr); 
    gap: 30px; 
  }

  .why-item { 
    border-right: none; 
    padding: 0; 
  }

  .why-item:not(:first-child) {
    padding-left: 0;
  }

  .why-item:nth-child(even) {
    padding-left: 44px;
  }

  .why-item-top {
    align-items: flex-start;
  }

  .why-icon {
    margin-top: 2px;
  }

  #about { grid-template-columns: 1fr; }
  .about-photo-col { min-height: 300px; order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .statement-inner { grid-template-columns: 1fr; }
  .stmt-divider { display: none; }
  
  .footer-brand,
.footer-contact {
  align-self: start;
}
}

@media (max-width: 768px) {
  #hdr { padding: 0 20px; }
  .hdr-nav, .btn-call { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 28px 72px; }
  #svc-section, #testimonials, #contact, #footer, #why, .about-text-col, .page-content, .page-hero, #statement { padding-left: 24px; padding-right: 24px; }
  .contact-card { grid-template-columns: 1fr; gap: 40px; padding: 40px 28px; }
  .cards-4, .testi-grid, .svc-page-cards { grid-template-columns: 1fr; }

  #footer {
    padding: 56px 24px 24px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
    padding-right: 0;
  }

  .footer-contact {
    grid-column: 1 / -1;
  }

  .ft-desc {
    max-width: 320px;
  }
}