/* The Barbería Shop — Header / Footer / Elementor integration layer.
   Loaded after design.css. Makes the brand look win over Elementor's defaults. */

/* ---- Global base ---- */
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body a { color: inherit; }

/* Make sure Elementor headings use the display face & brand color by default */
.elementor-widget-heading .elementor-heading-title { font-family: var(--f-display); color: var(--c-ink); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.elementor-section.tbs-section-dark .elementor-heading-title,
.elementor-section.tbs-section-green .elementor-heading-title,
.tbs-section-dark .elementor-heading-title { color: var(--c-cream); }
.elementor-widget-text-editor { font-family: var(--f-body); }

/* Buttons rendered by Elementor inherit our pill style when given tbs classes */
.elementor-button.btn-gold { background: var(--c-gold); color: var(--c-ink); }
.elementor-button.btn-gold:hover { background: var(--c-gold-2); }

/* ===================== HEADER ===================== */
.tbs-site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s var(--ease);
  color: var(--c-cream);
}
.admin-bar .tbs-site-header { top: 32px; }
.tbs-site-header.solid {
  background: rgba(26, 29, 33, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 32px;
  border-bottom: 1px solid var(--c-line-dark);
}
.tbs-site-header .nav-left, .tbs-site-header .nav-right { display: flex; align-items: center; gap: 36px; flex: 1; }
.tbs-site-header .nav-right { justify-content: flex-end; }
.tbs-site-header .brand {
  font-family: var(--f-display); font-size: 22px; font-weight: 500; font-style: italic;
  letter-spacing: -0.01em; display: flex; align-items: center; gap: 10px; color: var(--c-cream);
  white-space: nowrap;
}
.tbs-site-header .brand .mark {
  width: 36px; height: 36px; border-radius: 50%; border: 1.5px solid var(--c-gold);
  display: grid; place-items: center; font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--c-gold); font-family: var(--f-body); font-style: normal; background: rgba(191, 148, 86, 0.06);
}
.tbs-nav { display: flex; align-items: center; gap: 36px; list-style: none; margin: 0; padding: 0; }
.tbs-nav a, .tbs-site-header .nav-link {
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  position: relative; padding: 4px 0; color: var(--c-cream); transition: color .2s var(--ease);
}
.tbs-nav a::after, .tbs-site-header .nav-link::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 1px; width: 0;
  background: var(--c-gold); transition: width .3s var(--ease);
}
.tbs-nav a:hover, .tbs-nav .current-menu-item > a, .tbs-site-header .nav-link:hover { color: var(--c-gold); }
.tbs-nav a:hover::after, .tbs-nav .current-menu-item > a::after { width: 100%; }
.tbs-nav .sub-menu { display: none; position: absolute; top: 100%; left: 0; background: rgba(26,29,33,0.98); padding: 12px 0; min-width: 200px; }
.tbs-nav li { position: relative; }
.tbs-nav li:hover > .sub-menu { display: block; }
.tbs-nav .sub-menu a { display: block; padding: 8px 20px; }

.header-icons { display: inline-flex; gap: 14px; align-items: center; color: var(--c-cream); }
.header-icons a { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; transition: color .2s; color: var(--c-cream); }
.header-icons a:hover { color: var(--c-gold); }

.tbs-site-header .btn { padding: 13px 26px; }

.mobile-toggle { display: none; width: 40px; height: 40px; flex-direction: column; gap: 5px; align-items: center; justify-content: center; color: var(--c-cream); background: none; border: 0; }
.mobile-toggle span { width: 22px; height: 1.5px; background: currentColor; transition: all .3s var(--ease); }

/* Mobile nav drawer */
@media (max-width: 980px) {
  .tbs-site-header .nav-left, .tbs-site-header .nav-right .tbs-nav,
  .tbs-site-header .header-icons { display: none; }
  .mobile-toggle { display: flex; }
  .tbs-site-header.menu-open {
    flex-wrap: wrap; background: rgba(26,29,33,0.98); align-items: flex-start;
  }
  .tbs-site-header.menu-open .nav-left {
    display: flex; flex-direction: column; gap: 18px; width: 100%;
    order: 4; padding: 24px 0 12px; align-items: flex-start;
  }
  .tbs-site-header.menu-open .nav-left .tbs-nav { flex-direction: column; gap: 18px; align-items: flex-start; }
}

