/* ==========================================================================
   Credensa — rebuilt from original design visuals (Precept, 2019)
   Fonts: Mokoko Light (serif display) / Eina 01 (sans)
   ========================================================================== */

@font-face {
  font-family: 'Eina01';
  src: url('fonts/Eina01-Regular.woff2') format('woff2'),
       url('fonts/Eina01-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eina01';
  src: url('fonts/Eina01-SemiBold.woff2') format('woff2'),
       url('fonts/Eina01-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Eina01';
  src: url('fonts/Eina01-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mokoko';
  src: url('fonts/Mokoko-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --plum-dark: #29042e;
  --plum: #4b2653;
  --body: #60345d;
  --body-soft: #8e6e8c;
  --coral: #ff4e4b;
  --purple: #6017c1;
  --purple-dark: #4f11a3;
  --bg-light: #fbf8fb;
  --bg-tint: #f7f3f8;
  --border: #ece4ee;
  --white: #ffffff;
  --shadow: 0 18px 45px -18px rgba(41, 4, 46, 0.18);
  --shadow-soft: 0 10px 30px -12px rgba(41, 4, 46, 0.12);
  --radius: 10px;
  --sans: 'Eina01', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Mokoko', Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* --- Typography ------------------------------------------------------- */

h1, .h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 58px);
  line-height: 1.15;
  color: var(--coral);
}
h2, .h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.25;
  color: var(--plum);
}
h3, .h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 19px;
  color: var(--plum);
}

.serif-intro {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.4;
  color: var(--plum);
}

.section-label {
  display: block;
  font-weight: 600;
  font-size: 19px;
  color: var(--coral);
  margin-bottom: 14px;
}

.accent { color: var(--coral); }
.accent-bold { color: var(--coral); font-family: var(--sans); font-weight: 600; }
.stat { color: var(--coral); font-weight: 600; }

/* --- Buttons ----------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 17px 30px;
  border-radius: 999px;
  cursor: pointer;
  transition: all .18s ease;
  border: 1px solid transparent;
  text-align: center;
}
.btn:hover { text-decoration: none; }

.btn-primary { background: var(--purple); color: var(--white); }
.btn-primary:hover { background: var(--purple-dark); transform: translateY(-1px); }

.btn-outline {
  background: var(--white);
  color: var(--purple);
  border-color: #e6dcea;
}
.btn-outline:hover { border-color: var(--purple); }

.btn-ghost {
  background: transparent;
  color: var(--purple);
  border-color: #e6dcea;
}
.btn-ghost:hover { border-color: var(--purple); }

.text-link { font-weight: 600; font-size: 15px; color: var(--purple); }

/* --- Decorative dots pattern ------------------------------------------ */

.dots::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Crect x='16' y='16' width='7' height='7' rx='1' transform='rotate(45 19.5 19.5)' fill='%23d9c9de' opacity='0.55'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* --- Header / Nav ------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(236, 228, 238, 0.6);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(251, 248, 251, 0.94);
  backdrop-filter: blur(8px);
  z-index: -1;
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
}
.logo img { height: 34px; width: auto; }

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--plum-dark);
}
.nav-links a:hover { color: var(--purple); text-decoration: none; }
.nav-links a.active { color: var(--purple); }

.nav-actions { display: flex; gap: 14px; align-items: center; }
.nav-actions .btn { padding: 14px 26px; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  cursor: pointer;
  position: relative;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum-dark);
  margin: 5px auto;
  border-radius: 2px;
  transition: all .22s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-light);
  z-index: 200;
  padding: 110px 32px 40px;
  overflow-y: auto;
}
.nav-open .mobile-menu { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li { margin-bottom: 8px; }
.mobile-menu a {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.7;
  color: var(--plum-dark);
}
.mobile-menu a.active { color: var(--purple); }
.mobile-menu .mobile-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
body.nav-open { overflow: hidden; }

/* --- Hero -------------------------------------------------------------- */

.hero {
  position: relative;
  background: var(--bg-light);
  overflow: hidden;
  text-align: center;
  padding: 110px 24px 90px;
}
.hero.dots::before { top: 240px; right: -60px; }
.hero .blob {
  position: absolute;
  top: -320px;
  left: -220px;
  width: 900px;
  height: 900px;
  background: var(--white);
  border-radius: 43% 57% 51% 49% / 48% 44% 56% 52%;
  opacity: .75;
  pointer-events: none;
}
.hero > * { position: relative; }
.hero h1 { max-width: 820px; margin: 0 auto 26px; }
.hero .sub {
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 18px;
}
.hero .scroll-hint {
  margin-top: 70px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .25em;
  color: var(--body-soft);
  text-transform: uppercase;
}
.hero .scroll-hint::after {
  content: '';
  width: 1px;
  height: 54px;
  background: #cbb9cf;
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  background: var(--bg-light);
  overflow: hidden;
  text-align: center;
  padding: 84px 24px 96px;
}
.page-hero.dots::before { top: 30px; right: -80px; }
.page-hero h1 { margin-bottom: 18px; }
.page-hero .sub { max-width: 620px; margin: 0 auto; font-size: 18px; }
.page-hero .serif-first { color: var(--coral); }
.page-hero .plum { color: var(--plum); }

/* --- Sections ----------------------------------------------------------- */

section { position: relative; }
.section { padding: 96px 0; }
.section-tint { background: var(--bg-tint); }
.center { text-align: center; }

.intro-block { max-width: 760px; margin: 0 auto 70px; text-align: center; }

/* Feature grid (home intro / about) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
  max-width: 1060px;
  margin: 0 auto;
}
.feature {
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
}
.feature img {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
}

/* Split rows (For agents / suppliers on home) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split .copy h3 { margin-bottom: 16px; }
.split .copy p { margin-bottom: 28px; }
.split .btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.split.reverse .media { order: 2; }

/* Video / media card */
.media-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.media-card > img { width: 100%; height: 100%; object-fit: cover; }
.media-card .play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(41,4,46,.08), rgba(41,4,46,.28));
  transition: background .2s ease;
}
.media-card .play:hover { background: linear-gradient(180deg, rgba(41,4,46,.16), rgba(41,4,46,.4)); }
.media-card .play img {
  width: 64px;
  height: 64px;
  background: var(--white);
  border-radius: 50%;
  padding: 15px;
  box-shadow: var(--shadow);
}

