/* ==========================================================================
   Primecanto — Free Social Play  ·  "Royal Legends" theme
   Heraldic nocturne: pine-green field + antique gold + ivory.
   Type: Fraunces (display serif) · Inter (body) · Inter (tracked labels).
   Free, entertainment-only showcase of social game demos. No real money. 18+.
   ========================================================================== */

:root {
  --bg: #0e1b16;
  --bg-2: #0b1611;
  --surface: #13251d;
  --surface-2: #173026;
  --line: rgba(201, 162, 74, 0.22);
  --line-soft: rgba(243, 236, 224, 0.10);
  --ink: #f6f0e3;
  --ink-dim: #d8cfba;
  --muted: #9bab9d;
  --gold: #c9a24a;
  --gold-lt: #e7c873;
  --emerald: #1f7a52;
  --emerald-lt: #36b07a;
  --grad-gold: linear-gradient(135deg, #e7c873 0%, #b8862f 100%);
  --grad-emerald: linear-gradient(135deg, #2a9c68 0%, #11604180 100%);
  --shadow: 0 26px 64px -28px rgba(0, 0, 0, 0.78);
  --glow-gold: 0 16px 44px -18px rgba(201, 162, 74, 0.55);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1160px;
  --font-display: "Fraunces", "Hoefler Text", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1000px 560px at 84% -10%, rgba(201, 162, 74, 0.12), transparent 60%),
    radial-gradient(820px 520px at 6% 2%, rgba(31, 122, 82, 0.16), transparent 58%),
    var(--bg);
  background-attachment: fixed;
  color: var(--ink-dim);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-lt); text-decoration: none; }
a:hover { text-decoration: underline; }
::selection { background: rgba(201, 162, 74, 0.34); color: #fff; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.07;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.6rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.34rem; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
.section--tight { padding: 58px 0; }
.section__head { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section__head p { color: var(--muted); font-size: 1.07rem; margin-top: 14px; }

/* Tracked small-caps label — the recurring signature device */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: .72rem; font-weight: 700;
  letter-spacing: .26em; text-transform: uppercase; color: var(--gold);
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--gold); opacity: .7; }
.section__head .eyebrow { justify-content: center; margin-bottom: 14px; }

/* Ornamental divider — gold hairline with centre lozenge */
.rule { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto; max-width: 280px; color: var(--gold); }
.rule::before, .rule::after { content: ""; height: 1px; flex: 1; background: linear-gradient(90deg, transparent, var(--gold)); opacity: .5; }
.rule::after { background: linear-gradient(90deg, var(--gold), transparent); }
.rule span { width: 8px; height: 8px; transform: rotate(45deg); border: 1px solid var(--gold); }