/* ===================== FOOTER ===================== */
.tbs-site-footer { background: var(--c-ink); color: var(--c-cream); padding: 96px 0 40px; }
.tbs-site-footer .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px; padding-bottom: 56px; border-bottom: 1px solid var(--c-line-dark); }
.tbs-site-footer .brand-block .brand-mark {
  width: 72px; height: 72px; border-radius: 50%; border: 1.5px solid var(--c-gold);
  display: grid; place-items: center; font-size: 14px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--c-gold); font-family: var(--f-body); background: rgba(191,148,86,0.06); margin-bottom: 24px;
}
.tbs-site-footer .brand-block .brand-name { font-family: var(--f-display); font-style: italic; font-size: 28px; margin-bottom: 12px; color: var(--c-cream); }
.tbs-site-footer .brand-block p { color: rgba(245,241,234,0.6); font-size: 15px; line-height: 1.7; max-width: 320px; }
.tbs-site-footer h4 { font-family: var(--f-body); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--c-gold); margin: 0 0 20px; font-weight: 600; }
.tbs-site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.tbs-site-footer ul a, .tbs-site-footer .col-text { font-size: 14px; color: rgba(245,241,234,0.7); transition: color .2s var(--ease); }
.tbs-site-footer ul a:hover { color: var(--c-gold); }
.tbs-site-footer .hours-row { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; color: rgba(245,241,234,0.7); border-bottom: 1px dashed var(--c-line-dark); padding-bottom: 8px; }
.tbs-site-footer .hours-row:last-child { border-bottom: 0; }
.tbs-site-footer .footer-bottom { margin-top: 36px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: rgba(245,241,234,0.5); }
.tbs-site-footer .footer-bottom .policies { display: flex; gap: 24px; flex-wrap: wrap; }
.tbs-site-footer .footer-bottom .policies a { color: rgba(245,241,234,0.5); }
.tbs-site-footer .footer-bottom .policies a:hover { color: var(--c-gold); }
@media (max-width: 980px) { .tbs-site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .tbs-site-footer .footer-grid { grid-template-columns: 1fr; } }

/* ===================== Elementor canvas tweaks ===================== */
/* Remove default content padding so full-bleed sections work edge-to-edge */
.tbs-elementor-page .elementor-section.elementor-section-boxed > .elementor-container { max-width: var(--container); }
.elementor-widget-container .divider-orn { margin-top: 12px; }