/* Numbered feature rows (for-agents / for-suppliers pages) */
.num-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 64px 0;
}
.num-row .num {
  font-weight: 600;
  font-size: 15px;
  color: var(--plum);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.num-row .num::after { content: ''; width: 64px; height: 1px; background: #cbb9cf; }
.num-row h2 { color: var(--coral); margin-bottom: 22px; }
.num-row h3 { margin-bottom: 14px; }
.num-row.reverse .media { order: 2; }

/* --- Pricing ------------------------------------------------------------ */

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}
.pricing-toggle button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--body-soft);
  transition: color .18s ease;
}
.pricing-toggle button .mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--white) url('img/brandmark.png') center/20px auto no-repeat;
  box-shadow: var(--shadow-soft);
  opacity: .45;
  transition: opacity .18s ease;
}
.pricing-toggle button.active { color: var(--purple); }
.pricing-toggle button.active .mark { opacity: 1; }

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1020px;
  margin: 64px auto 0;
  align-items: start;
}
.plan {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 34px 38px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.plan.recommended { box-shadow: var(--shadow); }
.plan .flag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--plum-dark);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan h3 { margin-bottom: 12px; }
.plan .price {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 40px;
  color: var(--coral);
  margin-bottom: 16px;
  line-height: 1;
}
.plan .price small { font-size: 15px; font-weight: 600; }
.plan .desc { font-size: 15px; margin-bottom: 24px; }
.plan ul {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-bottom: 30px;
  text-align: left;
}
.plan ul li {
  font-size: 15px;
  padding-left: 32px;
  margin-bottom: 14px;
  position: relative;
}
.plan ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--plum-dark);
}
.plan ul li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.plan .btn { width: 100%; }
.plans.single { grid-template-columns: minmax(0, 360px); justify-content: center; }