/* ---- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .96rem;
  padding: 14px 30px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none;
  transition: transform .16s ease, box-shadow .22s ease, background .22s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: var(--grad-gold); color: #2a1d05; box-shadow: var(--glow-gold); }
.btn--primary:hover { box-shadow: 0 22px 56px -16px rgba(201, 162, 74, 0.8); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); background: rgba(201, 162, 74, 0.1); }
.btn--light { background: rgba(31, 122, 82, 0.16); color: var(--ink); border-color: rgba(54, 176, 122, 0.42); }
.btn--light:hover { background: rgba(31, 122, 82, 0.28); border-color: var(--emerald-lt); }

/* ---- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 22, 17, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-family: var(--font-display); font-weight: 600; font-size: 1.42rem; color: var(--ink); letter-spacing: -0.01em; }
.brand:hover { text-decoration: none; }
.brand__mark { width: 40px; height: 40px; flex: none; filter: drop-shadow(0 6px 14px rgba(201, 162, 74, .35)); }
.brand__name small { display: block; font-family: var(--font-body); font-weight: 700; font-size: .54rem; letter-spacing: .28em; color: var(--gold); text-transform: uppercase; margin-top: 2px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink-dim); font-family: var(--font-body); font-weight: 600; font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; }
.nav a:hover { color: var(--gold-lt); text-decoration: none; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ---- Hero ----------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: 108px 0 78px; text-align: center; }
.hero__bg { position: absolute; inset: 0; z-index: 0; display: flex; transform: scale(1.04); }
.hero__bg img { flex: 1 1 0; min-width: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background:
  radial-gradient(1100px 620px at 50% 42%, rgba(14,27,22,.5), rgba(14,27,22,.9) 76%),
  linear-gradient(180deg, rgba(14,27,22,.72), rgba(14,27,22,.96)); }
.hero__inner { position: relative; z-index: 2; }
.hero__copy { max-width: 760px; margin: 0 auto; }
.hero h1 { margin: 20px 0 0; }
.hero h1 .accent { font-style: italic; background: var(--grad-gold); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.lead { font-size: 1.18rem; color: var(--ink-dim); max-width: 34em; margin: 22px auto 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
@keyframes floaty { 0%,100% { transform: translateY(-9px); } 50% { transform: translateY(9px); } }
.scroll-hint { text-align: center; margin-top: 58px; color: var(--muted); font-family: var(--font-body); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-hint .arrow { display: block; margin-top: 8px; font-size: 1.3rem; color: var(--gold); animation: bob 1.9s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---- Stat band ------------------------------------------------------------ */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.stat { background: linear-gradient(180deg, var(--surface-2), var(--surface)); padding: 30px 22px; text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-weight: 600; font-size: 2.2rem; line-height: 1; color: var(--gold-lt); }
.stat__label { display: block; margin-top: 8px; font-size: .78rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

/* ---- Spotlight / featured demo -------------------------------------------- */
.spotlight { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; background: linear-gradient(135deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.spotlight__media { position: relative; min-height: 320px; }
.spotlight__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.spotlight__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 60%, rgba(19,37,29,.9)); }
.spotlight__body { padding: 52px 54px; display: flex; flex-direction: column; align-items: flex-start; }
.spotlight__body h2 { margin: 12px 0 14px; }
.spotlight__body p { color: var(--ink-dim); }
.spotlight__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 22px; }
.spotlight__tags span { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-lt); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; }

/* ---- Made for Canada ------------------------------------------------------ */
.canada { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; background: linear-gradient(135deg, #18302a, #122019); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 52px 54px; box-shadow: var(--shadow); }
.canada__text h2 { margin: 14px 0 16px; }
.canada__text p { color: var(--ink-dim); }
.canada__art { display: grid; place-items: center; }
.canada__art svg { width: 100%; max-width: 220px; height: auto; filter: drop-shadow(0 12px 30px rgba(201,162,74,.35)); }

/* ---- FAQ accordion -------------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(243, 236, 224, 0.025); overflow: hidden; transition: border-color .2s; }
.faq__item[open] { border-color: var(--gold); }
.faq__item summary { cursor: pointer; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--gold); font-size: 1.5rem; line-height: 1; flex: none; }
.faq__item[open] summary::after { content: "\2013"; }
.faq__item p { padding: 0 24px 22px; margin: 0; color: var(--muted); }

/* ---- Games grid ----------------------------------------------------------- */
.games-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.game-card {
  position: relative; background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  display: flex; flex-direction: column; box-shadow: var(--shadow);
  transition: transform .22s ease, box-shadow .26s ease, border-color .26s ease;
}
.game-card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: 0 32px 72px -28px rgba(201, 162, 74, 0.5); }
.game-card__media { display: block; position: relative; aspect-ratio: 640 / 448; overflow: hidden; background: #0a130f; }
.game-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.game-card:hover .game-card__media img { transform: scale(1.06); }
.game-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(11,22,17,.88)); }
.free-tag {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  font-family: var(--font-body); font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: #2a1d05; background: var(--grad-gold); padding: 5px 11px; border-radius: 999px; box-shadow: 0 6px 16px rgba(0,0,0,.45);
}
.game-card__body { padding: 20px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.game-card__body h3 { margin-bottom: 9px; font-size: 1.28rem; }
.game-card__body h3 a { color: inherit; text-decoration: none; }
.game-card__body h3 a:hover { color: var(--gold-lt); }
.game-card__body p { color: var(--muted); font-size: .92rem; flex: 1; margin-bottom: 18px; }
.game-card .btn { align-self: stretch; padding: 12px 24px; font-size: .9rem; }

/* ---- About ---------------------------------------------------------------- */
.about { position: relative; background: linear-gradient(135deg, var(--surface-2), var(--surface)); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.about::before { content: ""; position: absolute; inset: 14px; border: 1px solid var(--line-soft); border-radius: calc(var(--radius-lg) - 8px); pointer-events: none; }
.about__text { padding: 56px 58px; max-width: 780px; position: relative; }
.about__text h2 { margin: 14px 0 18px; }
.about__text p { color: var(--ink-dim); }

/* ---- Steps / features ----------------------------------------------------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.info-card { position: relative; background: rgba(243, 236, 224, 0.025); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; transition: border-color .22s, transform .22s; }
.info-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.info-card .num { font-family: var(--font-display); font-style: italic; font-weight: 600; font-size: 1.7rem; color: var(--gold); display: block; margin-bottom: 6px; }
.info-card .step-label { font-family: var(--font-body); font-weight: 700; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.info-card .icon { width: 54px; height: 54px; border-radius: 14px; background: var(--grad-emerald); display: grid; place-items: center; margin-bottom: 18px; color: var(--ink); border: 1px solid rgba(54,176,122,.4); }
.info-card .icon svg { width: 27px; height: 27px; }
.info-card h3 { margin: 8px 0 10px; }
.info-card p { color: var(--muted); font-size: .96rem; margin: 0; }

/* ---- Callout / disclaimer ------------------------------------------------- */
.callout { position: relative; background: rgba(243, 236, 224, 0.03); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 46px 52px 46px 56px; box-shadow: var(--shadow); overflow: hidden; }
.callout::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 5px; background: var(--grad-gold); }
.callout h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-bottom: 16px; }
.callout p { color: var(--ink-dim); }
.callout p:last-child { margin-bottom: 0; }

