.elementor-1199 .elementor-element.elementor-element-6e4e932{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:-0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-90e0c92 *//* ============================================================
   STONECAP MASONRY — Masonry Fireplace Construction Page
   Paste into: Appearance > Customize > Additional CSS
   (or Elementor Site Settings > Custom CSS)

   Scope: all rules prefixed with .sc- so nothing bleeds into
   other pages or the existing Elementor theme styles.
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --sc-red:        #C10100;
  --sc-red-dark:   #9B0000;
  --sc-dark:       #2C2C2C;
  --sc-charcoal:   #3a3a3a;
  --sc-mid:        #4C4C4C;
  --sc-light:      #F7F7F7;
  --sc-cream:      #FFF8ED;
  --sc-white:      #FFFFFF;
  --sc-text:       #333333;
  --sc-muted:      #666666;
  --sc-border:     #E0E0E0;
  --sc-font-head:  'Andada Pro', Georgia, serif;
  --sc-font-body:  'Montserrat', sans-serif;
  --sc-radius:     6px;
  --sc-radius-lg:  12px;
  --sc-shadow:     0 4px 20px rgba(0,0,0,0.10);
  --sc-shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --sc-max:        1140px;
  --sc-gap:        2rem;
}

/* ── RESET / BASE ────────────────────────────────────────────── */
.sc-section *,
.sc-section *::before,
.sc-section *::after {
  box-sizing: border-box;
}

.sc-section {
  padding: 80px 24px;
  font-family: var(--sc-font-body);
  color: var(--sc-text);
  line-height: 1.7;
}

/* Section backgrounds */
.sc-section--light    { background: var(--sc-light); }
.sc-section--white    { background: var(--sc-white); }
.sc-section--cream    { background: var(--sc-cream); }
.sc-section--dark     { background: var(--sc-dark);  color: #e8e8e8; }
.sc-section--charcoal { background: var(--sc-charcoal); color: #e8e8e8; }
.sc-section--red      { background: var(--sc-red);   color: var(--sc-white); }

.sc-container {
  max-width: var(--sc-max);
  margin: 0 auto;
}

/* ── HERO ────────────────────────────────────────────────────── */
.sc-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: url('https://stonecapmasonry.com/wp-content/uploads/2025/11/20241024_151222-scaled.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 100px 24px 80px;
}

.sc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(20, 10, 10, 0.82) 0%,
    rgba(30, 10, 10, 0.65) 55%,
    rgba(0, 0, 0, 0.30) 100%
  );
}

.sc-hero__inner {
  position: relative;
  max-width: var(--sc-max);
  margin: 0 auto;
  width: 100%;
}

.sc-hero__content {
  max-width: 660px;
}

.sc-hero__h1 {
  font-family: var(--sc-font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--sc-white);
  line-height: 1.15;
  margin: 0 0 8px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.sc-hero__sub {
  display: block;
  font-size: 0.72em;
  font-weight: 400;
  color: rgba(255,255,255,0.80);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

/* ── TRUST BAR ───────────────────────────────────────────────── */
.sc-trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 22px 0 28px;
}

.sc-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.90);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sc-trust-bar__item svg {
  width: 16px;
  height: 16px;
  color: var(--sc-red);
  flex-shrink: 0;
  background: var(--sc-white);
  border-radius: 50%;
  padding: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.sc-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sc-btn {
  display: inline-block;
  font-family: var(--sc-font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--sc-radius);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1;
}

.sc-btn:hover { transform: translateY(-2px); }

.sc-btn--primary {
  background: var(--sc-red);
  color: var(--sc-white);
  border-color: var(--sc-red);
}
.sc-btn--primary:hover {
  background: var(--sc-red-dark);
  border-color: var(--sc-red-dark);
  box-shadow: 0 6px 20px rgba(193,1,0,0.35);
}

.sc-btn--outline {
  background: transparent;
  color: var(--sc-white);
  border-color: rgba(255,255,255,0.65);
}
.sc-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--sc-white);
}

.sc-btn--white {
  background: var(--sc-white);
  color: var(--sc-red);
  border-color: var(--sc-white);
}
.sc-btn--white:hover {
  background: #f0f0f0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.sc-btn--outline-light {
  background: transparent;
  color: var(--sc-white);
  border-color: rgba(255,255,255,0.60);
}
.sc-btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--sc-white);
}

