/* ============================================================
   THERAPY GLASGOW — therapy-glasgow.co.uk
   Brand: Deep teal + white + dark navy
   Core 30 silo compliant build
   ============================================================ */

:root {
  --teal:        #1ab8d5;
  --teal-dark:   #0f9ab6;
  --teal-light:  #e8f8fc;
  --teal-mid:    #b2eaf4;
  --navy:        #1a2e3b;
  --navy-dark:   #0d1f2a;
  --text:        #4a5568;
  --text-dark:   #2d3748;
  --white:       #ffffff;
  --grey-bg:     #f8fafc;
  --grey-light:  #f1f5f9;
  --grey-border: #e2e8f0;
  --green:       #25D366;
  --font:        'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow:      0 2px 16px rgba(0,0,0,.07);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.10);
  --max-w:       1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); line-height: 1.7; background: var(--white); font-size: 16px; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); text-decoration: underline; }
ul   { padding-left: 1.4rem; }
li   { margin-bottom: .35rem; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5 { color: var(--navy-dark); line-height: 1.25; font-weight: 800; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); margin-bottom: 1.2rem; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: .9rem; margin-top: 0; }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); margin-bottom: .6rem; margin-top: 0; }
h4 { font-size: 1.05rem; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; color: var(--text); }

.eyebrow {
  display: inline-block;
  color: var(--teal);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: .8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .97rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,184,213,.35); }
.btn-outline { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline:hover { background: var(--teal); color: #fff; text-decoration: none; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); color: #fff; text-decoration: none; }
.btn-white { background: #fff; color: var(--teal-dark); border-color: #fff; }
.btn-white:hover { background: var(--teal-light); text-decoration: none; }
.btn-sm { padding: 9px 22px; font-size: .87rem; }

/* ── TOP BAR ── */
.top-bar { background: var(--navy-dark); color: rgba(255,255,255,.75); font-size: .82rem; padding: 7px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; }
.top-bar a { color: var(--teal); }
.top-bar-right { display: flex; gap: 1.5rem; }

/* ── NAVIGATION ── */
.site-header { background: #fff; box-shadow: 0 1px 0 var(--grey-border); position: sticky; top: 0; z-index: 999; }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.site-logo { font-size: 1.15rem; font-weight: 800; color: var(--teal); letter-spacing: -.3px; line-height: 1.2; }
.site-logo span { display: block; font-size: .72rem; font-weight: 500; color: var(--text); letter-spacing: 0; }
.site-logo:hover { text-decoration: none; color: var(--teal-dark); }

.nav-links { display: flex; gap: 1.4rem; list-style: none; padding: 0; margin: 0; align-items: center; }
.nav-links a { color: var(--text-dark); font-weight: 500; font-size: .88rem; transition: color .2s; }
.nav-links a:hover { color: var(--teal); text-decoration: none; }
.nav-links .nav-cta a { background: var(--teal); color: #fff; padding: 9px 20px; border-radius: 50px; font-size: .85rem; }
.nav-links .nav-cta a:hover { background: var(--teal-dark); }

.nav-hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--navy-dark); border-radius: 2px; transition: all .3s; }

@media (max-width: 960px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: #fff; padding: 20px 24px; box-shadow: var(--shadow-lg); gap: .7rem; border-top: 1px solid var(--grey-border); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; background: var(--white); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('https://images.unsplash.com/photo-1573497620053-ea5300f94f21?w=1600&q=80'); background-size: cover; background-position: center 30%; opacity: .12; z-index: 0; }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 840px; margin: 0 auto; padding: 90px 24px; }
.hero h1 { color: var(--navy-dark); font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.12; }
.hero h1 span { color: var(--teal); }
.hero .hero-sub { color: var(--text); font-size: 1.12rem; max-width: 660px; margin: 0 auto 2.4rem; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.5rem; }
.hero-trust-item { display: flex; align-items: center; gap: 6px; font-size: .83rem; color: var(--text); }
.hero-trust-item .ti-icon { color: var(--teal); font-size: 1rem; }

/* ── INFO BAR ── */
.info-bar { background: var(--white); border-top: 1px solid var(--grey-border); border-bottom: 1px solid var(--grey-border); padding: 28px 0; }
.info-bar-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 2rem; align-items: center; }
@media (max-width: 900px) { .info-bar-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .info-bar-grid { grid-template-columns: 1fr; } }
.info-item-label { font-size: .72rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.info-item-value { font-size: .9rem; color: var(--text-dark); font-weight: 500; }
.info-item-value a { color: var(--text-dark); }
.info-item-value a:hover { color: var(--teal); text-decoration: none; }
.cert-row { display: flex; gap: 5px; flex-wrap: wrap; margin-top: .4rem; }
.cert-badge { background: var(--teal-light); color: var(--teal-dark); font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; border: 1px solid rgba(26,184,213,.3); }

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--grey-bg); }
.section-navy { background: var(--navy-dark); }
.section-teal { background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%); }
.section-navy h2, .section-navy h3, .section-navy p { color: rgba(255,255,255,.9); }
.section-teal h2, .section-teal p { color: #fff; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-header h2 { margin-top: .5rem; }
.section-header p { color: var(--text); font-size: 1.03rem; }

/* ── SERVICE CARDS ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 32px; transition: all .25s ease; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--teal); transform: scaleX(0); transition: transform .3s ease; transform-origin: left; }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.sc-icon { width: 54px; height: 54px; background: var(--teal-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1.2rem; }
.service-card h3 { color: var(--navy-dark); font-size: 1.1rem; margin-bottom: .5rem; }
.service-card p { color: var(--text); font-size: .92rem; margin-bottom: 1.2rem; }
.sc-link { color: var(--teal); font-weight: 700; font-size: .87rem; display: inline-flex; align-items: center; gap: 4px; }
.sc-link:hover { text-decoration: underline; }

/* ── STATS ROW ── */
.stats-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-size: 2.8rem; font-weight: 800; color: var(--teal); line-height: 1; margin-bottom: .3rem; }
.stat-label { font-size: .88rem; color: rgba(255,255,255,.75); }

/* ── TWO-COL SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 800px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split-img-box { border-radius: var(--radius-lg); overflow: hidden; min-height: 440px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--teal-light), #c2eef7); }

/* ── WHY POINTS ── */
.why-list { display: flex; flex-direction: column; gap: 1.4rem; margin-top: 1.5rem; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon { width: 44px; height: 44px; background: var(--teal); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; flex-shrink: 0; }
.why-item h3 { font-size: 1rem; margin-bottom: .2rem; }
.why-item p  { font-size: .88rem; color: var(--text); margin: 0; }

/* ── THERAPIST CARDS ── */
.therapists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.therapist-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow); }
.t-avatar { width: 70px; height: 70px; background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; color: #fff; margin-bottom: 1.2rem; }
.therapist-card h3 { color: var(--navy-dark); font-size: 1.1rem; margin-bottom: .25rem; }
.t-role { color: var(--teal); font-size: .83rem; font-weight: 600; margin-bottom: .8rem; display: block; }
.t-specs { font-size: .87rem; color: var(--text); margin-bottom: .9rem; }
.t-contact { font-size: .84rem; color: var(--text); }
.t-contact a { color: var(--teal); }

/* ── APPROACH CARDS ── */
.approach-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.approach-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 26px; transition: box-shadow .2s; }
.approach-card:hover { box-shadow: var(--shadow-lg); }
.ap-icon { font-size: 2rem; margin-bottom: .9rem; }
.approach-card h3 { font-size: 1rem; margin-bottom: .2rem; }
.ap-sub { font-size: .78rem; color: var(--teal); font-weight: 600; text-transform: uppercase; letter-spacing: .5px; margin-bottom: .7rem; display: block; }
.ap-list { list-style: none; padding: 0; margin-top: .7rem; }
.ap-list li { font-size: .83rem; color: var(--text); padding: 3px 0; display: flex; gap: 6px; }
.ap-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }

