/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', 'Segoe UI', sans-serif; color: #222; background: #fff; line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --blue: #1a3c6e;
  --blue-dark: #122d54;
  --blue-light: #2a5298;
  --orange: #e85d04;
  --orange-dark: #c44d00;
  --orange-light: #ff6b1a;
  --gray: #f5f7fa;
  --gray-dark: #6b7280;
  --text: #1f2937;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
  --radius: 10px;
  --transition: 0.25s ease;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 { font-weight: 700; line-height: 1.2; color: var(--blue); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { color: #4b5563; margin-bottom: 1rem; }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; border-radius: 6px; font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232,93,4,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--blue); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }
.badge { display: inline-block; background: rgba(232,93,4,0.12); color: var(--orange); font-weight: 600; font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 30px; margin-bottom: 14px; }

/* ===== TOP BAR ===== */
.top-bar { background: var(--blue-dark); color: #c5d5f0; font-size: 0.85rem; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: #c5d5f0; letter-spacing: 0.01em; }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
/* Emoji icon spacing — adds a thin space after any emoji used as an icon prefix */
.top-bar a[href^="tel"]::before,
.top-bar a[href^="mailto"]::before { content: ''; }
.top-bar span { display: inline-flex; align-items: center; gap: 5px; }

/* ===== HEADER ===== */
.header { background: var(--white); box-shadow: 0 2px 12px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; max-width: 1200px; margin: 0 auto; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 48px; height: 48px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 28px; height: 28px; fill: var(--white); }
.logo-text span { display: block; }
.logo-name { font-size: 1.15rem; font-weight: 800; color: var(--blue); line-height: 1.1; }
.logo-tagline { font-size: 0.72rem; color: var(--gray-dark); letter-spacing: 0.5px; }
.nav { display: flex; align-items: center; gap: 6px; }
.nav a { padding: 8px 14px; font-weight: 500; color: var(--text); border-radius: 6px; transition: var(--transition); font-size: 0.95rem; }
.nav a:hover, .nav a.active { color: var(--blue); background: var(--gray); }
.nav-cta { margin-left: 10px; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; transition: var(--transition); }

/* ===== MOBILE NAV ===== */
.mobile-nav { display: none; background: var(--white); border-top: 1px solid #e5e7eb; padding: 16px 20px; flex-direction: column; gap: 4px; max-height: calc(100vh - 80px); overflow-y: auto; }
.mobile-nav a { display: block; padding: 12px 14px; font-weight: 500; color: var(--text); border-radius: 6px; font-size: 1rem; }
.mobile-nav a:hover { background: var(--gray); color: var(--blue); }
.mobile-nav .btn { width: 100%; justify-content: center; text-align: center; }
.mobile-nav.open { display: flex; }

/* ===== HERO ===== */
.hero { position: relative; background: var(--blue); min-height: 600px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: url('../images/hero-plumber.jpg'); background-size: cover; background-position: center; opacity: 0.22; }
.hero-content { position: relative; z-index: 2; max-width: 640px; color: var(--white); padding: 80px 0; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--orange-light); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.hero-trust-item svg { width: 18px; height: 18px; fill: var(--orange-light); }

/* ===== TRUST STRIP ===== */
.trust-strip { background: var(--blue-dark); padding: 22px 0; }
.trust-strip .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: #c5d5f0; font-size: 0.92rem; }
.trust-item svg { width: 24px; height: 24px; fill: var(--orange-light); flex-shrink: 0; }
.trust-item strong { color: var(--white); }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid #e5e7eb; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card img { width: 100%; height: 200px; object-fit: cover; }
.service-card-body { padding: 22px; }
.service-card-body h3 { margin-bottom: 8px; }
.service-card-body p { font-size: 0.92rem; margin-bottom: 16px; }
.service-icon-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow); text-align: center; transition: var(--transition); border: 1px solid #e5e7eb; }
.service-icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--blue); }
.service-icon-card .icon { width: 60px; height: 60px; background: rgba(26,60,110,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.service-icon-card .icon svg { width: 30px; height: 30px; fill: var(--blue); }
.service-icon-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-icon-card p { font-size: 0.88rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.why-card { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 50px; height: 50px; background: var(--orange); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon svg { width: 26px; height: 26px; fill: var(--white); }
.why-card h3 { font-size: 1.05rem; margin-bottom: 5px; }
.why-card p { font-size: 0.88rem; margin: 0; }

/* ===== STEPS ===== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.step { text-align: center; padding: 30px 20px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); position: relative; }
.step-number { width: 52px; height: 52px; background: var(--blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; margin: 0 auto 16px; }
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; margin: 0; }

/* ===== AREAS ===== */
.areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; }
.area-chip { background: var(--white); border: 2px solid #e5e7eb; border-radius: 8px; padding: 12px 16px; text-align: center; font-weight: 600; color: var(--blue); transition: var(--transition); font-size: 0.92rem; }
.area-chip:hover { border-color: var(--orange); color: var(--orange); background: rgba(232,93,4,0.04); }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid #e5e7eb; border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-q { padding: 18px 22px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--blue); user-select: none; }
.faq-q .arrow { width: 22px; height: 22px; fill: var(--blue); transition: var(--transition); flex-shrink: 0; }
.faq-a { padding: 0 22px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-a p { padding-bottom: 18px; margin: 0; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-item.open .arrow { transform: rotate(180deg); }

/* ===== CTA SECTION ===== */
.cta-section { background: var(--blue); position: relative; overflow: hidden; padding: 80px 0; text-align: center; }
.cta-section::before { content: ''; position: absolute; inset: 0; background-image: url('../images/cta-bg.jpg'); background-size: cover; background-position: center; opacity: 0.12; }
.cta-section .container { position: relative; z-index: 2; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border-left: 4px solid var(--orange); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.95rem; font-style: italic; margin-bottom: 16px; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.author-avatar { width: 42px; height: 42px; background: var(--blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; }
.author-info strong { display: block; color: var(--blue); font-size: 0.92rem; }
.author-info span { font-size: 0.8rem; color: var(--gray-dark); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.stat-box { background: var(--gray); border-radius: var(--radius); padding: 20px; text-align: center; }
.stat-box .num { font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat-box span { font-size: 0.85rem; color: var(--gray-dark); }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; width: 100%; }
.contact-info-box { background: var(--blue); color: var(--white); padding: 40px; border-radius: var(--radius); }
.contact-info-box h3 { color: var(--white); margin-bottom: 24px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; align-items: flex-start; }
.contact-detail svg { width: 22px; height: 22px; fill: var(--orange-light); flex-shrink: 0; margin-top: 2px; }
.contact-detail strong { display: block; color: rgba(255,255,255,0.6); font-size: 0.8rem; margin-bottom: 2px; }
.contact-detail a { color: var(--white); font-weight: 600; }

/* ===== FORM ===== */
.form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow); }
.form-card h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 6px; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; border: 1.5px solid #d1d5db; border-radius: 7px; font-size: 0.95rem; font-family: inherit; transition: border-color 0.2s; background: var(--white); color: var(--text); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,60,110,0.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit { width: 100%; padding: 14px; font-size: 1.05rem; }

/* ===== PAGE HERO ===== */
.page-hero { background: var(--blue); padding: 60px 0; text-align: center; position: relative; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, var(--blue-dark), var(--blue-light)); opacity: 0.9; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.88rem; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: rgba(255,255,255,0.7); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--orange-light); }

/* ===== SERVICE DETAIL ===== */
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.service-detail-img { border-radius: var(--radius); overflow: hidden; margin-bottom: 28px; }
.sidebar-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); margin-bottom: 24px; border-top: 4px solid var(--orange); }
.sidebar-card h3 { margin-bottom: 16px; }
.sidebar-services a { display: flex; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px solid #f3f4f6; color: var(--text); font-weight: 500; font-size: 0.92rem; }
.sidebar-services a:hover { color: var(--orange); }
.sidebar-services a::before { content: '▸'; color: var(--orange); }
.checklist { margin: 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: 0.95rem; }
.checklist li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ===== AREAS PAGE ===== */
.areas-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.area-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid #e5e7eb; display: flex; gap: 14px; align-items: flex-start; transition: var(--transition); }
.area-card:hover { border-color: var(--blue); box-shadow: var(--shadow-lg); }
.area-card svg { width: 24px; height: 24px; fill: var(--orange); flex-shrink: 0; margin-top: 2px; }

/* ===== FOOTER ===== */
.footer { background: var(--blue-dark); color: #94aed4; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer p { font-size: 0.88rem; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #94aed4; font-size: 0.88rem; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--orange-light); }
.footer-links a::before { content: '›'; font-size: 1.1rem; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; font-size: 0.88rem; }
.footer-contact-item svg { width: 18px; height: 18px; fill: var(--orange-light); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: #94aed4; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: #94aed4; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== STICKY CALL BAR (mobile) ===== */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--orange); z-index: 999; text-align: center; }
.sticky-call a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 16px; color: var(--white); font-weight: 700; font-size: 1rem; }
.sticky-call svg { width: 22px; height: 22px; fill: var(--white); }

/* ===== UTILITY ===== */
.bg-gray { background: var(--gray); }
.bg-blue { background: var(--blue); }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-32 { margin-top: 32px; }
.gap-12 { gap: 12px; }
.flex-center { display: flex; justify-content: center; }
.inline-flex { display: inline-flex; }
.divider { width: 60px; height: 4px; background: var(--orange); border-radius: 2px; margin: 0 auto 24px; }
.divider-left { margin: 0 0 24px; }

/* ===== RESPONSIVE ===== */

/* Tablet / large mobile */
@media (max-width: 900px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .about-grid, .contact-grid, .service-detail-grid { grid-template-columns: 1fr; }
  /* fix: inline-style grids (quote page) also need to collapse */
  .contact-grid[style] { display: flex !important; flex-direction: column !important; }
  /* On mobile: sidebar (col 2) floats up above content (col 1) */
  .service-detail-grid > div:last-child { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-call { display: block; }
  body { padding-bottom: 64px; }
  .hero-content { padding: 60px 0; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .trust-strip .container { flex-wrap: wrap; gap: 14px; justify-content: flex-start; }
  .logo-tagline { display: none; }
}

/* Mobile */
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 340px; justify-content: center; }
  .top-bar-left { display: none; }
  .top-bar-right { width: 100%; justify-content: center; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
  .page-hero { padding: 40px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 50px 0; }
  .hero-trust { gap: 12px; }
  .hero-trust-item { font-size: 0.82rem; }
  .trust-strip { padding: 16px 0; }
  .trust-strip .container { gap: 12px; }
  .trust-item { font-size: 0.82rem; }
  /* Buttons: allow wrapping text on mobile */
  .btn { white-space: normal; text-align: center; }
  .btn-sm { padding: 10px 16px; }
  /* Forms */
  .form-card { padding: 24px 16px; }
  .contact-info-box { padding: 28px 20px; }
  /* FAQ */
  .faq-q { font-size: 0.92rem; padding: 14px 16px; }
  .faq-a { padding: 0 16px; }
  .faq-a p { font-size: 0.88rem; }
  .faq-item.open .faq-a { max-height: 400px; }
  /* Service detail */
  .service-detail-grid .sidebar-card { padding: 20px 16px; }
  /* Areas */
  .areas-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); gap: 10px; }
  .area-chip { padding: 10px 12px; font-size: 0.85rem; }
  /* Footer */
  .footer { padding: 40px 0 0; }
  .footer-grid { gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-bottom-links { justify-content: center; }
  /* Testimonials */
  .testimonial-card { padding: 20px 16px; }
  /* Why cards */
  .why-card { gap: 12px; }
  .why-icon { width: 44px; height: 44px; flex-shrink: 0; }
  /* Steps */
  .step { padding: 22px 14px; }
  /* About stats */
  .about-stats { grid-template-columns: 1fr 1fr; }
  .stat-box .num { font-size: 1.6rem; }
  /* Header */
  .header-inner { padding: 12px 16px; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-name { font-size: 1rem; }
  /* Sections */
  .section-header { margin-bottom: 28px; }
  /* Sidebar in service pages */
  .sidebar-card h3 { font-size: 1rem; }
  /* Areas list on service areas page */
  .areas-list-grid { grid-template-columns: 1fr; gap: 14px; }
  /* CTA section */
  .cta-section { padding: 50px 0; }
  /* Logo in header */
  .logo { gap: 8px; }
}

/* Small phones */
@media (max-width: 400px) {
  .steps-grid { grid-template-columns: 1fr; }
  .container { padding: 0 14px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.4rem; }
  .hero-btns .btn { font-size: 0.9rem; padding: 12px 16px; }
  .btn-primary, .btn-blue, .btn-outline { padding: 12px 18px; font-size: 0.9rem; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .form-card { padding: 20px 14px; }
  .contact-info-box { padding: 22px 14px; }
  .top-bar { padding: 6px 0; font-size: 0.8rem; }
}