/* ── TYPOGRAPHY HELPERS ──────────────────────────────────────── */
.sc-h2 {
  font-family: var(--sc-font-head);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--sc-dark);
  margin: 0 0 16px;
  line-height: 1.2;
}
.sc-h2--light { color: var(--sc-white); }

.sc-accent       { color: var(--sc-red); }
.sc-accent--light { color: rgba(255,255,255,0.90); }

.sc-divider {
  width: 56px;
  height: 3px;
  background: var(--sc-red);
  margin: 0 auto 28px;
  border-radius: 2px;
}
.sc-divider--left { margin-left: 0; }

.sc-lead {
  font-size: 1.05rem;
  color: var(--sc-mid);
  max-width: 760px;
  margin: 0 auto 0;
}

.sc-section--dark  .sc-lead,
.sc-section--charcoal .sc-lead { color: #c8c8c8; }

.sc-section-header {
  text-align: center;
  margin-bottom: 48px;
}

.sc-center { text-align: center; margin-top: 32px; }

/* ── SERVICES GRID ───────────────────────────────────────────── */
.sc-service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sc-service-card {
  background: var(--sc-white);
  border-radius: var(--sc-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--sc-shadow);
  border-top: 3px solid var(--sc-red);
  transition: box-shadow 0.2s, transform 0.2s;
}
.sc-service-card:hover {
  box-shadow: var(--sc-shadow-lg);
  transform: translateY(-3px);
}

.sc-service-card__icon {
  width: 48px;
  height: 48px;
  background: rgba(193,1,0,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.sc-service-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--sc-red);
}

.sc-service-card__title {
  font-family: var(--sc-font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sc-dark);
  margin: 0 0 10px;
}

.sc-service-card__text {
  font-size: 0.9rem;
  color: var(--sc-muted);
  margin: 0;
  line-height: 1.65;
}

/* ── TWO COLUMN LAYOUT ───────────────────────────────────────── */
.sc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sc-two-col__img {
  position: relative;
}

.sc-img-rounded {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--sc-radius-lg);
  box-shadow: var(--sc-shadow-lg);
  display: block;
}

.sc-two-col__text p {
  color: #cccccc;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

/* License badge */
.sc-license-badge {
  display: inline-flex;
  flex-direction: column;
  background: rgba(193,1,0,0.18);
  border: 1px solid rgba(193,1,0,0.5);
  border-radius: var(--sc-radius);
  padding: 12px 18px;
  margin-top: 8px;
}
.sc-license-badge__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 4px;
}
.sc-license-badge__number {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sc-white);
}

/* ── REGULATORY SECTION ──────────────────────────────────────── */
.sc-reg-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.sc-reg-body p {
  color: var(--sc-mid);
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.sc-reg-callout {
  background: var(--sc-white);
  border-left: 4px solid var(--sc-red);
  border-radius: 0 var(--sc-radius-lg) var(--sc-radius-lg) 0;
  padding: 28px 28px 28px 24px;
  box-shadow: var(--sc-shadow);
}
.sc-reg-callout__icon {
  width: 40px;
  height: 40px;
  background: rgba(193,1,0,0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sc-reg-callout__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sc-red);
}
.sc-reg-callout__title {
  font-family: var(--sc-font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--sc-dark);
  margin: 0 0 10px;
}
.sc-reg-callout__text {
  font-size: 0.875rem;
  color: var(--sc-mid);
  line-height: 1.7;
  margin: 0;
  font-style: italic;
}

/* ── COMPARISON TABLE ────────────────────────────────────────── */
.sc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--sc-radius-lg);
  box-shadow: var(--sc-shadow);
}

.sc-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--sc-white);
}

.sc-compare-table thead tr {
  background: var(--sc-dark);
}
.sc-compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  color: var(--sc-white);
  font-family: var(--sc-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}
.sc-compare-table thead th:first-child {
  border-radius: var(--sc-radius-lg) 0 0 0;
}
.sc-compare-table thead th:last-child {
  border-radius: 0 var(--sc-radius-lg) 0 0;
}