/* ---- Elementor widget → brand mapping ---- */
/* Buttons */
.elementor-element.tbs-btn-gold .elementor-button,
.elementor-element.tbs-btn-ghost .elementor-button,
.elementor-element.tbs-btn-ink .elementor-button,
.elementor-element.tbs-btn-outline-gold .elementor-button {
  font-family: var(--f-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; border-radius: 0;
  padding: 16px 32px; border: 1px solid transparent; transition: all .3s var(--ease);
}
.elementor-element.tbs-btn-gold .elementor-button { background: var(--c-gold); color: var(--c-ink); }
.elementor-element.tbs-btn-gold .elementor-button:hover { background: var(--c-gold-2); transform: translateY(-2px); }
.elementor-element.tbs-btn-ink .elementor-button { background: var(--c-ink); color: var(--c-cream); }
.elementor-element.tbs-btn-ink .elementor-button:hover { background: var(--c-ink-2); }
.elementor-element.tbs-btn-ghost .elementor-button { background: transparent; color: var(--c-ink); border-color: var(--c-line); }
.elementor-element.tbs-btn-ghost .elementor-button:hover { border-color: var(--c-ink); }
.elementor-element.tbs-btn-outline-gold .elementor-button { background: transparent; color: var(--c-gold); border-color: var(--c-gold); }
.elementor-element.tbs-btn-outline-gold .elementor-button:hover { background: var(--c-gold); color: var(--c-ink); }
.tbs-section-dark .elementor-element.tbs-btn-ghost .elementor-button { color: var(--c-cream); border-color: var(--c-line-dark); }

/* Headings tinted for dark sections */
.elementor-element.tbs-h-cream .elementor-heading-title { color: var(--c-cream); }
.elementor-element.tbs-h-gold .elementor-heading-title { color: var(--c-gold); }
.elementor-element.tbs-h-italic .elementor-heading-title { font-style: italic; font-weight: 400; }

/* Eyebrow as a heading/text */
.elementor-element.tbs-eyebrow .elementor-heading-title,
.elementor-element.tbs-eyebrow .elementor-text-editor {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 11px; font-weight: 500; color: var(--c-gold);
}

/* Lead paragraph on dark hero */
.tbs-section-dark .elementor-widget-text-editor { color: rgba(245,241,234,0.78); }

/* ====================================================================
   NATIVE ELEMENTOR COMPONENTS (so widgets look like the brand design)
   ==================================================================== */

/* Dark / gold / green section helpers (applied via section CSS classes) */
.elementor-section.tbs-dark, .tbs-dark { background: var(--c-ink); color: var(--c-cream); }
.tbs-dark .elementor-heading-title { color: var(--c-cream); }
.tbs-dark .elementor-widget-text-editor, .tbs-dark .elementor-widget-text-editor p { color: rgba(245,241,234,0.75); }
.elementor-section.tbs-cream { background: var(--c-cream); }
.elementor-section.tbs-gold { background: var(--c-gold); }
.tbs-gold .elementor-heading-title { color: var(--c-ink); }
.tbs-gold .elementor-widget-text-editor, .tbs-gold .elementor-widget-text-editor p { color: rgba(26,29,33,0.78); }

/* Eyebrow (a heading widget with .tbs-eyebrow) */
.tbs-eyebrow .elementor-heading-title {
  font-family: var(--f-body); text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 11px; font-weight: 600; color: var(--c-gold);
}
.tbs-eyebrow.tbs-center .elementor-heading-title { display: inline-flex; align-items: center; gap: 12px; }
.tbs-eyebrow.tbs-center .elementor-heading-title::before,
.tbs-eyebrow.tbs-center .elementor-heading-title::after { content: ""; width: 24px; height: 1px; background: var(--c-gold); }

/* Ornament (✦ ✦ ✦) */
.tbs-ornament .elementor-text-editor { color: var(--c-gold); letter-spacing: 8px; font-size: 12px; }

/* Sub paragraph under section heads */
.tbs-sub .elementor-text-editor { color: rgba(26,29,33,0.7); font-size: 17px; max-width: 620px; margin: 0 auto; }
.tbs-sub-dark .elementor-text-editor { color: rgba(245,241,234,0.7); font-size: 17px; max-width: 620px; margin: 0 auto; }

/* Heading tints */
.tbs-h-cream .elementor-heading-title { color: var(--c-cream); }
.tbs-h-gold  .elementor-heading-title { color: var(--c-gold); }
.tbs-h-italic .elementor-heading-title { font-style: italic; font-weight: 400; }

/* Hero (native) */
.tbs-hero-native { position: relative; }
.tbs-hero-native .lead .elementor-text-editor { font-size: 18px; color: rgba(245,241,234,0.78); }
.hero-card { border: 1px solid var(--c-line-dark); padding: 26px; background: rgba(245,241,234,0.03); margin-bottom: 16px; }
.hero-card .elementor-widget { margin-bottom: 6px; }
.hero-card-label .elementor-text-editor { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); }
.hero-card-value .elementor-heading-title { font-family: var(--f-display); font-size: 22px; font-style: italic; color: var(--c-cream); }
.hero-card-meta .elementor-text-editor { font-size: 13px; color: rgba(245,241,234,0.55); }

/* Stats (native, 4 columns) */
.tbs-stat-n .elementor-heading-title { font-family: var(--f-display); font-size: 40px; font-style: italic; color: var(--c-gold); line-height: 1; }
.tbs-stat-l .elementor-text-editor { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(26,29,33,0.6); }

