:root {
  --bg: #f6f2e8;
  --bg-soft: #fbfaf6;
  --surface: #ffffff;
  --surface-2: #f1ece0;
  --ink: #131b1d;
  --ink-soft: #445055;
  --line: #d8d1c3;
  --brand: #123b3b;
  --brand-2: #1d5757;
  --accent: #cc9a44;
  --accent-2: #f0d4a0;
  --success-soft: #e8f2ee;
  --shadow-sm: 0 8px 24px rgba(18, 26, 28, 0.08);
  --shadow-md: 0 24px 60px rgba(18, 26, 28, 0.14);
  --shadow-lg: 0 36px 90px rgba(18, 26, 28, 0.18);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --container: 1200px;
  --font-heading: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;
  --section-pad: clamp(3.25rem, 7vw, 6rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at 6% 0%, rgba(204, 154, 68, 0.18), transparent 45%),
    radial-gradient(circle at 100% 15%, rgba(18, 59, 59, 0.16), transparent 42%),
    linear-gradient(var(--bg-soft), var(--bg));
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
textarea {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3 {
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--brand);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
}

.section-pad {
  padding-block: var(--section-pad);
}

.section-muted {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(241, 236, 224, 0.8));
}

.section-accent {
  background:
    linear-gradient(180deg, rgba(18, 59, 59, 0.06), rgba(18, 59, 59, 0.02)),
    var(--bg-soft);
  border-top: 1px solid rgba(18, 59, 59, 0.08);
  border-bottom: 1px solid rgba(18, 59, 59, 0.08);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--brand);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
}

.section-head {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-head h2 {
  margin-bottom: 0.85rem;
}

.section-head p:last-child {
  color: var(--ink-soft);
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 4vw + 0.8rem, 4.25rem);
}

h2 {
  font-size: clamp(1.7rem, 2vw + 1rem, 2.95rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #e8b966);
  color: #1d1506;
  box-shadow: 0 10px 24px rgba(204, 154, 68, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 14px 30px rgba(204, 154, 68, 0.34);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(18, 59, 59, 0.2);
  color: var(--brand);
  backdrop-filter: blur(6px);
}

.btn-ghost:hover {
  border-color: rgba(18, 59, 59, 0.35);
  background: rgba(255, 255, 255, 0.95);
}

.btn-sm {
  padding: 0.8rem 1rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(18, 59, 59, 0.1);
  background: rgba(251, 250, 246, 0.78);
  backdrop-filter: saturate(140%) blur(10px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand img {
  width: 54px;
  height: auto;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.1;
}

.brand-tag {
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.15;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.site-nav > a:not(.btn) {
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav > a:not(.btn):hover {
  background: rgba(18, 59, 59, 0.06);
  color: var(--brand);
}

.nav-toggle {
  display: none;
  margin-left: auto;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid rgba(18, 59, 59, 0.18);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand);
  border-radius: 999px;
  padding: 0.55rem 0.85rem;
}

.nav-toggle-text {
  font-weight: 700;
  font-size: 0.9rem;
}

.nav-toggle-icon {
  width: 20px;
  height: 14px;
  display: inline-grid;
  align-content: center;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  padding-top: clamp(2rem, 3vw, 3.5rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.2rem, 3vw, 2.4rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-lead {
  margin-top: 1rem;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hero-points {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-points li {
  display: grid;
  grid-template-columns: 1.15rem 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(18, 59, 59, 0.08);
  box-shadow: var(--shadow-sm);
}

.hero-points svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--brand);
  margin-top: 0.1rem;
}

.hero-points span {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.68fr);
  gap: 0.9rem;
  align-items: end;
}

.media-card {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: var(--surface);
}

.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-card figcaption {
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.75rem;
  background: rgba(19, 27, 29, 0.72);
  color: #f5f3ee;
  border-radius: 999px;
  padding: 0.55rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero-main-image {
  grid-column: 1 / 2;
  min-height: 420px;
}

.hero-side-image {
  grid-column: 2 / 3;
  min-height: 280px;
}

.hero-notes {
  grid-column: 1 / 3;
  background: linear-gradient(160deg, rgba(18, 59, 59, 0.95), rgba(29, 87, 87, 0.95));
  color: #fff;
  border-radius: 24px;
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-notes-title {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  margin-bottom: 0.55rem;
}

.hero-notes ul {
  display: grid;
  gap: 0.45rem;
}

.hero-notes li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  font-size: 0.93rem;
}

.hero-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent-2);
}

.trust-strip {
  padding-bottom: 0.8rem;
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.trust-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 59, 59, 0.08);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
}

.trust-pill svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 59, 59, 0.08);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.service-icon-wrap {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(18, 59, 59, 0.08), rgba(204, 154, 68, 0.18));
  color: var(--brand);
}

.service-icon-wrap svg {
  width: 1.1rem;
  height: 1.1rem;
}

.service-card h3 {
  font-size: 1.05rem;
}

.service-card > p {
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.service-card ul {
  display: grid;
  gap: 0.45rem;
}

.service-card li {
  position: relative;
  padding-left: 0.95rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52rem;
  width: 0.32rem;
  height: 0.32rem;
  border-radius: 50%;
  background: var(--accent);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.about-copy p + p {
  margin-top: 0.9rem;
  color: var(--ink-soft);
}

.metric-grid {
  margin-top: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.metric-card {
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 59, 59, 0.09);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.metric-value {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--brand);
}

.metric-label {
  margin-top: 0.25rem;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.about-visual {
  display: grid;
  gap: 0.9rem;
}

.about-stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.75fr);
  gap: 0.9rem;
  align-items: end;
}

.about-stack .media-card {
  min-height: 360px;
}

.about-stack .media-card.inset {
  min-height: 250px;
}

.quote-panel {
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.95), rgba(241, 236, 224, 0.9));
  border: 1px solid rgba(18, 59, 59, 0.08);
  box-shadow: var(--shadow-sm);
}

.quote-panel p {
  color: var(--brand);
  font-weight: 700;
  line-height: 1.45;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  position: relative;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(18, 59, 59, 0.08);
  box-shadow: var(--shadow-sm);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(18, 59, 59, 0.08);
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
}

.process-card p {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.9rem;
}

.gallery-card {
  grid-column: span 4;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid rgba(18, 59, 59, 0.09);
  box-shadow: var(--shadow-sm);
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-card.wide {
  grid-column: span 8;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.gallery-card.tall img {
  min-height: 520px;
}

.gallery-card.wide img {
  min-height: 260px;
}

.gallery-card figcaption {
  padding: 0.85rem 0.95rem;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid rgba(18, 59, 59, 0.07);
}

.gallery-card figcaption span {
  display: block;
  color: var(--brand);
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  margin-bottom: 0.25rem;
}

.gallery-card figcaption strong {
  font-size: 0.95rem;
  line-height: 1.35;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 1rem;
  align-items: start;
}

.contact-copy > p {
  color: var(--ink-soft);
  margin-top: 0.9rem;
}

.contact-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-grid {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.contact-card {
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 59, 59, 0.08);
  box-shadow: var(--shadow-sm);
}

.contact-card svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand);
}

.contact-card h3 {
  font-size: 0.98rem;
  margin-top: 0.55rem;
}

.contact-card p {
  margin-top: 0.35rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--brand);
  font-weight: 700;
}