/* ── STEPS ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 24px; }
.step-card { text-align: center; padding: 32px 22px; background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--grey-border); }
.step-num { width: 52px; height: 52px; background: var(--teal); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; margin: 0 auto 1.2rem; }
.step-card h3 { font-size: 1rem; margin-bottom: .5rem; }
.step-card p { font-size: .87rem; color: var(--text); margin: 0; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.testimonial { background: #fff; border-radius: var(--radius-lg); border: 1px solid var(--grey-border); padding: 28px; box-shadow: var(--shadow); position: relative; }
.testimonial::before { content: '"'; font-size: 5rem; color: var(--teal); opacity: .12; position: absolute; top: -12px; left: 18px; line-height: 1; font-family: Georgia, serif; }
.stars { color: #f59e0b; margin-bottom: .8rem; font-size: .95rem; }
.t-text { font-style: italic; color: var(--text); font-size: .92rem; margin-bottom: 1rem; }
.t-name { font-weight: 700; color: var(--navy-dark); font-size: .88rem; }
.t-loc { font-size: .8rem; color: var(--text); }

/* ── AREAS GRID ── */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(155px, 1fr)); gap: 10px; list-style: none; padding: 0; }
.areas-grid li { margin: 0; }
.areas-grid a { display: block; background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 11px 15px; color: var(--text-dark); font-weight: 500; font-size: .88rem; text-align: center; transition: all .2s; }
.areas-grid a:hover { border-color: var(--teal); color: var(--teal); box-shadow: var(--shadow); text-decoration: none; }

