/* ===================== Variables ===================== */
:root {
  --color-primary: #0f4c81;
  --color-primary-dark: #0a3a63;
  --color-primary-light: #2e7fd6;
  --color-accent: #e8f1fa;
  --color-bg: #ffffff;
  --color-bg-alt: #f5f8fb;
  --color-text: #1a2332;
  --color-text-light: #5b6b7c;
  --color-border: #e1e8ef;
  --shadow-sm: 0 1px 2px rgba(15, 76, 129, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 76, 129, 0.12);
  --shadow-lg: 0 20px 48px rgba(15, 76, 129, 0.16);
  --radius: 12px;
  --header-height: 76px;
  --transition: 0.25s ease;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }

ul { list-style: none; margin: 0; padding: 0; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline {
  background: transparent;
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.btn-outline:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--color-primary-dark); transform: translateY(-2px); }

.btn-large { padding: 15px 30px; font-size: 1rem; }

/* ===================== Header / Nav ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(15,76,129,0.08);
  border-bottom-color: var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--color-primary-dark);
  flex-shrink: 0;
}

.main-nav ul { display: flex; gap: 32px; }
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--color-primary); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.nav-link:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-quote-big {
  padding: 14px 26px;
  font-size: 1.05rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== Hero ===================== */
.hero {
  /* Solid color sits underneath so the section still looks intentional (a plain
     blue gradient, matching the original design) if hero-bg.jpg hasn't been
     added yet — the background-image layer simply fails to render and the
     gradient shows on its own. On wider screens the photo is anchored to the
     right (see the min-width rule below) with a horizontal fade so it blends
     into the blue behind the text — no hard edge, and it doesn't matter that
     the photo isn't ultra-wide since the fade hides where it "runs out." */
  background-color: var(--color-primary-dark);
  background-image: linear-gradient(160deg, rgba(15, 76, 129, 0.88) 0%, rgba(10, 58, 99, 0.92) 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  text-align: left;
  padding: 100px 0 90px;
}
.hero-inner { display: flex; flex-direction: column; align-items: flex-start; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-primary-light);
  margin: 0 0 14px;
}
.hero .eyebrow { color: #bcd7f0; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  max-width: 820px;
  margin: 0 0 20px;
  line-height: 1.15;
}
.hero-sub {
  font-size: 1rem;
  font-weight: 300;
  max-width: 600px;
  color: #d9e8f6;
  margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-start; }

/* DEMO: full-bleed hero photo on mobile/tablet, with a strong uniform overlay
   for readability (unlike the desktop side-fade, mobile text spans the full
   width so the photo needs to sit dimmed behind everything, not just the left). */
@media (max-width: 1023px) {
  .hero {
    background-image:
      linear-gradient(rgba(10, 58, 99, 0.8), rgba(10, 58, 99, 0.88)),
      url('images/hero/hero-bg.jpg');
    background-size: cover;
    background-position: center;
  }
}

/* The headline's max-width only scales down (to min(820px, 58vw)) at this same
   breakpoint, alongside the photo — that's what keeps it from ever growing wide
   enough to reach the fade zone on medium/wide screens, while leaving mobile and
   tablet (where there's no photo to avoid) free to use the full 820px width. */
@media (min-width: 1024px) {
  .hero h1 { max-width: min(820px, 58vw); }
  .hero {
    background-image:
      linear-gradient(90deg, rgba(10, 58, 99, 1) 0%, rgba(10, 58, 99, 1) 42%, rgba(10, 58, 99, 0.55) 58%, rgba(10, 58, 99, 0) 75%),
      url('images/hero/hero-bg.jpg');
    background-position: left top, right center;
    background-size: 100% 100%, auto 100%;
    background-repeat: no-repeat, no-repeat;
  }
}

/* ===================== Sections ===================== */
.section { padding: 100px 0; }
.section-alt { background: var(--color-bg-alt); }
.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  margin: 0 0 16px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-light);
  max-width: 620px;
  margin: 0 auto 50px;
}
.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ===================== Page header (secondary pages) ===================== */
.page-header {
  padding: 70px 0 30px;
  background: var(--color-bg-alt);
}