/* ---- Subscribe (OneSignal form) ------------------------------------------- */
.subscribe { position: relative; overflow: hidden; background: linear-gradient(135deg, #143228 0%, #102019 100%); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 58px; box-shadow: var(--shadow); display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.subscribe::after { content: ""; position: absolute; right: -90px; top: -90px; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(201,162,74,.26), transparent 65%); }
.subscribe > * { position: relative; z-index: 1; }
.subscribe h2 { color: #fff; }
.subscribe p { color: rgba(246,240,227,.76); }
.form-wrap { width: 100%; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-family: var(--font-body); font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(246,240,227,.6); margin-bottom: 7px; }
.form-group input[type=text], .form-group input[type=tel], .form-group input[type=email] {
  width: 100%; padding: 13px 15px; border-radius: 11px; border: 1px solid var(--line);
  background: rgba(8,16,12,.6); color: var(--ink); font-size: .98rem; font-family: var(--font-body);
}
.form-group input::placeholder { color: #6d7d70; }
.form-group input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form-consent { font-size: .82rem; color: rgba(246,240,227,.72); }
.form-consent a { color: var(--gold-lt); }
.form-consent label { display: flex; gap: 9px; align-items: flex-start; text-transform: none; letter-spacing: 0; font-size: .82rem; font-weight: 400; color: rgba(246,240,227,.72); }
.btn-block { width: 100%; padding: 15px; border: 0; border-radius: 11px; background: var(--grad-gold); color: #2a1d05; font-weight: 700; font-size: 1rem; cursor: pointer; margin-top: 6px; font-family: var(--font-body); transition: box-shadow .2s, transform .16s; }
.btn-block:hover { transform: translateY(-2px); box-shadow: 0 18px 44px -14px rgba(201,162,74,.7); }
.success-msg { display: none; margin-top: 12px; color: var(--emerald-lt); font-size: .9rem; }
.success-msg.show { display: block; }

/* ---- Footer --------------------------------------------------------------- */
.site-footer { background: var(--bg-2); border-top: 1px solid var(--line); color: var(--muted); padding: 60px 0 30px; }
.site-footer .brand { color: var(--ink); }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid var(--line-soft); }
.footer-blurb { max-width: 34em; font-size: .94rem; margin-top: 16px; color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; align-content: flex-start; }
.footer-links a { color: var(--ink-dim); font-family: var(--font-body); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold-lt); text-decoration: none; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: .85rem; color: var(--muted); }
.age-badge { display: inline-flex; align-items: center; gap: 8px; border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; font-family: var(--font-body); font-size: .72rem; font-weight: 600; letter-spacing: .08em; color: var(--gold); }

/* ---- Sub-page (game + policy) layout ------------------------------------- */
.page-hero { padding: 60px 0 22px; }
.breadcrumb { font-family: var(--font-body); font-size: .74rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.breadcrumb a { color: var(--gold-lt); }

.prose { max-width: 780px; margin: 0 auto; }
.prose p, .prose li { color: var(--ink-dim); }
.prose h2 { margin: 40px 0 14px; font-size: 1.7rem; }
.prose h3 { margin: 28px 0 10px; }
.prose ul { padding-left: 1.2em; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }
.prose .updated { font-family: var(--font-body); color: var(--muted); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 30px; }

.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; background: rgba(243, 236, 224, 0.025); border: 1px solid var(--line); border-radius: 13px; padding: 15px 18px; color: var(--ink-dim); }
.feature-list .chk { color: var(--gold-lt); flex: none; margin-top: 1px; font-weight: 700; }

/* Live game embed on game pages */
.play-head { text-align: center; max-width: 640px; margin: 0 auto 26px; }
.play-head h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.play-head p { color: var(--muted); margin: 0; }
/* 16:9 game (Play'n GO landscape canvas). Wrapper sized to the largest 16:9
   box fitting within 70vh height and 100% width, then centred. */
.game-embed { aspect-ratio: 16 / 9; width: min(100%, calc(70vh * 16 / 9)); margin-inline: auto; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); background: #000; box-shadow: 0 30px 70px -26px rgba(0,0,0,.7); }
.game-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.embed-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }
.embed-bar .hint { font-family: var(--font-body); font-size: .76rem; letter-spacing: .04em; color: var(--muted); }

.disclaimer-strip { background: rgba(243, 236, 224, 0.025); border: 1px solid var(--line); border-left: 4px solid var(--gold); border-radius: 13px; padding: 16px 20px; font-size: .92rem; color: var(--ink-dim); display: flex; gap: 12px; align-items: flex-start; margin-top: 28px; }
.disclaimer-strip strong { color: var(--ink); }

.note-box { background: rgba(243, 236, 224, 0.025); border: 1px solid var(--line); border-radius: 13px; padding: 18px 22px; margin: 22px 0; color: var(--ink-dim); }

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

/* ---- Accessibility & motion ---------------------------------------------- */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; transition: none !important; }
}

