/* ===== VARIABLES ===== */
:root {
  --accent:       #9b2335;
  --accent-light: #c0392b;
  --accent-dark:  #7a1a28;
  --sidebar-bg:   #040b14;
  --sidebar-width: 300px;
  --body-bg:      #f5f8fd;
  --text-dark:    #272829;
  --text-muted:   #6c757d;
  --section-bg:   #fff;
  --section-alt:  #f5f8fd;
}

/* ===== RESET / BASE ===== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--body-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}
a { color: var(--accent); text-decoration: none; transition: color .3s; }
a:hover { color: var(--accent-light); }
img { max-width: 100%; }

/* ===== SIDEBAR ===== */
#sidebar {
  position: fixed;
  top: 0; left: 0;
  width: var(--sidebar-width);
  height: 100vh;
  background: var(--sidebar-bg);
  overflow-y: auto;
  z-index: 9999;
  transition: left .3s;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}
#sidebar .sidebar-profile {
  padding: 30px 20px 20px;
  text-align: center;
}
#sidebar .sidebar-profile img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: center top;
  border-radius: 12px;
  border: 4px solid rgba(255,255,255,.15);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .5s ease, transform .5s ease;
  pointer-events: none;
}
#sidebar .sidebar-profile img.sidebar-photo-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#sidebar .sidebar-profile h1 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
}
#sidebar .sidebar-social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
#sidebar .sidebar-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.6);
  display: flex; align-items: center; justify-content: center;
  font-size: .85rem;
  transition: all .3s;
}
#sidebar .sidebar-social a:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== SIDEBAR NAV ===== */
#sidebar-nav {
  margin-top: 10px;
  flex: 1;
}
#sidebar-nav ul {
  list-style: none;
  padding: 0; margin: 0;
}
#sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .5px;
  transition: all .3s;
  border-left: 3px solid transparent;
}
#sidebar-nav ul li a i {
  font-size: 1rem;
  width: 20px;
  text-align: center;
}
#sidebar-nav ul li a:hover,
#sidebar-nav ul li a.active {
  color: #fff;
  border-left-color: var(--accent);
  background: rgba(255,255,255,.05);
}

/* ===== MOBILE OVERLAY ===== */
#sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 9998;
}
#sidebar-overlay.active {
  display: block;
}

/* ===== MOBILE TOGGLE ===== */
#mobile-toggle {
  display: none;
  position: fixed;
  top: 15px; right: 15px;
  z-index: 10000;
  background: var(--accent);
  color: #fff;
  border: none;
  width: 42px; height: 42px;
  border-radius: 4px;
  font-size: 1.2rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* ===== MAIN CONTENT ===== */
#main {
  margin-left: var(--sidebar-width);
  transition: margin .3s;
}

/* ===== CONTENT WIDTH CAP ===== */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ===== HERO removed — site starts with About ===== */

/* ===== SECTION COMMON ===== */
section {
  padding: 60px 40px;
}
section.alt-bg {
  background: var(--section-alt);
}
.section-title {
  margin-bottom: 40px;
}
.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  position: relative;
  padding-bottom: 14px;
}
.section-title h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--accent);
}
.section-title p {
  color: var(--text-muted);
  margin: 0;
}

/* ===== ABOUT ===== */
#about {
  padding-top: 40px;
}
.about-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.btn-about-contact {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 10px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  transition: background .3s, transform .2s;
}
.btn-about-contact:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
}
.btn-about-availability {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 2px solid #d4d4d4;
  color: var(--text-muted);
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  font-size: .92rem;
  cursor: default;
  user-select: none;
}
.btn-about-availability .bi-circle-fill {
  font-size: .55rem;
  color: #22c55e;
}
#about .about-img img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
#about .about-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}
#about .about-info .fst-italic {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: .97rem;
}
#about .about-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
#about .about-info ul li {
  padding: 5px 0;
  font-size: .92rem;
  border-bottom: 1px solid #f0f0f0;
}
#about .about-info ul li:last-child {
  border-bottom: none;
}
#about .about-info ul li i {
  color: var(--accent);
  margin-right: 8px;
  font-size: .8rem;
}
#about .about-info ul li strong {
  color: var(--text-dark);
  min-width: 90px;
  display: inline-block;
}