/* ===================== Recent Jobs grid ===================== */
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.job-photo-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.job-photo-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.job-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
}

/* ===================== Services ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin: 0 0 10px; font-size: 1.15rem; font-weight: 700; }
.service-card p { margin: 0; color: var(--color-text-light); font-size: 0.95rem; }

/* ===================== Gallery ===================== */
.gallery-category { margin-bottom: 56px; }
.gallery-category:last-child { margin-bottom: 0; }

.gallery-pair-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.gallery-pair-row .gallery-category-half { margin-bottom: 0; }
.gallery-cat-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 22px;
  padding-left: 2px;
  border-left: 4px solid var(--color-primary);
  padding-left: 14px;
}
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.ba-grid-halves { grid-template-columns: 1fr 1fr; gap: 40px; }
.ba-grid-fill { grid-template-columns: 1fr; }

.ba-slider {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.ba-slider-images {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  touch-action: none;
}
.ba-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  -webkit-user-drag: none;
}
.ba-after-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  overflow: hidden;
}
.ba-after-wrap .ba-img { width: var(--ba-img-width, auto); }
.ba-divider {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  pointer-events: none;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute;
  top: 50%; left: 50%;
  width: 38px; height: 38px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.ba-slider-images.dragging .ba-handle {
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: var(--shadow-lg);
}
.ba-handle::before {
  content: '⇔';
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 700;
}
.ba-hint {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(10, 58, 99, 0.72);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.ba-hint.ba-hint-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
}
.ba-range {
  width: 100%;
  margin: 0;
  height: 34px;
  cursor: ew-resize;
  accent-color: var(--color-primary);
}
.ba-tag {
  position: absolute;
  top: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15,76,129,0.85);
  color: #fff;
  z-index: 2;
}
.ba-tag.tag-before { right: 10px; }
.ba-tag.tag-after { left: 10px; }

.single-photo-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  aspect-ratio: 4/3;
}
.single-photo-card img { width: 100%; height: 100%; object-fit: cover; }
.single-photo-label {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(15,76,129,0.85);
  color: #fff;
}