/* ---- Responsive ----------------------------------------------------------- */
@media (max-width: 980px) {
  .about, .game-hero, .subscribe, .contact-grid, .spotlight, .canada { grid-template-columns: 1fr; }
  .hero { padding: 84px 0 64px; }
  .games-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-band { grid-template-columns: repeat(2, 1fr); }
  .cards-2, .cards-3 { grid-template-columns: 1fr; }
  .about__text { padding: 44px 32px; max-width: none; }
  .subscribe { padding: 40px; }
  .spotlight__media { min-height: 240px; }
  .spotlight__media::after { background: linear-gradient(180deg, transparent 55%, rgba(19,37,29,.92)); }
  .spotlight__body { padding: 40px 32px; }
  .canada { padding: 40px 32px; }
  .canada__art { order: -1; }
  .canada__art svg { max-width: 150px; }
}
@media (max-width: 760px) {
  .nav { position: absolute; top: 78px; left: 0; right: 0; background: rgba(11,22,17,.98); backdrop-filter: blur(14px); flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 18px; box-shadow: var(--shadow); display: none; border-bottom: 1px solid var(--line); }
  .nav.open { display: flex; }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-toggle { display: block; }
  .section { padding: 64px 0; }
  .callout, .subscribe { padding: 32px 26px; }
}
@media (max-width: 520px) {
  body { font-size: 16px; }
  .hero__bg img:nth-child(4), .hero__bg img:nth-child(5) { display: none; }
  .games-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .about__text { padding: 34px 24px; }
}