/* ===== ABOUT STATS (iPortfolio icon style) ===== */
.about-stats {
  padding-top: 30px;
  margin-top: 10px;
  border-top: 1px solid #e8e8e8;
}
.about-stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}
.about-stat-item .asi-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid rgba(155,35,53,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
}
.about-stat-item .asi-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
  font-family: 'Raleway', sans-serif;
}
.about-stat-item .asi-label {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 4px 0 0;
  line-height: 1.3;
}

/* ===== SKILLS ===== */
.skill-item {
  margin-bottom: 20px;
}
.skill-item .skill-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-dark);
}
.skill-bar {
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}
.skill-bar .skill-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 1.2s ease;
}

/* ===== RESUME ===== */
.resume-col h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.resume-item {
  position: relative;
  padding: 0 0 20px 24px;
  border-left: 2px solid #e0e0e0;
  margin-bottom: 4px;
}
.resume-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 4px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--accent);
}
.resume-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.resume-item .resume-date {
  display: inline-block;
  font-size: .8rem;
  background: var(--accent);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.resume-item .resume-company {
  font-style: italic;
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 6px;
}
.resume-item p, .resume-item ul {
  font-size: .88rem;
  color: #555;
}
.resume-skills-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.resume-skills-list li {
  font-size: .85rem;
  color: #555;
  padding: 3px 0 3px 16px;
  position: relative;
  line-height: 1.6;
}
.resume-skills-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== PORTFOLIO / CASE STUDIES ===== */
.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}
.portfolio-filters button {
  background: none;
  border: 1px solid #ddd;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: .85rem;
  cursor: pointer;
  transition: all .3s;
  color: var(--text-dark);
}
.portfolio-filters button.active,
.portfolio-filters button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  margin-bottom: 24px;
}
.portfolio-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform .4s;
}
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-item .portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(155, 35, 53, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
  padding: 20px;
  text-align: center;
}
.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
.portfolio-item .portfolio-overlay h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.portfolio-item .portfolio-overlay p {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  margin: 0;
}

/* ===== CASE STUDY CARDS ===== */
.case-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 14px rgba(0,0,0,.08);
  padding: 28px;
  height: 100%;
  border-top: 4px solid var(--accent);
  transition: transform .3s, box-shadow .3s;
}
.case-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
}
.case-card .case-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 10px;
}
.case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.4;
}
.case-card .case-stat {
  background: #fdf0f2;
  border-left: 3px solid var(--accent);
  padding: 8px 14px;
  border-radius: 0 4px 4px 0;
  margin-bottom: 8px;
}
.case-card .case-stat .stat-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.case-card .case-stat .stat-lbl {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.case-card .case-section-label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin: 14px 0 4px;
}
.case-card .case-body {
  font-size: .88rem;
  color: #555;
  line-height: 1.6;
}

/* ===== SERVICES ===== */
.service-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  margin-bottom: 0;
  transition: transform .3s, box-shadow .3s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
}
.service-card .service-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(155,35,53,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--accent);
}
.service-card .service-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.service-card .service-body p {
  font-size: .87rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ===== TESTIMONIALS (light scheme) ===== */
.testi-light {
  background: #f8f9fa;
}
.testi-light .section-title h2 {
  color: var(--text-dark);
}
.testi-light .section-title p {
  color: var(--text-muted);
}
.testimonial-item {
  background: #fff;
  border-radius: 8px;
  padding: 28px;
  text-align: center;
  height: 100%;
  box-shadow: 0 2px 14px rgba(0,0,0,.07);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}
.testimonial-item .quote-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
  line-height: 1;
}
.testimonial-item blockquote {
  font-size: .93rem;
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
  border: none;
  padding: 0;
  flex-grow: 1;
}
.testimonial-item .testi-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  margin-bottom: 10px;
}
.testimonial-item h5 {
  color: var(--text-dark);
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 2px;
}
.testimonial-item > span {
  font-size: .82rem;
  color: var(--text-muted);
}
.testi-video-link {
  margin-top: 12px;
}
.testi-video-link a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color .2s;
}
.testi-video-link a i {
  font-size: 1.2rem;
}
.testi-video-link a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* ===== CASE STUDY TABS ===== */
.case-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 0;
}
.case-tab-btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  padding: 12px 24px;
  cursor: pointer;
  text-align: left;
  transition: all .25s;
  border-radius: 4px 4px 0 0;
}
.case-tab-btn .ct-tag {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 3px;
  transition: color .25s;
}
.case-tab-btn .ct-title {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: color .25s;
}
.case-tab-btn:hover,
.case-tab-btn.active {
  background: rgba(155,35,53,.05);
  border-bottom-color: var(--accent);
}
.case-tab-btn.active .ct-tag,
.case-tab-btn:hover .ct-tag {
  color: var(--accent);
}
.case-tab-btn.active .ct-title,
.case-tab-btn:hover .ct-title {
  color: var(--accent);
}
.case-tab-content {
  margin-top: 0;
}
.case-tab-panel {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 36px;
}
.cs-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 24px;
}
.cs-stats-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cs-stat-box {
  background: #fdf0f2;
  border-left: 4px solid var(--accent);
  padding: 12px 16px;
  border-radius: 0 6px 6px 0;
}
.cs-stat-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.cs-stat-lbl {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: 3px;
}
.cs-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.cs-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.cs-section h5 {
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cs-section h5 i {
  color: var(--accent);
}
.cs-section p {
  font-size: .92rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}
.cs-bullets {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.cs-bullets li {
  font-size: .92rem;
  color: #555;
  line-height: 1.7;
  padding: 3px 0 3px 20px;
  position: relative;
}
.cs-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}
.cs-result {
  background: #fdf0f2;
  border-radius: 6px;
  padding: 16px;
  border-bottom: none !important;
}
.cs-result h5 {
  color: var(--accent);
}

/* ===== CASE STUDY CLIENT FOOTER ===== */
.cs-client-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  flex-wrap: wrap;
}
.cs-client-logo {
  max-height: 44px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}