.img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-accent), #dbe9f7);
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}
.img-placeholder svg { width: 32px; height: 32px; opacity: 0.6; }
/* Distinct tints so the before/after reveal is visible even before real photos are dropped in */
.img-placeholder-before { background: linear-gradient(135deg, #e3e7eb, #c7cfd6); color: #4a5560; }
.img-placeholder-after { background: linear-gradient(135deg, #cdeee1, #9fddc8); color: #146c4c; }

/* ===================== Trust / Why Us ===================== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}
.trust-card { text-align: center; padding: 10px; }
.trust-icon {
  width: 60px; height: 60px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 30px; height: 30px; }
.trust-card h3 { margin: 0 0 8px; font-size: 1.05rem; font-weight: 700; }
.trust-card p { margin: 0; color: var(--color-text-light); font-size: 0.9rem; }

/* ===================== Reviews ===================== */
.placeholder-flag {
  color: #b45309;
  background: #fef3c7;
  display: inline-block;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
}
.reviews-carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.carousel-viewport {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.carousel-track {
  display: flex;
  touch-action: pan-y;
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover { background: var(--color-primary); color: #fff; transform: translateY(-2px); }
.carousel-btn:disabled { opacity: 0.4; cursor: default; pointer-events: none; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 44px;
}
.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.carousel-dot:hover { background: var(--color-primary-light); }
.carousel-dot.active { background: var(--color-primary); transform: scale(1.25); }

.review-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: #f5a623; letter-spacing: 2px; margin-bottom: 12px; font-size: 1rem; }
.review-quote { font-size: 0.97rem; color: var(--color-text); margin: 0 0 16px; }
.review-name { margin: 0; font-weight: 600; font-size: 0.9rem; color: var(--color-text-light); }
.placeholder-tag { font-weight: 400; color: #b45309; }
.reviews-cta { text-align: center; }
.placeholder-note {
  margin-top: 10px;
  font-size: 0.8rem;
  color: #b45309;
  font-weight: 600;
}

/* ===================== About ===================== */
.about-inner { max-width: 780px; }
.about-text {
  font-size: 1.05rem;
  color: var(--color-text-light);
  text-align: center;
}

/* ===================== Quote Form ===================== */
.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  padding: 40px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { margin-bottom: 20px; display: flex; flex-direction: column; }
.form-group label { font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; }
.req { color: #d9534f; }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-alt);
  color: var(--color-text);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235b6b7c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
  cursor: pointer;
}
.form-group select option {
  color: var(--color-text);
  background: #fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(15,76,129,0.12);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 2px 0 4px;
}
.checkbox-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  user-select: none;
}
.checkbox-option input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.form-group.invalid .checkbox-group {
  outline: 1px solid #d9534f;
  outline-offset: 6px;
  border-radius: 8px;
}
.error-msg {
  display: none;
  color: #d9534f;
  font-size: 0.8rem;
  margin-top: 6px;
}
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea {
  border-color: #d9534f;
}
.form-group.invalid .error-msg { display: block; }

.btn-submit { width: 100%; margin-top: 8px; }

.form-success, .form-error {
  display: none;
  text-align: center;
  margin: 18px 0 0;
  padding: 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
}
.form-success { background: #e6f4ea; color: #1e7e34; }
.form-error { background: #fbeaea; color: #b02a2a; }
.form-success.show, .form-error.show { display: block; }

/* ===================== Footer ===================== */
.site-footer {
  background: var(--color-primary-dark);
  color: #d9e8f6;
  padding: 56px 0 0;
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-name { font-size: 1.15rem; font-weight: 800; color: #fff; }
.footer-brand p { margin: 8px 0 0; font-size: 0.9rem; color: #a9c3dc; }
.footer-info { text-align: right; }
.footer-phone { font-size: 1.2rem; font-weight: 700; color: #fff; }
.footer-info p { margin: 8px 0; font-size: 0.9rem; color: #a9c3dc; }
.footer-reviews-link { font-size: 0.9rem; font-weight: 600; color: #bcd7f0; border-bottom: 1px solid transparent; }
.footer-reviews-link:hover { border-color: #bcd7f0; }
.footer-email { border-bottom: 1px solid transparent; }
.footer-email:hover { border-color: #a9c3dc; }
.footer-bottom { text-align: center; padding: 22px 0; font-size: 0.82rem; color: #7ea1c2; }

/* ===================== Scroll animation ===================== */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].in-view { opacity: 1; transform: translateY(0); }

/* ===================== Responsive ===================== */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .menu-toggle { display: flex; }
  /* The header CTA is dropped on mobile/tablet purely so the business name
     and hamburger have room to breathe — the hero and quote-form sections
     still carry the "Get a Free Quote" CTA prominently on every screen size. */
  .btn-quote-big { display: none; }

  .main-nav.mobile-open {
    display: block;
    position: absolute;
    top: var(--header-height);
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
  }
  .main-nav.mobile-open ul { flex-direction: column; gap: 0; }
  .main-nav.mobile-open .nav-link {
    display: block;
    padding: 14px 24px;
  }
  .main-nav.mobile-open .nav-link::after { display: none; }

  .gallery-pair-row { grid-template-columns: 1fr; gap: 32px; }
  .ba-grid-halves { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px 20px; }
  .footer-inner { flex-direction: column; text-align: left; }
  .footer-info { text-align: left; }
}

@media (max-width: 560px) {
  .section { padding: 70px 0; }
  .hero { padding: 70px 0 60px; }
  .header-actions { gap: 8px; }
  .btn-large { padding: 13px 20px; }
  .ba-slider-mobile-hide { display: none; }
  .reviews-carousel { gap: 8px; }
  .carousel-btn { width: 36px; height: 36px; }
  .carousel-btn svg { width: 16px; height: 16px; }
  .checkbox-group { flex-direction: column; gap: 14px; }
}

@media (max-width: 480px) {
  .header-actions { gap: 8px; }
  .btn-quote-big { padding: 11px 18px; font-size: 0.95rem; }
}
