/* ==========================================================================
   Carole's Boxes — Hartford, WI
   Custom CSS — No frameworks
   ========================================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #faf7f2;
  --bg-alt: #f0ebe3;
  --bg-card: #ffffff;
  --bg-dark: #2c2420;
  --text: #3a3028;
  --text-muted: #6d6153;
  --text-faint: #9e9386;
  --primary: #8b5e3c;
  --primary-rgb: 139, 94, 60;
  --primary-light: #f2e6d9;
  --accent: #c49a6c;
  --accent-light: #f5ead9;
  --border: #d8cfc3;
  --border-light: #e8e1d7;
  --radius: 0.25rem;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --transition: 0.3s ease;
}

html.dark {
  --bg: #1e1a16;
  --bg-alt: #262119;
  --bg-card: #302a22;
  --bg-dark: #12100d;
  --text: #e8e0d5;
  --text-muted: #9e9386;
  --text-faint: #6d6153;
  --primary: #c49a6c;
  --primary-rgb: 196, 154, 108;
  --primary-light: #3a2e22;
  --accent: #d4ad7a;
  --accent-light: #2a2218;
  --border: #3e362c;
  --border-light: #332c24;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.25);
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 20% 50%, rgba(var(--primary-rgb), 0.015) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(var(--primary-rgb), 0.01) 0%, transparent 40%),
    radial-gradient(circle at 50% 80%, rgba(var(--primary-rgb), 0.012) 0%, transparent 45%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; padding-bottom: 2.25rem; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.25rem, 1.7rem + 2.2vw, 3.25rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 1.35rem + 1.6vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); font-weight: 500; }
h4 { font-size: 1.125rem; font-weight: 500; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section {
  padding: 5rem 0;
}
.section--alt {
  background-color: var(--bg-alt);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1.4;
}
.btn--primary {
  background-color: var(--primary);
  color: #fff;
}
.btn--primary:hover {
  background-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(var(--primary-rgb), 0.2);
}
.btn--primary:active {
  transform: translateY(0.5px);
  box-shadow: 0 1px 4px rgba(var(--primary-rgb), 0.15);
}
@media (prefers-reduced-motion: reduce) {
  .btn--primary:hover, .btn--primary:active { transform: none; box-shadow: none; }
}
.btn--outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn--outline:hover {
  background-color: var(--primary);
  color: #fff;
}

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition), background-color var(--transition);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.header__logo {
  font-family: 'Crimson Pro', serif;
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.header__logo:hover { color: var(--primary); }

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.header__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
.header__link:hover,
.header__link--active {
  color: var(--primary);
}
.header__link--active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1.5px;
  background: var(--primary);
  border-radius: 1px;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-left: 0.5rem;
}
.header__phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.header__phone:hover { color: var(--accent); }

/* Dark toggle */
.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  transition: color var(--transition);
}
.theme-toggle:hover { color: var(--primary); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-moon { display: block; }
.theme-toggle .icon-sun { display: none; }
html.dark .theme-toggle .icon-moon { display: none; }
html.dark .theme-toggle .icon-sun { display: block; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.375rem;
  color: var(--text);
}
.hamburger svg { width: 24px; height: 24px; }
.hamburger .icon-close { display: none; }
.hamburger[aria-expanded="true"] .icon-menu { display: none; }
.hamburger[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .header__nav {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background-color: var(--bg);
    padding: 2rem 1.25rem;
    gap: 1.25rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    border-top: 1px solid var(--border-light);
  }
  .header__nav--open {
    transform: translateX(0);
  }
  .header__link {
    font-size: 1.125rem;
  }
  .header__link--active::after { display: none; }
  .header__phone {
    margin-left: 0;
    font-size: 1rem;
    margin-top: 0.5rem;
  }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 4rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 36, 32, 0.35) 0%,
    rgba(44, 36, 32, 0.55) 100%
  );
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 3rem 1.25rem;
}
.hero__content h1 {
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero__content p {
  color: rgba(255,255,255,0.88);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero__content .btn--primary {
  background-color: var(--accent);
  color: var(--bg-dark);
}
.hero__content .btn--primary:hover {
  background-color: #d4ad7a;
}

/* Decorative corner flourishes */
.hero__frame {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero__frame--tl,
.hero__frame--tr,
.hero__frame--bl,
.hero__frame--br {
  width: 60px;
  height: 60px;
  border-color: rgba(255,255,255,0.3);
  border-style: solid;
}
.hero__frame--tl { top: 2rem; left: 2rem; border-width: 2px 0 0 2px; }
.hero__frame--tr { top: 2rem; right: 2rem; border-width: 2px 2px 0 0; }
.hero__frame--bl { bottom: 2rem; left: 2rem; border-width: 0 0 2px 2px; }
.hero__frame--br { bottom: 2rem; right: 2rem; border-width: 0 2px 2px 0; }

@media (max-width: 600px) {
  .hero { min-height: 65vh; }
  .hero__frame--tl, .hero__frame--tr, .hero__frame--bl, .hero__frame--br {
    width: 36px;
    height: 36px;
  }
  .hero__frame--tl { top: 1rem; left: 1rem; }
  .hero__frame--tr { top: 1rem; right: 1rem; }
  .hero__frame--bl { bottom: 1rem; left: 1rem; }
  .hero__frame--br { bottom: 1rem; right: 1rem; }
}

/* ==========================================================================
   Gallery / Masonry
   ========================================================================== */
.gallery__grid {
  columns: 2;
  column-gap: 1.25rem;
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: default;
}
.gallery__item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery__item:hover img {
  transform: scale(1.03);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem 1rem 0.875rem;
  background: linear-gradient(0deg, rgba(44,36,32,0.7) 0%, transparent 100%);
  color: #fff;
  font-family: 'Crimson Pro', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.gallery__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (max-width: 520px) {
  .gallery__grid { columns: 1; }
}

/* ==========================================================================
   About
   ========================================================================== */
.about__content {
  display: flex;
  gap: 2.5rem;
  align-items: flex-start;
}
.about__text {
  flex: 1;
}
.about__text h2 { margin-bottom: 1.25rem; }
.about__image {
  flex: 0 0 280px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about__image img {
  width: 100%;
  height: auto;
}

@media (max-width: 700px) {
  .about__content {
    flex-direction: column-reverse;
  }
  .about__image {
    flex: none;
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   Process
   ========================================================================== */
.process__timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 2.5rem;
}
.process__step {
  flex: 1;
  text-align: center;
  padding: 1.5rem 1rem;
}
.process__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  margin-bottom: 1rem;
  border: 1.5px solid var(--border);
}
.process__icon svg {
  width: 24px;
  height: 24px;
}
.process__connector {
  flex: 0 0 auto;
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
  margin-top: 2.2rem;
  align-self: flex-start;
  margin-top: calc(1.5rem + 26px);
}
.process__step h3 {
  margin-bottom: 0.625rem;
}
.process__step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.process__heading {
  text-align: center;
}

@media (max-width: 600px) {
  .process__timeline {
    flex-direction: column;
    align-items: center;
  }
  .process__connector {
    width: 1.5px;
    height: 32px;
    background: linear-gradient(180deg, var(--border) 0%, var(--primary) 50%, var(--border) 100%);
    margin-top: 0;
  }
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.testimonial-card blockquote {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 1rem;
  font-style: italic;
}
.testimonial-card cite {
  font-style: normal;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

@media (max-width: 600px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq__heading {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
}
.faq__item {
  border-bottom: 1px solid var(--border-light);
}
.faq__item:first-child {
  border-top: 1px solid var(--border-light);
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Karla', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  line-height: 1.4;
}
.faq__question:hover { color: var(--primary); }
.faq__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-faint);
  transition: transform 0.3s ease;
}
.faq__item--open .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__answer-inner {
  padding: 0 0 1.125rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  text-align: center;
  background-color: var(--primary-light);
}
.cta-section h2 {
  margin-bottom: 0.75rem;
}
.cta-section p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.contact-intro {
  margin-bottom: 2rem;
}
.contact-intro h1 { margin-bottom: 0.75rem; }
.contact-intro p { color: var(--text-muted); }

.form__group {
  margin-bottom: 1.25rem;
}
.form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.375rem;
}
.form__input,
.form__select,
.form__textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-family: 'Karla', sans-serif;
  font-size: 0.9375rem;
  color: var(--text);
  background-color: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form__input:focus,
.form__select:focus,
.form__textarea:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.1);
}
.form__textarea {
  min-height: 120px;
  resize: vertical;
}
.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%236d6153' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  padding-right: 2.5rem;
}
.form__submit {
  margin-top: 0.5rem;
}
.form__status {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  display: none;
}
.form__status--success {
  display: block;
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.form__status--error {
  display: block;
  background-color: #fbe9e7;
  color: #c62828;
  border: 1px solid #ffccbc;
}
html.dark .form__status--success {
  background-color: #1b3a1e;
  color: #81c784;
  border-color: #2e5a31;
}
html.dark .form__status--error {
  background-color: #3a1c18;
  color: #e57373;
  border-color: #5a2a22;
}

.contact-sidebar {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.contact-sidebar h3 { margin-bottom: 1.25rem; }
.contact-sidebar__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.contact-sidebar__item:last-child { margin-bottom: 0; }
.contact-sidebar__item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.2rem;
}
.contact-sidebar__item a,
.contact-sidebar__item span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-sidebar__item a:hover { color: var(--primary); }

.cf-turnstile {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-page__intro { margin-bottom: 2rem; }
.about-page__intro h1 { margin-bottom: 0.75rem; }
.about-page__body h2 { margin-top: 2.5rem; margin-bottom: 0.75rem; }
.about-page__body p { color: var(--text-muted); }
.about-page__body p + p { margin-top: 0; }

/* ==========================================================================
   404 Page
   ========================================================================== */
.error-page {
  min-height: calc(100vh - 4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 4rem;
}
.error-page__content {
  max-width: 480px;
  padding: 2rem 1.25rem;
}
.error-page__content h1 {
  margin-bottom: 0.75rem;
}
.error-page__content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.error-page__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 3rem 0 3.5rem;
  padding-bottom: 5.5rem;
}
.footer a { color: rgba(255,255,255,0.7); }
.footer a:hover { color: #fff; }
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand h4 {
  font-family: 'Crimson Pro', serif;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.6;
}
.footer__links h4 {
  font-family: 'Crimson Pro', serif;
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
.footer__links ul {
  list-style: none;
}
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { font-size: 0.875rem; }

.footer__bottom {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer__credit {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer__credit a { color: rgba(255,255,255,0.6); }
.footer__credit a:hover { color: #fff; }

/* Disclaimer */
.disclaimer {
  background-color: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 0.875rem 0;
}
.disclaimer p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: var(--bg-alt);
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: var(--text-muted); }

/* ==========================================================================
   Skip link
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  z-index: 200;
  font-size: 0.875rem;
  font-weight: 600;
}
.skip-link:focus {
  top: 0.5rem;
}

/* ==========================================================================
   Utilities
   ========================================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ==========================================================================
   Subtle animations (only when user has no motion preference)
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  @keyframes cb-fade-up {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes cb-lid-open {
    0%   { transform: rotateX(0deg); }
    50%  { transform: rotateX(-12deg); }
    100% { transform: rotateX(0deg); }
  }
  .hero__content {
    animation: cb-fade-up 0.8s ease both;
  }
  .gallery__item {
    animation: cb-fade-up 0.6s ease both;
  }
  .gallery__item:nth-child(2) { animation-delay: 0.1s; }
  .gallery__item:nth-child(3) { animation-delay: 0.2s; }
  .gallery__item:nth-child(4) { animation-delay: 0.3s; }
  .process__icon {
    animation: cb-lid-open 2.4s ease-in-out infinite;
  }
}

/* Disclaimer bar */
.disclaimer-bar{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:90;
  background:#1C1E24;
  color:#9B9DA6;
  font-size:0.8rem;
  text-align:center;
  padding:0.6rem 1rem;
  border-top:1px solid rgba(255,255,255,0.08);
}