.cs-client-logo-dark {
  background: #1e1e1e;
  border-radius: 8px;
  padding: 8px 12px;
  display: inline-flex;
  align-items: center;
}
.cs-logo-white {
  filter: brightness(0) invert(1);
  max-height: 32px;
}
.cs-website-btn {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 16px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.cs-website-btn:hover {
  background: var(--accent);
  color: #fff;
}
.cs-website-btn i {
  font-size: .8rem;
  margin-right: 5px;
}

/* ===== CONTACT ===== */
#contact .contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 24px;
}
#contact .contact-info-item .ci-icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(155,35,53,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}
#contact .contact-info-item h4 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}
#contact .contact-info-item p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
}
#contact .contact-form .form-control,
#contact .contact-form .form-select {
  border: 1px solid #dde1e7;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .9rem;
  transition: border-color .3s, box-shadow .3s;
}
#contact .contact-form .form-control:focus,
#contact .contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(155,35,53,.15);
  outline: none;
}
#contact .contact-form .btn-send {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 36px;
  border-radius: 6px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: background .3s, transform .2s;
}
#contact .contact-form .btn-send:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

/* Load More Button */
.btn-load-more {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
  padding: 9px 28px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s, color .25s, transform .2s;
  letter-spacing: .02em;
}
.btn-load-more:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
}
.btn-load-more i {
  transition: transform .3s;
}
.btn-load-more.expanded i {
  transform: rotate(180deg);
}

/* Checkboxes */
.cf-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding: 6px 0;
}
.cf-checkboxes .form-check {
  margin: 0;
  padding-left: 1.6em;
}
.cf-checkboxes .form-check-input {
  cursor: pointer;
  border-color: #adb5bd;
  width: 1.1em;
  height: 1.1em;
  margin-top: .15em;
}
.cf-checkboxes .form-check-input:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}
.cf-checkboxes .form-check-label {
  font-size: .9rem;
  cursor: pointer;
  color: #444;
}

/* ===== CONTACT SECTION BOTTOM PADDING ===== */
#contact {
  padding-bottom: 100px;
}

/* ===== FOOTER ===== */
#footer {
  background: var(--sidebar-bg);
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 20px;
  font-size: .85rem;
}

/* ===== SCROLL TO TOP ===== */
#scroll-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .3s;
  box-shadow: 0 2px 10px rgba(155,35,53,.4);
}
#scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}
#scroll-top:hover {
  transform: translateY(-3px);
  background: var(--accent-dark);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  :root { --sidebar-width: 260px; }
}
@media (max-width: 768px) {
  #sidebar {
    left: calc(-1 * var(--sidebar-width));
  }
  #sidebar.open {
    left: 0;
  }
  #main {
    margin-left: 0;
  }
  #mobile-toggle {
    display: flex;
  }
  section {
    padding: 40px 20px;
  }
  .content-wrap {
    max-width: 100%;
  }
}