/* ── FAQ ── */
.faq-wrap { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--grey-border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer; font-weight: 600; color: var(--navy-dark); font-size: .96rem; gap: 1rem; }
.faq-icon { color: var(--teal); font-size: 1.4rem; flex-shrink: 0; transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { padding: 0 0 18px; color: var(--text); font-size: .92rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BAND ── */
.cta-band { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); padding: 80px 0; text-align: center; }
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: .8rem; }
.cta-band p  { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 2rem; font-size: 1.03rem; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-box { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.form-group { margin-bottom: 1.1rem; }
.form-group label { display: block; font-weight: 600; font-size: .87rem; color: var(--navy-dark); margin-bottom: .4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 15px; border: 1.5px solid var(--grey-border); border-radius: var(--radius); font-family: var(--font); font-size: .94rem; color: var(--text-dark); background: #fff; transition: border-color .2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--teal); }
.form-group textarea { min-height: 110px; resize: vertical; }
.ci-list { display: flex; flex-direction: column; gap: 1.4rem; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 1.1rem; flex-shrink: 0; }
.ci-label { font-size: .72rem; font-weight: 700; color: var(--teal); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.ci-val { font-size: .92rem; color: var(--text-dark); }
.ci-val a { color: var(--text-dark); }
.ci-val a:hover { color: var(--teal); text-decoration: none; }

/* ── BREADCRUMB ── */
.breadcrumb { background: var(--grey-bg); border-bottom: 1px solid var(--grey-border); padding: 11px 0; }
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 5px; font-size: .84rem; align-items: center; }
.breadcrumb li { color: var(--text); }
.breadcrumb li + li::before { content: '›'; margin-right: 5px; }
.breadcrumb a { color: var(--teal); }
[aria-current="page"] { color: var(--text); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, #1a3a4f 100%); padding: 68px 0 58px; }
.page-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.page-hero p  { color: rgba(255,255,255,.82); max-width: 640px; font-size: 1.03rem; }
.hero-badge { display: inline-block; background: rgba(26,184,213,.2); color: var(--teal); padding: 5px 14px; border-radius: 50px; font-size: .76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 1rem; border: 1px solid rgba(26,184,213,.35); }
.ph-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ── CONTENT + SIDEBAR ── */
.content-wrap { display: grid; grid-template-columns: 1fr 320px; gap: 52px; align-items: start; }
@media (max-width: 900px) { .content-wrap { grid-template-columns: 1fr; } .sidebar { position: static !important; } }
.sidebar { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 18px; }
.sidebar-cta { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); border-radius: var(--radius-lg); padding: 26px; text-align: center; }
.sidebar-cta h4 { color: #fff; margin-bottom: .6rem; }
.sidebar-cta p { color: rgba(255,255,255,.88); font-size: .87rem; margin-bottom: 1.2rem; }
.sidebar-card { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow); }
.sidebar-card h4 { color: var(--navy-dark); margin-bottom: .9rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .88rem; }
.hours-table tr { border-bottom: 1px solid var(--grey-border); }
.hours-table td { padding: 8px 4px; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--teal-dark); }

/* ── NOTICE / CHIP / SERVICE LIST ── */
.notice { background: var(--teal-light); border-left: 4px solid var(--teal); border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 18px; margin: 1.5rem 0; font-size: .92rem; color: var(--navy-dark); }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 1rem 0; }
.chip { background: var(--teal-light); color: var(--teal-dark); padding: 5px 13px; border-radius: 50px; font-size: .81rem; font-weight: 600; border: 1px solid rgba(26,184,213,.25); }
.svc-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 10px; list-style: none; padding: 0; }
.svc-list li { background: #fff; border: 1px solid var(--grey-border); border-radius: var(--radius); padding: 12px 16px; display: flex; gap: 8px; align-items: center; margin: 0; transition: all .2s; }
.svc-list li:hover { border-color: var(--teal); box-shadow: var(--shadow); }
.svc-list li::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.svc-list a { color: var(--text-dark); font-weight: 500; font-size: .88rem; }
.svc-list a:hover { color: var(--teal); text-decoration: none; }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.7); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { color: #fff; font-size: .93rem; margin-bottom: 1rem; }
.footer-col p  { font-size: .86rem; line-height: 1.7; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: .45rem; }
.footer-col ul a { color: rgba(255,255,255,.62); font-size: .86rem; }
.footer-col ul a:hover { color: var(--teal); text-decoration: none; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: #fff; margin-bottom: .7rem; }
.footer-logo span { color: var(--teal); }
.footer-nap { font-size: .86rem; line-height: 2; margin-top: .8rem; }
.footer-certs { display: flex; flex-wrap: wrap; gap: 5px; margin-top: .8rem; }
.footer-cert { background: rgba(26,184,213,.15); border: 1px solid rgba(26,184,213,.3); color: var(--teal); font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 50px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 20px 0; display: flex; justify-content: space-between; flex-wrap: wrap; gap: .8rem; font-size: .81rem; }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--teal); }

/* ── WA FLOAT ── */
.wa-float { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 4px 20px rgba(0,0,0,.25); z-index: 9999; transition: transform .2s; text-decoration: none; }
.wa-float:hover { transform: scale(1.1); text-decoration: none; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .hero-btns, .cta-btns, .ph-btns { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .top-bar-right { display: none; }
}