.sc-compare-table tbody tr:nth-child(odd)  { background: var(--sc-white); }
.sc-compare-table tbody tr:nth-child(even) { background: var(--sc-light); }
.sc-compare-table tbody tr:hover          { background: #f0e8e8; }

.sc-compare-table tbody td {
  padding: 14px 20px;
  color: var(--sc-text);
  border-bottom: 1px solid var(--sc-border);
  line-height: 1.5;
}
.sc-compare-table tbody td:first-child {
  font-weight: 600;
  color: var(--sc-dark);
  white-space: nowrap;
}
.sc-compare-table tbody tr:last-child td { border-bottom: none; }

/* ── GALLERY ─────────────────────────────────────────────────── */
.sc-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.sc-gallery__item {
  overflow: hidden;
  border-radius: var(--sc-radius);
  aspect-ratio: 4/3;
}
.sc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.sc-gallery__item:hover img {
  transform: scale(1.05);
}

/* ── REVIEW CARDS ────────────────────────────────────────────── */
.sc-reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.sc-review-card {
  background: var(--sc-white);
  border-radius: var(--sc-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--sc-shadow);
  border-top: 3px solid var(--sc-red);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sc-review-card__stars {
  font-size: 1.2rem;
  color: #F59E0B;
  letter-spacing: 2px;
}

.sc-review-card__quote {
  font-size: 0.92rem;
  color: var(--sc-mid);
  line-height: 1.7;
  font-style: italic;
  margin: 0;
  flex: 1;
}

.sc-review-card__cite {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--sc-dark);
  font-style: normal;
  letter-spacing: 0.02em;
}

/* ── SERVICE AREA ────────────────────────────────────────────── */
.sc-area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.sc-area-chip {
  background: var(--sc-white);
  border: 1px solid var(--sc-border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--sc-dark);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.sc-area-note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--sc-muted);
  margin: 0;
}
.sc-area-note a {
  color: var(--sc-red);
  font-weight: 600;
  text-decoration: none;
}
.sc-area-note a:hover { text-decoration: underline; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.sc-faq-wrap { max-width: 820px; }

.sc-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sc-faq__item {
  background: var(--sc-white);
  border-radius: var(--sc-radius);
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  border: 1px solid var(--sc-border);
}

.sc-faq__q {
  font-family: var(--sc-font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--sc-dark);
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.15s;
}
.sc-faq__q::-webkit-details-marker { display: none; }
.sc-faq__q::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--sc-red);
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s;
}
.sc-faq__item[open] > .sc-faq__q {
  background: rgba(193,1,0,0.04);
}
.sc-faq__item[open] > .sc-faq__q::after {
  transform: rotate(45deg);
}

.sc-faq__a {
  padding: 0 24px 20px;
  border-top: 1px solid var(--sc-border);
}
.sc-faq__a p {
  font-size: 0.92rem;
  color: var(--sc-muted);
  margin: 16px 0 0;
  line-height: 1.75;
}

/* ── CLOSING CTA ─────────────────────────────────────────────── */
.sc-cta-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.sc-cta-section__text h2 { margin-bottom: 12px; }
.sc-cta-section__text p  {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin: 0;
}

.sc-cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 220px;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .sc-two-col      { grid-template-columns: 1fr; gap: 32px; }
  .sc-reg-layout   { grid-template-columns: 1fr; gap: 28px; }
  .sc-gallery      { grid-template-columns: repeat(2, 1fr); }
  .sc-cta-section  { grid-template-columns: 1fr; gap: 28px; }
  .sc-cta-section__actions { flex-direction: row; min-width: unset; }
}

@media (max-width: 600px) {
  .sc-section       { padding: 56px 18px; }
  .sc-hero          { padding: 80px 18px 60px; min-height: 420px; }
  .sc-gallery       { grid-template-columns: 1fr 1fr; }
  .sc-service-grid  { grid-template-columns: 1fr; }
  .sc-trust-bar     { gap: 8px; }
  .sc-cta-row       { flex-direction: column; }
  .sc-cta-section__actions { flex-direction: column; }
  .sc-img-rounded   { height: 300px; }
  .sc-compare-table { font-size: 0.82rem; }
  .sc-compare-table thead th,
  .sc-compare-table tbody td { padding: 10px 12px; }
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sc-btn,
  .sc-service-card,
  .sc-gallery__item img { transition: none; }
}/* End custom CSS */