/* Barber card (native: image + texts in a column) */
.tbs-barber-card { background: #fff; padding-bottom: 28px; height: 100%; }
.tbs-barber-card .elementor-widget-image,
.tbs-barber-card .elementor-widget-image img { width: 100%; display: block; }
.tbs-barber-card .elementor-widget-image img { aspect-ratio: 3/4; object-fit: cover; }
.tbs-barber-name .elementor-heading-title { font-size: 28px; }
.tbs-barber-role .elementor-text-editor { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--c-gold); text-align: center; }
.tbs-barber-spec .elementor-text-editor { font-size: 14px; color: rgba(26,29,33,0.65); text-align: center; }
.tbs-barber-card .elementor-widget-heading { text-align: center; }

/* Testimonials (native) on dark section */
.tbs-dark .elementor-widget-testimonial .elementor-testimonial-content { font-family: var(--f-display); font-style: italic; color: var(--c-cream); font-size: 18px; line-height: 1.5; }
.tbs-dark .elementor-widget-testimonial .elementor-testimonial-name { color: var(--c-cream); font-weight: 600; }
.tbs-dark .elementor-widget-testimonial .elementor-testimonial-job { color: rgba(245,241,234,0.5); }
.tbs-review-card .elementor-widget-testimonial { border: 1px solid var(--c-line-dark); padding: 28px; height: 100%; }

/* Accordion (services / FAQ) */
.elementor-accordion .elementor-tab-title { font-family: var(--f-display); font-weight: 500; }
.elementor-accordion .elementor-tab-title.elementor-active { color: var(--c-gold); }
.elementor-accordion .elementor-tab-title .elementor-accordion-icon { color: var(--c-gold); }

/* Icon list (service includes) */
.elementor-widget-icon-list .elementor-icon-list-icon i { color: var(--c-gold); }

/* Brand marks row */
.tbs-brand .elementor-heading-title { font-family: var(--f-display); font-style: italic; font-size: 22px; color: rgba(26,29,33,0.45); text-align: center; }

/* Price tag heading */
.tbs-price .elementor-heading-title { font-family: var(--f-display); font-style: italic; color: var(--c-gold); }

/* Contact info (native) */
.tbs-info-label .elementor-text-editor { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--c-gold); font-weight: 600; }
.tbs-info-value .elementor-heading-title { font-family: var(--f-display); font-style: italic; font-size: 24px; color: var(--c-ink); }

/* Page hero (services/barbers/contact) native */
.tbs-page-hero { position: relative; }
.tbs-page-hero .elementor-heading-title em { color: var(--c-gold); font-style: italic; }
.tbs-breadcrumb .elementor-text-editor { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(245,241,234,0.5); }

/* Booking modal */
.tbs-booking-overlay { position: fixed; inset: 0; background: rgba(26,29,33,0.85); z-index: 2000; display: none; place-items: center; padding: 24px; backdrop-filter: blur(8px); }
.tbs-booking-overlay.open { display: grid; }
.tbs-booking-modal { background: var(--c-paper); max-width: 480px; width: 100%; padding: 48px; text-align: center; }
.tbs-booking-modal h3 { margin: 0 0 16px; }
.tbs-booking-modal p { color: rgba(26,29,33,0.65); margin-bottom: 28px; }

/* ====================================================================
   PREDOMINANCE LAYER
   These rules are scoped to body.tbs and use !important so the BRAND look
   always wins over Elementor's own widget styles. Only elements that carry a
   .tbs-* utility class (or the brand typefaces) are forced — plain widgets you
   add later stay 100% editable in Elementor. The values all come from the theme
   tokens (which themselves read the Elementor global colors), so changing a
   Global Color/Font in Elementor still cascades everywhere.
   ==================================================================== */

/* Brand typefaces always win (font family rarely edited per element; if changed
   via Global Fonts it flows through the token). */
body.tbs,
body.tbs .elementor-widget-text-editor,
body.tbs .elementor-widget-text-editor p,
body.tbs .elementor-button,
body.tbs input, body.tbs textarea, body.tbs select {
  font-family: var(--f-body) !important;
}
body.tbs h1, body.tbs h2, body.tbs h3, body.tbs h4,
body.tbs .elementor-heading-title,
body.tbs .elementor-accordion .elementor-tab-title,
body.tbs .elementor-testimonial-content {
  font-family: var(--f-display) !important;
}