/* --- Blog --------------------------------------------------------------- */

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.blog-head h2 { font-family: var(--sans); font-weight: 600; font-size: 26px; color: var(--plum); }
.blog-head p { font-size: 16px; }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card img { height: 190px; object-fit: cover; width: 100%; }
.card .card-body { padding: 26px 26px 24px; display: flex; flex-direction: column; flex: 1; }
.card .category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--body-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.card .category::before { content: ''; width: 22px; height: 1px; background: #cbb9cf; }
.card h3 { font-size: 18px; line-height: 1.45; margin-bottom: 18px; flex: 1; }
.card h3 a { color: inherit; }
.card .text-link { margin-top: auto; }

/* Article */
.article-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.article-bar .container { display: flex; align-items: center; height: 52px; }
.article-bar a { color: var(--body-soft); font-weight: 600; }
.article-hero { text-align: center; padding: 72px 24px 34px; }
.article-hero .section-label { margin-bottom: 20px; }
.article-hero h1 { color: var(--plum); max-width: 840px; margin: 0 auto 22px; }
.article-hero .meta { color: var(--body-soft); font-size: 15px; }
.article-figure {
  max-width: 860px;
  margin: 30px auto 60px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.article-body { max-width: 680px; margin: 0 auto; padding: 0 24px 90px; }
.article-body h2 {
  font-family: var(--serif);
  color: var(--plum);
  font-size: clamp(24px, 3vw, 30px);
  margin: 52px 0 20px;
}
.article-body h3 { margin: 40px 0 14px; }
.article-body p { margin-bottom: 22px; }
.article-body ul, .article-body ol { margin: 0 0 22px 22px; }
.article-body li { margin-bottom: 10px; }
.article-body blockquote {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.45;
  color: var(--plum);
  border-left: 3px solid var(--coral);
  padding-left: 26px;
  margin: 40px 0;
}

/* --- CTA band ------------------------------------------------------------ */

.cta-band {
  background: var(--bg-tint);
  text-align: center;
  padding: 110px 24px 100px;
  position: relative;
  overflow: hidden;
}
.cta-band .diamond {
  width: 11px;
  height: 11px;
  background: var(--coral);
  transform: rotate(45deg);
  margin: 0 auto 36px;
  border-radius: 2px;
}
.cta-band h2 {
  color: var(--coral);
  max-width: 760px;
  margin: 0 auto 22px;
  font-size: clamp(30px, 4.4vw, 44px);
}
.cta-band .sub { margin-bottom: 38px; font-size: 18px; }

/* --- Contact ------------------------------------------------------------- */

.contact-form { max-width: 680px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 44px; }
.form-field { margin-bottom: 30px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--body-soft);
  margin-bottom: 2px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #d8cadd;
  background: transparent;
  font-family: var(--sans);
  font-size: 17px;
  color: var(--plum-dark);
  padding: 10px 0;
  outline: none;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus { border-bottom-color: var(--purple); }

.support-strip {
  background: var(--bg-tint);
  border-radius: var(--radius);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  margin: 80px 0 70px;
}
.support-strip h2 { font-size: clamp(26px, 3vw, 34px); color: var(--coral); }
.support-strip h2 strong { font-family: var(--sans); font-weight: 600; }
.support-strip p { margin-top: 8px; font-size: 16px; }

.office { text-align: center; padding-bottom: 70px; }
.office h3 { margin-bottom: 10px; }
.map-embed { border: 0; width: 100%; height: 420px; display: block; filter: saturate(.35); }

/* --- Team (about) --------------------------------------------------------- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 28px;
  max-width: 1020px;
  margin: 60px auto 0;
}
.member {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 20px 30px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}
.member .avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--bg-tint);
  color: var(--purple);
  font-weight: 600;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.member .role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--body-soft);
  display: block;
  margin-bottom: 8px;
}
.member h3 { font-size: 17px; }

.accreditation-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  flex-wrap: wrap;
  padding: 26px 0 10px;
}
.accreditation-strip img { height: 64px; width: auto; opacity: .85; }

/* --- Integrations ---------------------------------------------------------- */

.integration-card .logo-panel {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 26px;
  color: var(--white);
}

/* --- Legal pages ------------------------------------------------------------ */

.legal-body { max-width: 680px; margin: 0 auto; padding: 80px 24px 90px; }
.legal-body h2 { font-family: var(--sans); font-weight: 600; font-size: 19px; color: var(--plum); margin: 44px 0 16px; }
.legal-body p, .legal-body li { margin-bottom: 18px; font-size: 16.5px; }
.legal-body ul { margin: 0 0 18px 22px; }
.legal-note {
  background: var(--bg-tint);
  border-left: 3px solid var(--coral);
  border-radius: 6px;
  padding: 18px 22px;
  font-size: 15px;
  margin-bottom: 40px;
}

/* --- 404 ---------------------------------------------------------------------- */

.error-hero { padding: 150px 24px 170px; }
.error-hero .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }

/* --- Auth / login ----------------------------------------------------------------- */

.auth-card {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 46px 42px 40px;
  text-align: left;
}
.auth-card .form-field { margin-bottom: 26px; }
.auth-message {
  font-size: 15px;
  font-weight: 600;
  color: var(--coral);
  margin: -8px 0 20px;
}
.auth-message.success { color: var(--purple); }
@media (max-width: 560px) {
  .auth-card { padding: 36px 26px 32px; }
}

/* --- Footer --------------------------------------------------------------------- */

.site-footer { border-top: 1px solid var(--border); padding: 70px 0 0; background: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-grid .brand img { height: 40px; width: auto; }
.footer-col h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--plum-dark);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 13px; }
.footer-col a { color: var(--body); font-size: 15px; }
.footer-col a:hover { color: var(--purple); text-decoration: none; }
.footer-col .soc { display: inline-flex; align-items: center; gap: 10px; }
.footer-col .soc svg { width: 17px; height: 17px; fill: var(--plum-dark); flex: none; }

.footer-base {
  border-top: 1px solid var(--border);
  margin-top: 56px;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--body-soft);
}

/* --- Responsive -------------------------------------------------------------------- */

@media (max-width: 1020px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .split, .split.reverse, .num-row, .num-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .media, .num-row.reverse .media { order: 0; }
  .plans { grid-template-columns: 1fr; max-width: 420px; }
  .plan.recommended { order: -1; }
  .card-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .num-row { padding: 40px 0; }
  .hero { padding: 80px 24px 70px; }
  .support-strip { padding: 34px 28px; }
}

@media (max-width: 560px) {
  .feature-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