.contact-panel {
  padding: 1.2rem;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(18, 59, 59, 0.95), rgba(15, 44, 44, 0.98)),
    var(--brand);
  color: #f4f1e9;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: sticky;
  top: 96px;
}

.contact-panel h3 {
  color: #fff;
}

.contact-panel > p {
  margin-top: 0.6rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.93rem;
}

.checklist {
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 1.35rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 0 4px rgba(240, 212, 160, 0.15);
}

.panel-actions {
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.panel-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.panel-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.26);
}

.site-footer {
  margin-top: 1rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(18, 59, 59, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(241, 236, 224, 0.65));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-brand p {
  margin-top: 0.7rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer-brand-link img {
  width: 48px;
}

.social-links {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 59, 59, 0.08);
  box-shadow: var(--shadow-sm);
  color: var(--brand);
}

.social-links a:hover {
  background: #fff;
  border-color: rgba(18, 59, 59, 0.2);
}

.social-links svg {
  width: 1rem;
  height: 1rem;
}

.footer-col {
  padding: 0.6rem 0 0;
}

.footer-col h3 {
  font-size: 0.98rem;
  margin-bottom: 0.6rem;
}

.footer-col ul {
  display: grid;
  gap: 0.5rem;
}

.footer-col li {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(18, 59, 59, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.footer-bottom a {
  color: var(--brand);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid rgba(204, 154, 68, 0.7);
  outline-offset: 2px;
}

@media (max-width: 1100px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

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

@media (max-width: 960px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    gap: 0.75rem;
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 74px 1rem auto 1rem;
    margin-left: 0;
    padding: 0.75rem;
    border-radius: 20px;
    background: rgba(251, 250, 246, 0.97);
    border: 1px solid rgba(18, 59, 59, 0.12);
    box-shadow: var(--shadow-lg);
    display: grid;
    gap: 0.35rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav > a:not(.btn) {
    padding: 0.9rem 0.85rem;
    border-radius: 12px;
  }

  .site-nav .btn {
    margin-top: 0.25rem;
    width: 100%;
  }

  .hero-grid,
  .about-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-main-image {
    min-height: 360px;
  }

  .hero-side-image {
    min-height: 220px;
  }

  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-card {
    grid-column: span 6;
  }

  .gallery-card.wide {
    grid-column: span 12;
  }

  .gallery-card.tall {
    grid-row: span 1;
  }

  .gallery-card.tall img {
    min-height: 300px;
  }

  .contact-panel {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 1rem), var(--container));
  }

  .brand img {
    width: 46px;
  }

  .brand-name {
    font-size: 0.84rem;
  }

  .brand-tag {
    display: none;
  }

  .hero-points li {
    grid-template-columns: 1rem 1fr;
    padding: 0.8rem 0.85rem;
  }

  .hero-visual {
    grid-template-columns: 1fr;
  }

  .hero-main-image,
  .hero-side-image {
    grid-column: auto;
  }

  .hero-main-image {
    min-height: 300px;
  }

  .hero-side-image {
    min-height: 220px;
  }

  .hero-notes {
    grid-column: auto;
  }

  .trust-items {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .metric-grid,
  .process-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-stack {
    grid-template-columns: 1fr;
  }

  .about-stack .media-card,
  .about-stack .media-card.inset {
    min-height: 260px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card,
  .gallery-card.wide {
    grid-column: auto;
  }

  .gallery-card img,
  .gallery-card.tall img,
  .gallery-card.wide img {
    min-height: 240px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