/* Section background helpers win over Elementor section defaults */
body.tbs .elementor-section.tbs-dark,
body.tbs .elementor-element.tbs-dark { background-color: var(--c-ink) !important; color: var(--c-cream) !important; }
body.tbs .elementor-section.tbs-cream,
body.tbs .elementor-element.tbs-cream { background-color: var(--c-cream) !important; }
body.tbs .elementor-section.tbs-gold,
body.tbs .elementor-element.tbs-gold  { background-color: var(--c-gold) !important; }

/* Heading / text color utilities */
body.tbs .tbs-h-cream .elementor-heading-title { color: var(--c-cream) !important; }
body.tbs .tbs-h-gold  .elementor-heading-title { color: var(--c-gold)  !important; }
body.tbs .tbs-h-italic .elementor-heading-title { font-style: italic !important; font-weight: 400 !important; }
body.tbs .tbs-dark .elementor-heading-title { color: var(--c-cream) !important; }
body.tbs .tbs-gold .elementor-heading-title { color: var(--c-ink) !important; }

/* Eyebrow */
body.tbs .tbs-eyebrow .elementor-heading-title {
  font-family: var(--f-body) !important; text-transform: uppercase !important;
  letter-spacing: 0.22em !important; font-size: 11px !important; font-weight: 600 !important;
  color: var(--c-gold) !important;
}

/* Ornament + subs */
body.tbs .tbs-ornament .elementor-text-editor { color: var(--c-gold) !important; letter-spacing: 8px !important; }
body.tbs .tbs-sub .elementor-text-editor { color: rgba(26,29,33,0.7) !important; }
body.tbs .tbs-sub-dark .elementor-text-editor { color: rgba(245,241,234,0.72) !important; }

/* Buttons — brand pill styles always win over Elementor button skin */
body.tbs .tbs-btn-gold .elementor-button,
body.tbs .tbs-btn-ink .elementor-button,
body.tbs .tbs-btn-ghost .elementor-button,
body.tbs .tbs-btn-outline-gold .elementor-button {
  font-family: var(--f-body) !important; font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important; border-radius: 0 !important;
  padding: 16px 32px !important; border: 1px solid transparent !important; transition: all .3s var(--ease) !important;
}
body.tbs .tbs-btn-gold .elementor-button { background-color: var(--c-gold) !important; color: var(--c-ink) !important; }
body.tbs .tbs-btn-gold .elementor-button:hover { background-color: var(--c-gold-2) !important; }
body.tbs .tbs-btn-ink .elementor-button { background-color: var(--c-ink) !important; color: var(--c-cream) !important; }
body.tbs .tbs-btn-ink .elementor-button:hover { background-color: var(--c-ink-2) !important; }
body.tbs .tbs-btn-ghost .elementor-button { background-color: transparent !important; color: var(--c-ink) !important; border-color: var(--c-line) !important; }
body.tbs .tbs-dark .tbs-btn-ghost .elementor-button { color: var(--c-cream) !important; border-color: var(--c-line-dark) !important; }
body.tbs .tbs-btn-ghost .elementor-button:hover { border-color: currentColor !important; }
body.tbs .tbs-btn-outline-gold .elementor-button { background-color: transparent !important; color: var(--c-gold) !important; border-color: var(--c-gold) !important; }
body.tbs .tbs-btn-outline-gold .elementor-button:hover { background-color: var(--c-gold) !important; color: var(--c-ink) !important; }

/* Stat / barber / price / info / brand helpers */
body.tbs .tbs-stat-n .elementor-heading-title { color: var(--c-gold) !important; font-style: italic !important; }
body.tbs .tbs-barber-role .elementor-text-editor { color: var(--c-gold) !important; }
body.tbs .tbs-price .elementor-heading-title { color: var(--c-gold) !important; font-style: italic !important; }
body.tbs .tbs-info-label .elementor-text-editor { color: var(--c-gold) !important; }
body.tbs .tbs-info-value .elementor-heading-title { color: var(--c-ink) !important; font-style: italic !important; }
body.tbs .tbs-brand .elementor-heading-title { color: rgba(26,29,33,0.45) !important; font-style: italic !important; }

/* Accordion + icon list accents */
body.tbs .elementor-accordion .elementor-tab-title.elementor-active,
body.tbs .elementor-accordion .elementor-tab-title .elementor-accordion-icon { color: var(--c-gold) !important; }
body.tbs .elementor-widget-icon-list .elementor-icon-list-icon i,
body.tbs .elementor-widget-icon-list .elementor-icon-list-icon svg { color: var(--c-gold) !important; fill: var(--c-gold) !important; }

/* Prevent Font Awesome inline SVGs from rendering at their natural huge dimensions.
   Elementor's per-post CSS uses font-size for icon size, but inline SVGs ignore it.
   This clamps SVG icons to the CSS variable Elementor sets (or 1em as fallback). */
body.tbs .elementor-widget-icon-list .elementor-icon-list-icon svg {
    width: var(--e-icon-list-icon-size, 1em) !important;
    height: var(--e-icon-list-icon-size, 1em) !important;
    max-width: 1.2em;
    max-height: 1.2em;
}

/* Testimonials on dark sections */
body.tbs .tbs-dark .elementor-testimonial-content { color: var(--c-cream) !important; font-style: italic !important; }
body.tbs .tbs-dark .elementor-testimonial-name { color: var(--c-cream) !important; }
body.tbs .tbs-dark .elementor-testimonial-job { color: rgba(245,241,234,0.5) !important; }

/* ====================================================================
   ROUND-2 FIXES (do not change the rules above; only extend/strengthen)
   ==================================================================== */

/* Ink heading utility — e.g. the CTA title on the gold strip (was invisible in
   the Elementor editor because it fell back to the gold global color). */
body.tbs .tbs-h-ink .elementor-heading-title { color: var(--c-ink) !important; }

/* Sub paragraph + ornament on dark/overlay sections: force readable colors
   regardless of Elementor's inner markup (container / text-editor / p). */
body.tbs .tbs-sub-dark,
body.tbs .tbs-sub-dark .elementor-widget-container,
body.tbs .tbs-sub-dark .elementor-text-editor,
body.tbs .tbs-sub-dark p { color: rgba(245,241,234,0.82) !important; }
body.tbs .tbs-ornament,
body.tbs .tbs-ornament .elementor-widget-container,
body.tbs .tbs-ornament .elementor-text-editor,
body.tbs .tbs-ornament p { color: var(--c-gold) !important; }

/* Testimonials — robust against BOTH the classic markup (-content/-name/-job)
   and the newer BEM markup (__text/__name/__title). Anchored on .tbs-review-card
   (always present on the column) AND the dark section, so the quote reads white. */
body.tbs .tbs-review-card .elementor-testimonial-content,
body.tbs .tbs-review-card .elementor-testimonial__text,
body.tbs .tbs-dark .elementor-testimonial-content,
body.tbs .tbs-dark .elementor-testimonial__text {
  color: var(--c-cream) !important; font-style: italic !important;
}
body.tbs .tbs-review-card .elementor-testimonial-name,
body.tbs .tbs-review-card .elementor-testimonial__name,
body.tbs .tbs-dark .elementor-testimonial-name,
body.tbs .tbs-dark .elementor-testimonial__name { color: var(--c-cream) !important; }
body.tbs .tbs-review-card .elementor-testimonial-job,
body.tbs .tbs-review-card .elementor-testimonial__title,
body.tbs .tbs-dark .elementor-testimonial-job,
body.tbs .tbs-dark .elementor-testimonial__title { color: rgba(245,241,234,0.55) !important; }

/* ---- Header & footer Elementor templates: full-bleed ----
   Elementor's default section/column padding left a cream frame around the dark
   footer and an empty strip above the fixed header. Zero it so they fill edge
   to edge and the header section reserves no flow height. */
body .tbs-hf,
body .tbs-hf > .elementor-container,
body .tbs-hf > .elementor-container > .elementor-column,
body .tbs-hf .elementor-column-wrap,
body .tbs-hf .elementor-widget-wrap,
body .tbs-hf .elementor-widget { padding: 0 !important; margin: 0 !important; }
body .tbs-hf-header,
body .tbs-hf-header > .elementor-container { min-height: 0 !important; }

/* ---- Nested accordion (services / FAQ) — brand styling ---- */
body.tbs .elementor-widget-nested-accordion .e-n-accordion-item-title {
  font-family: var(--f-display) !important; font-weight: 500 !important;
  font-size: 22px !important; color: var(--c-ink) !important;
  border-top: 1px solid var(--c-line); padding: 22px 4px;
}
body.tbs .elementor-widget-nested-accordion details[open] > .e-n-accordion-item-title,
body.tbs .elementor-widget-nested-accordion .e-n-accordion-item-title:hover { color: var(--c-gold) !important; }
body.tbs .elementor-widget-nested-accordion .e-n-accordion-item-title-icon,
body.tbs .elementor-widget-nested-accordion .e-n-accordion-item-title-icon svg { color: var(--c-gold) !important; fill: var(--c-gold) !important; }
body.tbs .elementor-widget-nested-accordion .e-n-accordion-item:last-child .e-n-accordion-item-title { border-bottom: 1px solid var(--c-line); }
/* service "30 min" meta line */
body.tbs .tbs-svc-time, body.tbs .tbs-svc-time .elementor-text-editor {
  color: var(--c-gold) !important; text-transform: uppercase; letter-spacing: 0.1em; font-size: 12px;
}

/* ---- Testimonials: bullet-proof brand colors on the dark reviews band ---- */
body.tbs .tbs-review .elementor-testimonial-content,
body.tbs .tbs-review .elementor-testimonial__text,
body.tbs .tbs-review .elementor-testimonial-text {
  color: var(--c-cream) !important; font-family: var(--f-display) !important; font-style: italic !important;
}
body.tbs .tbs-review .elementor-testimonial-name,
body.tbs .tbs-review .elementor-testimonial__name { color: var(--c-cream) !important; }
body.tbs .tbs-review .elementor-testimonial-job,
body.tbs .tbs-review .elementor-testimonial__title { color: var(--c-gold) !important; }

/* ---- Contact Form 7 — brand styling (scoped by body.tbs, not the column class) ---- */
body.tbs .wpcf7-form p { margin: 0 0 20px; }
body.tbs .wpcf7-form label {
  display: block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(26,29,33,0.7); font-weight: 600;
}
body.tbs .wpcf7-form input[type="text"],
body.tbs .wpcf7-form input[type="email"],
body.tbs .wpcf7-form input[type="tel"],
body.tbs .wpcf7-form textarea {
  width: 100%; padding: 14px 0; border: 0; border-bottom: 1px solid var(--c-line);
  background: transparent; font-family: var(--f-body); font-size: 15px; color: var(--c-ink); margin-top: 8px;
}
body.tbs .wpcf7-form input:focus,
body.tbs .wpcf7-form textarea:focus { outline: 0; border-bottom-color: var(--c-gold); }
body.tbs .wpcf7-form textarea { resize: vertical; min-height: 100px; }
body.tbs .wpcf7-form .wpcf7-submit {
  background: var(--c-gold) !important; color: var(--c-ink) !important; border: 0 !important;
  font-family: var(--f-body) !important; font-size: 12px !important; font-weight: 600 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important; padding: 16px 32px !important;
  width: 100%; margin-top: 12px; cursor: pointer; border-radius: 0 !important; transition: background .3s var(--ease);
}
body.tbs .wpcf7-form .wpcf7-submit:hover { background: var(--c-gold-2) !important; }
body.tbs .wpcf7 .wpcf7-response-output {
  border-color: var(--c-gold) !important; color: var(--c-ink); margin: 16px 0 0 !important;
}
/* wrap CF7 in the white card look like the native form */
body.tbs .tbs-contact-card { background: #fff; padding: 48px; border: 1px solid var(--c-line); }
