/* PATTERN SCOPE: reusable component patterns are scoped to .tol-site (added to every page via functions.php body_class) as of the 2026-07-01 pattern-scoping refactor. Page-specific one-offs remain .page-id-N. */
/* =====================================================================
   THE ORCHID LADY — DESIGN SYSTEM (orchid.css)
   Method: Sirrona child-theme engine. Aesthetic: boutique, feminine,
   restrained, editorial. All-serif Freight system. No Google Fonts.
   Fonts arrive via the enqueued Adobe kit (lno5gbl), not @import.
   Class prefix: .tol-*
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. TOKENS
   Palette is the official Orchid Lady swatch. Two neutrals (porcelain,
   blush-veil) are derived for the page ground and soft bands; they are
   tints of the brand pinks, marked DERIVED.
   --------------------------------------------------------------------- */
:root {
  /* Brand swatch — v2.0 editorial palette (single source of truth) */
  --blush:     #C2477E; /* signature accent: links, rules, primary button */
  --petal:     #F2ADC2; /* soft tint: bands, hero gradient */
  --lavender:  #DEB8D5; /* soft tint: hairlines, bands */
  --sage:      #8A9B77; /* rare botanical secondary */
  --fuchsia:   #6E1248; /* deep accent: headings, dark band, button hover */
  --ash:       #6E665E; /* secondary text, captions */
  --noir:      #2B2520; /* primary body text */
  --ink:       #2B2520; /* ink alias of noir (used by re-skin/header rules) */
  --white:     #FFFFFF;

  /* DERIVED neutrals (not in the swatch) */
  --porcelain:  #F6F2EC; /* dominant ground, warm ivory */
  --bone:       #EFE8DD; /* stone band */
  --blush-veil: #EFE8DD; /* soft section band */

  /* Type */
  --font-hero:    "freight-big-pro", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-display: "freight-display-pro", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --font-body:    "freight-text-pro", "Iowan Old Style", Georgia, "Times New Roman", serif;

  /* Layout */
  --container-max: 1400px;
  --container-text: 1080px;
  --gutter:        clamp(24px, 5vw, 88px);

  /* Radii (soft, warm) */
  --radius-soft: 4px;
  --radius-pill: 999px;

  /* Motion */
  --ease:   cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 240ms;
  --t-base: 460ms;
  --t-slow: 820ms;
}

/* ---------------------------------------------------------------------
   2. RESET + ELEMENTOR DOM BREAKERS
   --------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
.elementor-section.elementor-section-boxed > .elementor-container,
.e-con.e-con-boxed > .e-con-inner { max-width: var(--container-max) !important; }
.tol-fullbleed { width: 100vw; margin-left: 50%; transform: translateX(-50%); }
.elementor-widget { margin-bottom: 0 !important; }
img, video { max-width: 100%; height: auto; display: block; }
img, video, iframe { border-radius: var(--radius-soft); }

/* ---------------------------------------------------------------------
   3. HEADER CONTAINING-BLOCK RESET (keep; see SOS gotcha #13)
   --------------------------------------------------------------------- */
[data-elementor-type="header"],
[data-elementor-type="header"] .e-con,
[data-elementor-type="header"] .e-con-inner,
[data-elementor-type="header"] .elementor-widget,
[data-elementor-type="header"] .elementor-widget-html,
[data-elementor-type="header"] .elementor-widget-container,
.tol-header-shell,
.tol-header-shell .e-con-inner,
.tol-header-shell .elementor-widget,
.tol-header-shell .elementor-widget-html,
.tol-header-shell .elementor-widget-container {
  position: static !important;
  transform: none !important;
  filter: none !important;
  perspective: none !important;
  will-change: auto !important;
  contain: none !important;
  overflow: visible !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
html, body { transform: none !important; filter: none !important; perspective: none !important; }
body.tol-nav-open { overflow: hidden !important; }
body > #tol-mobile-nav { position: fixed !important; z-index: 99999 !important; }

/* ---------------------------------------------------------------------
   4. BASE TYPOGRAPHY
   Mixed case headings, light and airy. Headings sit in Fuchsia on light
   grounds. This is the deliberate inversion of the SOS uppercase-bold look.
   --------------------------------------------------------------------- */
body {
  background-color: var(--porcelain);
  color: var(--noir);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1.0625rem, 1.2vw, 1.1875rem);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--fuchsia);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.005em;
  margin-bottom: 0.6em;
}
h1, .tol-h1 {
  font-family: var(--font-hero);
  font-weight: 300;
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.015em;
}
h2, .tol-h2 { font-size: clamp(2.1rem, 4.2vw, 3.6rem); line-height: 1.08; }
h3, .tol-h3 { font-size: clamp(1.375rem, 2.2vw, 1.95rem); font-weight: 500; }
h4, .tol-h4 { font-size: clamp(1.125rem, 1.5vw, 1.375rem); font-weight: 500; }

.tol-accent-italic { font-style: italic; font-weight: 400; }

p, .tol-body {
  font-family: var(--font-body);
  line-height: 1.8;
  max-width: 66ch;
  margin-bottom: 1.4em;
  color: color-mix(in srgb, var(--noir) 92%, transparent);
}
p:last-child { margin-bottom: 0; }

a { color: var(--blush); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--fuchsia); }
ul, ol { list-style: none; }
strong, b { font-weight: 700; }
em, i { font-style: italic; }

/* ---------------------------------------------------------------------
   5. EYEBROW (the one place uppercase is allowed)
   --------------------------------------------------------------------- */
.tol-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blush);
  margin-bottom: 1.1rem;
}
.tol-eyebrow.muted { color: var(--ash); }
.tol-eyebrow.light { color: color-mix(in srgb, var(--porcelain) 80%, transparent); }

/* ---------------------------------------------------------------------
   6. STRUCTURE
   --------------------------------------------------------------------- */
.tol-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.tol-section-pad    { padding-block: 140px; }
.tol-section-pad-sm { padding-block: 84px; }
.tol-rule {
  display: block;
  width: 44px;
  height: 1px;
  background: var(--blush);
  border: 0;
  margin-bottom: 28px;
}
.tol-section-head { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.tol-section-head .tol-rule { margin-inline: auto; }

/* ---------------------------------------------------------------------
   7. BACKGROUND BANDS
   --------------------------------------------------------------------- */
.bg-porcelain { background: var(--porcelain);  color: var(--noir); }
.bg-veil      { background: var(--blush-veil); color: var(--noir); }
.bg-white     { background: var(--white);      color: var(--noir); }
.bg-plum      { background: var(--fuchsia);    color: var(--porcelain); }

.bg-plum h1, .bg-plum h2, .bg-plum h3, .bg-plum h4 { color: var(--porcelain); }
.bg-plum p { color: color-mix(in srgb, var(--porcelain) 88%, transparent); }
.bg-plum a { color: var(--petal); }
.bg-plum a:hover { color: var(--white); }
.bg-plum .tol-rule { background: var(--petal); }

/* ---------------------------------------------------------------------
   8. BUTTONS
   --------------------------------------------------------------------- */
.tol-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 17px 40px;
  border: 1px solid transparent;
  border-radius: var(--radius-soft);
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-base) var(--ease),
              color var(--t-base) var(--ease),
              border-color var(--t-base) var(--ease);
}
.tol-btn .tol-btn-arrow { transition: transform var(--t-base) var(--ease); }
.tol-btn:hover .tol-btn-arrow { transform: translateX(4px); }
.tol-btn-primary { background: var(--blush); border-color: var(--blush); color: #fff;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--blush) 28%, transparent); }
.tol-btn-primary:hover { background: var(--fuchsia); border-color: var(--fuchsia); color: #fff;
  box-shadow: 0 14px 38px color-mix(in srgb, var(--fuchsia) 32%, transparent); }
.tol-btn-ghost { background: transparent; border-color: var(--fuchsia); color: var(--fuchsia); }
.tol-btn-ghost:hover { background: var(--fuchsia); color: #fff; border-color: var(--fuchsia); }
.bg-plum .tol-btn-ghost { border-color: var(--petal); color: var(--porcelain); }
.bg-plum .tol-btn-ghost:hover { background: var(--petal); color: var(--fuchsia); border-color: var(--petal); }

/* ---------------------------------------------------------------------
   9. SCROLL REVEAL (paired with orchid.js)
   --------------------------------------------------------------------- */
.tol-js .tol-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.tol-reveal.revealed { opacity: 1; transform: none; }

/* ---------------------------------------------------------------------
   10. UTILITIES + A11Y FLOOR
   --------------------------------------------------------------------- */
.text-center { text-align: center; }
.hide-desktop { display: none; }
:focus-visible { outline: 2px solid var(--blush); outline-offset: 3px; }

/* ---------------------------------------------------------------------
   11. BREAKPOINTS
   --------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hide-mobile { display: none !important; }
  .hide-desktop { display: block; }
}
@media (max-width: 768px) {
  .tol-section-pad    { padding-block: 88px; }
  .tol-section-pad-sm { padding-block: 52px; }
  .tol-section-head   { margin-bottom: 52px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .tol-reveal { opacity: 1; transform: none; }
}

/* =====================================================================
   12. COMPONENTS  (header, off-canvas nav, hero, cards, gallery, faq, footer)
   Markup for these lives in the Theme Builder HTML widgets. orchid.js
   depends on the IDs: #tol-site-header, #tol-nav-trigger, #tol-nav-close,
   #tol-mobile-nav, .tol-hero .slide, .tol-reveal.
   ===================================================================== */

/* Announcement bar */
.tol-announce { background: var(--fuchsia); color: var(--porcelain); text-align: center;
  font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.04em; padding: 9px 16px; }
.tol-announce a { color: var(--petal); text-decoration: underline; }
.tol-announce a:hover { color: var(--white); }

/* Header (sticky handled here, NOT in Elementor's sticky option) */
#tol-site-header { position: sticky; top: 0; z-index: 1000; width: 100%;
  background: color-mix(in srgb, var(--porcelain) 88%, transparent);
  backdrop-filter: saturate(140%) blur(8px);
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
#tol-site-header.scrolled { background: var(--porcelain);
  box-shadow: 0 1px 0 color-mix(in srgb, var(--noir) 8%, transparent); }
.tol-header-inner { display: flex; align-items: center; justify-content: space-between;
  gap: 28px; padding-block: 16px; }
.tol-logo img { height: 54px; width: auto; border-radius: 0; }
.tol-nav-list { display: flex; align-items: center; gap: 30px; }
.tol-nav-list a { font-family: var(--font-display); font-size: 0.98rem; color: var(--noir); }
.tol-nav-list a:hover, .tol-nav-list .current-menu-item > a { color: var(--blush); }

.tol-nav-trigger { display: none; flex-direction: column; gap: 5px; width: 30px; height: 22px;
  background: none; border: 0; cursor: pointer; padding: 0; }
.tol-nav-trigger span { display: block; height: 1.5px; width: 100%; background: var(--noir); }

/* Off-canvas mobile nav */
.tol-mobile-nav { position: fixed; inset: 0 0 0 auto; width: min(86vw, 380px);
  background: var(--porcelain); transform: translateX(100%);
  transition: transform var(--t-base) var(--ease); z-index: 99999;
  padding: 90px 32px 40px; display: flex; flex-direction: column;
  box-shadow: -20px 0 60px color-mix(in srgb, var(--noir) 14%, transparent); }
.tol-mobile-nav.open { transform: translateX(0); }
.tol-nav-close { position: absolute; top: 22px; right: 26px; background: none; border: 0;
  font-size: 2rem; line-height: 1; color: var(--fuchsia); cursor: pointer; }
.tol-mobile-nav-list { display: flex; flex-direction: column; margin-bottom: 24px; }
.tol-mobile-nav-list a { font-family: var(--font-display); font-size: 1.5rem;
  color: var(--fuchsia); padding: 11px 0; display: block; }
.tol-mobile-nav-list a:hover { color: var(--blush); }
@media (max-width: 1024px) { .tol-nav-trigger { display: flex; } }

/* Hero */
.tol-hero { position: relative; min-height: min(90vh, 880px); display: flex; align-items: center;
  overflow: hidden; width: 100%; padding-block: 80px; }
.tol-hero .tol-hero-media { position: absolute; inset: 0; z-index: 0; }
.tol-hero .slide { position: absolute; inset: 0; opacity: 0; background-size: cover;
  background-position: center; transition: opacity 1600ms var(--ease); border-radius: 0; transform: scale(1.04); }
.tol-hero .slide.active { opacity: 1; animation: tol-kenburns 11s ease-out forwards; }
@keyframes tol-kenburns { from { transform: scale(1.04); } to { transform: scale(1.12); } }

/* Directional scrim: deep plum on the left where the text sits, clearing to the right */
.tol-hero .tol-hero-wash { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(36,8,28,0.88) 0%,
      rgba(36,8,28,0.64) 30%,
      rgba(36,8,28,0.24) 58%,
      rgba(36,8,28,0.05) 100%),
    linear-gradient(0deg, rgba(18,5,14,0.48) 0%, transparent 44%); }
.tol-hero .tol-hero-inner { position: relative; z-index: 2; width: 100%;
  max-width: var(--container-max); margin-inline: auto;
  padding-inline: var(--gutter); text-align: left; }
.tol-hero .tol-hero-inner > * { max-width: 700px; margin-inline: 0; }
.tol-hero .tol-eyebrow { color: var(--petal); }
.tol-hero h1 { color: var(--porcelain); margin-bottom: 0.28em;
  text-shadow: 0 2px 30px rgba(31,16,28,0.4); }
.tol-hero h1 em { color: var(--petal); }
.tol-hero p { font-size: clamp(1.12rem, 1.5vw, 1.4rem); margin-inline: 0; max-width: 560px;
  color: color-mix(in srgb, var(--porcelain) 92%, transparent); }
.tol-hero .tol-btn-ghost { border-color: color-mix(in srgb, var(--porcelain) 80%, transparent); color: var(--porcelain); }
.tol-hero .tol-btn-ghost:hover { background: var(--porcelain); color: var(--fuchsia); border-color: var(--porcelain); }
.tol-btn-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 38px; }

/* Cards */
.tol-grid { display: grid; gap: 28px; }
.tol-grid-3 { grid-template-columns: repeat(3, 1fr); }
.tol-grid-4 { grid-template-columns: repeat(4, 1fr); }
.tol-card { background: var(--white);
  border: 1px solid color-mix(in srgb, var(--lavender) 50%, transparent);
  border-radius: var(--radius-soft); padding: 34px 30px;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease); }
.tol-card:hover { transform: translateY(-4px);
  box-shadow: 0 18px 50px color-mix(in srgb, var(--fuchsia) 12%, transparent); }
.tol-card h3 { margin-bottom: 0.4em; }
.tol-card p { font-size: 1rem; }

/* Gallery */
.tol-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tol-gallery-grid a { overflow: hidden; border-radius: var(--radius-soft); display: block; }
.tol-gallery-grid img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 5;
  transition: transform var(--t-slow) var(--ease); }
.tol-gallery-grid a:hover img { transform: scale(1.04); }

/* FAQ */
.tol-faq { max-width: 760px; margin-inline: auto; }
.tol-faq details { border-bottom: 1px solid color-mix(in srgb, var(--lavender) 60%, transparent); padding: 22px 0; }
.tol-faq summary { font-family: var(--font-display); font-size: 1.2rem; color: var(--fuchsia);
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.tol-faq summary::-webkit-details-marker { display: none; }
.tol-faq summary::after { content: "+"; color: var(--blush); font-size: 1.4rem;
  transition: transform var(--t-fast) var(--ease); }
.tol-faq details[open] summary::after { transform: rotate(45deg); }
.tol-faq details > div { padding-top: 14px; }

/* Footer */
.tol-footer { padding-block: 80px 0; }
.tol-footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.4fr; gap: 40px; padding-bottom: 52px; }
.tol-footer-brand img { height: 58px; margin-bottom: 18px; }
.tol-footer-nav ul { display: flex; flex-direction: column; gap: 10px; }
.tol-footer-nav a { color: var(--porcelain); }
.tol-footer-nav a:hover { color: var(--petal); }
.tol-footer-contact p { font-size: 0.95rem; margin-bottom: 12px; }
.tol-social { display: flex; gap: 14px; margin-top: 8px; }
.tol-social a { color: var(--petal); }
.tol-footer-base { border-top: 1px solid color-mix(in srgb, var(--porcelain) 18%, transparent); padding-block: 22px; }
.tol-footer-base p { font-size: 0.8rem; color: color-mix(in srgb, var(--porcelain) 70%, transparent); margin: 0; }

@media (max-width: 1024px) {
  .tol-grid-3, .tol-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tol-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .tol-grid-3, .tol-grid-4 { grid-template-columns: 1fr; }
  .tol-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .tol-footer-inner { grid-template-columns: 1fr; }
  .tol-hero { min-height: 78vh; }
}

/* =====================================================================
   13. LAYOUT UTILITIES used by the native page builds
   ===================================================================== */
.tol-narrow      { max-width: 860px; margin-inline: auto; }
.tol-text-center { text-align: center; }
.tol-text-center .tol-eyebrow { margin-inline: auto; }
.tol-text-center .tol-btn-row { justify-content: center; }
.tol-flex-row    { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* >>> TOL BENTO STAGE B RETIRED 2026-07-09 — dead per-section grid CSS (backup: /tmp/tol-pB/orchid.css.preB).
   .tol-split-2 = the OLD Custom Orchids alternating image+copy rows; superseded by the shared .tol-split
   pattern and on ZERO live elements site-wide. Commented out (design cascades via .tol-split now):
   .tol-split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
   .tol-split-2 .elementor-widget-image, .tol-split-2 .elementor-widget-image .elementor-widget-container, .tol-split-2 .elementor-widget-image img { width: 100%; height: 100%; }
   .tol-split-2 .elementor-widget-image img { object-fit: cover; aspect-ratio: 4 / 3; border-radius: var(--radius-soft); display: block; }
   .tol-split-2 + .tol-split-2 { margin-top: clamp(56px, 7vw, 104px); }
<<< */

/* =====================================================================
   14. ELEMENTOR WIDGET BRIDGES (make native widgets honor the system)
   ===================================================================== */
/* Native galleries must fill the boxed container, not box themselves */
.elementor-widget-gallery, .elementor-widget-image-gallery { width: 100%; }
.elementor-widget-image-gallery .gallery,
.elementor-widget-gallery .elementor-gallery__container {
  display: grid !important; grid-template-columns: repeat(3, 1fr); gap: 16px !important;
  width: 100%; margin: 0 !important; }
.elementor-widget-image-gallery .gallery-item {
  width: auto !important; margin: 0 !important; padding: 0 !important; float: none !important; }
.elementor-widget-image-gallery .gallery-item img,
.elementor-widget-gallery .e-gallery-image {
  width: 100% !important; height: 100% !important; object-fit: cover; aspect-ratio: 4 / 5;
  border: 0 !important; border-radius: var(--radius-soft);
  transition: transform var(--t-slow) var(--ease); }
.elementor-widget-image-gallery .gallery-item:hover img { transform: scale(1.04); }
.elementor-widget-gallery .elementor-gallery-item { overflow: hidden; border-radius: var(--radius-soft); }

/* Native buttons that carry our classes should drop Elementor's own chrome */
.elementor-widget-button .tol-btn { box-shadow: 0 10px 30px color-mix(in srgb, var(--blush) 28%, transparent); }

/* =====================================================================
   15. RESPONSIVE REFINEMENTS
   ===================================================================== */
@media (max-width: 900px) {
  /* TOL BENTO STAGE B RETIRED 2026-07-09: .tol-split-2 mobile rules (dead, see /tmp/tol-pB/orchid.css.preB):
     .tol-split-2 { grid-template-columns: 1fr; gap: 28px; }
     .tol-split-2 .elementor-widget-image img { aspect-ratio: 16 / 10; } */
  .elementor-widget-image-gallery .gallery,
  .elementor-widget-gallery .elementor-gallery__container { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tol-hero { min-height: 80vh; padding-block: 64px; }
  .tol-hero h1 { font-size: clamp(2.1rem, 9vw, 3rem); }
  .tol-hero p { font-size: 1.05rem; }
  .tol-announce { font-size: 0.74rem; padding: 8px 14px; line-height: 1.35; }
  .elementor-widget-image-gallery .gallery,
  .elementor-widget-gallery .elementor-gallery__container { grid-template-columns: repeat(2, 1fr); gap: 10px !important; }
}

/* TOL v1.4 PATCH — hero first-slide fallback + button auto-width (applied live) */
.tol-hero .slide:first-child { opacity: 1; }
.tol-hero.tol-hero-ready .slide { opacity: 0; }
.tol-hero.tol-hero-ready .slide.active { opacity: 1; }
.elementor-widget-button .elementor-button-wrapper { text-align: center; }
.elementor-widget-button .elementor-button,
.elementor-widget-button a.tol-btn,
.elementor-widget-button .tol-btn { width: auto !important; max-width: max-content; display: inline-flex !important; }
.tol-btn-row .elementor-widget-button { width: auto !important; }

/* ===== TOL v2.0 EDITORIAL RE-SKIN — neutral ivory ground, ink headings, pink as accent ===== */
/* color tokens consolidated into the top-of-file :root (single source of truth) */
body{ background-color:var(--porcelain); color:var(--ink); }
h1,h2,h3,h4,h5,h6{ color:var(--ink); }
.tol-accent-italic{ color:var(--blush); font-style:italic; }
.bg-porcelain{ background:var(--porcelain); color:var(--ink); }
.bg-veil{ background:var(--bone); color:var(--ink); }
.bg-white{ background:#fff; color:var(--ink); }
.bg-plum{ background:var(--fuchsia); color:var(--porcelain); }
.bg-plum h1,.bg-plum h2,.bg-plum h3,.bg-plum h4{ color:var(--porcelain); }
.tol-hero h1{ color:var(--porcelain); }
.tol-hero .tol-accent-italic{ color:var(--petal); }
.tol-eyebrow{ color:var(--blush); }
.tol-btn-ghost{ background:transparent; border-color:color-mix(in srgb,var(--ink) 38%,transparent); color:var(--ink); }
.tol-btn-ghost:hover{ background:var(--ink); color:var(--porcelain); border-color:var(--ink); }
.bg-plum .tol-btn-ghost{ border-color:var(--petal); color:var(--porcelain); }
.bg-plum .tol-btn-ghost:hover{ background:var(--petal); color:var(--fuchsia); }
.tol-hero .tol-btn-ghost{ border-color:color-mix(in srgb,var(--porcelain) 80%,transparent); color:var(--porcelain); }
.tol-hero .tol-btn-ghost:hover{ background:var(--porcelain); color:var(--fuchsia); }
.tol-section-pad{ padding-block:160px; }
.tol-card{ background:#fff; border:1px solid color-mix(in srgb,var(--ink) 9%,transparent); padding:42px 34px; }
.tol-card p{ color:var(--ash); }
.tol-card:hover{ transform:translateY(-5px); box-shadow:0 26px 64px color-mix(in srgb,var(--ink) 11%,transparent); }
.tol-hero .tol-hero-wash{ background:
  linear-gradient(98deg, rgba(31,9,24,0.80) 0%, rgba(31,9,24,0.55) 32%, rgba(31,9,24,0.18) 60%, rgba(31,9,24,0.02) 100%),
  linear-gradient(0deg, rgba(20,6,16,0.42) 0%, transparent 46%); }
@media (max-width:768px){ .tol-section-pad{ padding-block:104px; } }

/* ===== TOL v2.0 KIT OVERRIDE — outrank Elementor global kit (.elementor-kit-5) ===== */
/* Kit sets body bg #FBF5F7 (pink) and h1..h6 #75174F (plum) at higher specificity than
   plain element selectors; these body-scoped rules outrank it. */
body.elementor-kit-5{ background-color:var(--porcelain); }
body.elementor-kit-5 h1, body.elementor-kit-5 h2, body.elementor-kit-5 h3,
body.elementor-kit-5 h4, body.elementor-kit-5 h5, body.elementor-kit-5 h6{ color:var(--ink); }
/* preserve light headings on dark grounds (higher specificity than the rule above) */
body.elementor-kit-5 .tol-hero h1, body.elementor-kit-5 .tol-hero h2, body.elementor-kit-5 .tol-hero h3,
body.elementor-kit-5 .bg-plum h1, body.elementor-kit-5 .bg-plum h2,
body.elementor-kit-5 .bg-plum h3, body.elementor-kit-5 .bg-plum h4{ color:var(--porcelain); }

/* ===== TOL HERO PHOTO FIX — make the photo layer fill the hero again ===== */
.tol-hero { position: relative; } /* hero photo now provided by native Elementor container background slideshow (editable in UI) */
.tol-hero .elementor-widget-html,
.tol-hero .elementor-widget-html > .elementor-widget-container { position: static !important; }
.tol-hero .tol-hero-media { position: absolute !important; inset: 0 !important; z-index: 0 !important; height: 100% !important; width: 100% !important; }
.tol-hero .tol-hero-media .slide { position: absolute !important; inset: 0 !important; background-size: cover; background-position: center; }
.tol-hero .tol-hero-wash { position: absolute !important; inset: 0 !important; z-index: 1 !important; }
.tol-hero .tol-hero-inner { position: relative !important; z-index: 2 !important; }
.tol-btn-primary { box-shadow: 0 6px 18px color-mix(in srgb, var(--ink) 16%, transparent) !important; }
.tol-btn-row .tol-btn, .elementor-widget-button .tol-btn { box-shadow: 0 6px 18px color-mix(in srgb, var(--ink) 14%, transparent) !important; }

/* ===== TOL BTN TEXT FIX — kit (.elementor-kit-5 a) recolors anchor buttons pink; restore legible text ===== */
body.elementor-kit-5 a.tol-btn-primary,
body.elementor-kit-5 a.tol-btn-primary:hover,
body.elementor-kit-5 a.tol-btn-primary:focus{ color:#fff; }
body.elementor-kit-5 a.tol-btn-ghost{ color:var(--ink); }
body.elementor-kit-5 .tol-hero a.tol-btn-ghost{ color:var(--porcelain); }
body.elementor-kit-5 .bg-plum a.tol-btn-ghost{ color:var(--porcelain); }

/* ===== TOL HEADER v3 — refined topbar, oversized logo, desktop hamburger ===== */
#tol-site-header{position:sticky;top:0;z-index:1000;}
.tol-topbar{background:var(--fuchsia);color:var(--porcelain);}
.tol-topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:42px;}
.tol-topbar-center{flex:1;text-align:center;font-size:.82rem;letter-spacing:.02em;}
.tol-topbar-left,.tol-topbar-right{display:flex;align-items:center;gap:20px;}
.tol-top-home,.tol-top-link{color:var(--porcelain);display:inline-flex;align-items:center;gap:7px;text-transform:uppercase;letter-spacing:.12em;font-size:.7rem;transition:opacity var(--t-fast);}
.tol-top-home:hover,.tol-top-link:hover{opacity:.7;}
.tol-top-home svg,.tol-top-link svg{width:15px;height:15px;}
.tol-mainbar{background:color-mix(in srgb,var(--porcelain) 92%,transparent);backdrop-filter:blur(8px);position:relative;overflow:visible;transition:background var(--t-base),box-shadow var(--t-base);}
.tol-mainbar-inner{display:flex;align-items:center;justify-content:space-between;gap:28px;min-height:94px;}
#tol-site-header.scrolled .tol-mainbar{background:color-mix(in srgb,var(--porcelain) 98%,transparent);box-shadow:0 6px 30px color-mix(in srgb,var(--ink) 8%,transparent);}
.tol-logo{display:inline-flex;align-items:center;position:relative;z-index:3;}
.tol-logo img{height:clamp(70px,7.5vw,116px);width:auto;max-width:none;border-radius:0;transition:height var(--t-base) var(--ease);}
#tol-site-header.scrolled .tol-logo img{height:62px;}
.tol-nav ul,.tol-nav-list{display:flex;align-items:center;gap:34px;list-style:none;margin:0;padding:0;}
.tol-nav a{color:var(--ink);font-family:var(--font-display);font-size:1.02rem;position:relative;padding:6px 0;transition:color var(--t-fast);}
.tol-nav a:hover,.tol-nav .current-menu-item a{color:var(--blush);}
.tol-nav a::after{content:"";position:absolute;left:0;bottom:0;width:0;height:1px;background:var(--blush);transition:width var(--t-base) var(--ease);}
.tol-nav a:hover::after{width:100%;}
.tol-nav li:nth-child(n+5){display:none;}
.tol-header-actions{display:flex;align-items:center;gap:18px;}
.tol-header-cta{padding:13px 26px;font-size:.7rem;}
.tol-nav-trigger{display:inline-flex;flex-direction:column;justify-content:center;gap:5px;width:30px;height:24px;background:none;border:0;cursor:pointer;}
.tol-nav-trigger span{display:block;height:1.5px;width:100%;background:var(--ink);transition:transform var(--t-base) var(--ease),opacity var(--t-fast);}
#tol-mobile-nav{position:fixed;inset:0 0 0 auto;width:min(440px,100vw);background:var(--porcelain);z-index:99999;transform:translateX(100%);transition:transform var(--t-base) var(--ease);display:flex;flex-direction:column;justify-content:center;padding:64px clamp(32px,6vw,72px);box-shadow:-30px 0 80px color-mix(in srgb,var(--ink) 14%,transparent);}
body.tol-nav-open #tol-mobile-nav{transform:translateX(0);}
.tol-nav-close{position:absolute;top:28px;right:32px;background:none;border:0;font-size:2rem;line-height:1;color:var(--ink);cursor:pointer;}
.tol-mobile-nav-list ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:4px;}
.tol-mobile-nav-list a{font-family:var(--font-display);font-size:clamp(1.6rem,4vw,2.2rem);color:var(--ink);display:block;padding:8px 0;transition:color var(--t-fast);}
.tol-mobile-nav-list a:hover{color:var(--blush);}
.tol-mobile-contact{margin-top:40px;padding-top:28px;border-top:1px solid color-mix(in srgb,var(--ink) 12%,transparent);display:flex;flex-direction:column;gap:10px;}
.tol-mobile-contact a{color:var(--ash);letter-spacing:.04em;}
.tol-mobile-contact a:hover{color:var(--blush);}
@media(max-width:900px){.tol-nav{display:none;}.tol-header-cta{display:none;}.tol-topbar-center{display:none;}.tol-mainbar-inner{min-height:72px;}.tol-logo img{height:56px;}}

/* ===== TOL REFINE v4 — full-bleed topbar + unified elegant button system ===== */
/* Top bar runs edge to edge; only its inner content is constrained */
.tol-topbar{width:100vw;margin-left:calc(50% - 50vw);}
.tol-topbar-inner{max-width:var(--container-max);margin-inline:auto;padding-inline:var(--gutter);}
.tol-mainbar{width:100%;}

/* ONE button system. Calmer blush, refined weight, consistent metrics. */
.tol-btn,.elementor-widget-button .elementor-button{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  font-family:var(--font-display);font-weight:500;font-size:.74rem;letter-spacing:.18em;
  text-transform:uppercase;line-height:1;padding:16px 34px;border-radius:var(--radius-soft);
  border:1px solid transparent;cursor:pointer;text-align:center;white-space:nowrap;
  transition:background var(--t-base) var(--ease),color var(--t-base) var(--ease),
             border-color var(--t-base) var(--ease),transform var(--t-base) var(--ease),
             box-shadow var(--t-base) var(--ease);
  width:auto;max-width:max-content;}
.tol-btn:hover{transform:translateY(-2px);}
/* Primary: solid blush, white text, soft neutral shadow (no loud glow) */
.tol-btn-primary{background:var(--blush);border-color:var(--blush);color:#fff !important;
  box-shadow:0 8px 22px color-mix(in srgb,var(--ink) 14%,transparent);}
.tol-btn-primary:hover{background:var(--fuchsia);border-color:var(--fuchsia);color:#fff !important;
  box-shadow:0 12px 30px color-mix(in srgb,var(--ink) 18%,transparent);}
/* Ghost on light: thin ink outline, fills on hover */
.tol-btn-ghost{background:transparent;border-color:color-mix(in srgb,var(--ink) 34%,transparent);
  color:var(--ink) !important;box-shadow:none;}
.tol-btn-ghost:hover{background:var(--ink);border-color:var(--ink);color:var(--porcelain) !important;}
/* Ghost over the hero photo: light outline + readable */
.tol-hero .tol-btn-ghost{border-color:color-mix(in srgb,#fff 75%,transparent);color:#fff !important;
  backdrop-filter:blur(2px);}
.tol-hero .tol-btn-ghost:hover{background:#fff;color:var(--fuchsia) !important;border-color:#fff;}
/* Ghost on the plum band */
.bg-plum .tol-btn-ghost{border-color:var(--petal);color:var(--porcelain) !important;}
.bg-plum .tol-btn-ghost:hover{background:var(--petal);color:var(--fuchsia) !important;border-color:var(--petal);}
/* Header CTA: slightly more compact than body buttons */
.tol-header-cta{padding:13px 26px;font-size:.7rem;}
/* Kill any full-width button bars + center single CTAs */
.elementor-widget-button .elementor-button-wrapper{text-align:center;}
.elementor-widget-button{width:auto !important;}

/* ===== TOL REFINE v4 MOBILE FIX — REFINE v4 / BUTTON FIX a.tol-btn{display} re-shows the header CTA on mobile; re-hide it (specificity must beat a.tol-btn 0,1,1) ===== */
@media(max-width:900px){ #tol-site-header a.tol-header-cta{ display:none !important; } }

/* >>> TOL BUTTON FIX START <<< */
/* =====================================================================
   TOL BUTTON + NAV FIX  (append-only, marker-guarded)
   Root cause: button paint was applied to the .tol-btn WIDGET WRAPPER
   (full container width) instead of the inner .elementor-button anchor.
   This block de-paints the wrapper and paints the anchor, in both
   layouts: header (a.tol-btn) and body (.tol-btn .elementor-button).
   Scoped, idempotent, uses !important to beat the misfiring rules.
   ===================================================================== */

/* 1. WRAPPER: stop the widget wrapper from painting a full-width bar */
.elementor-widget-button.tol-btn,
.tol-btn.elementor-widget-button {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  width: auto !important;
  text-align: center;            /* centers the inline-flex anchor */
}

/* keep multi-button rows tidy and content-width */
.tol-btn-row,
.tol-flex-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.tol-text-center.tol-flex-row { justify-content: center; }
.tol-btn-row .tol-btn,
.tol-flex-row .tol-btn { flex: 0 0 auto; }

/* 2. ANCHOR: this is the actual button, in BOTH header and body */
a.tol-btn,
.tol-btn .elementor-button {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  max-width: 100%;
  font-family: "freight-display-pro", Georgia, serif;
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.95rem 1.9rem;
  border-radius: 2px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

/* 3. PRIMARY: blush fill, white text */
a.tol-btn-primary,
.tol-btn-primary .elementor-button {
  background: var(--blush, #C2477E) !important;
  color: #fff !important;
  border-color: var(--blush, #C2477E) !important;
}
a.tol-btn-primary:hover,
.tol-btn-primary .elementor-button:hover {
  background: var(--fuchsia, #6E1248) !important;
  border-color: var(--fuchsia, #6E1248) !important;
  color: #fff !important;
}

/* 4. GHOST (on light): transparent, ink outline, ink text */
a.tol-btn-ghost,
.tol-btn-ghost .elementor-button {
  background: transparent !important;
  color: var(--ink, #2B2520) !important;
  border-color: rgba(43, 37, 32, 0.45) !important;
}
a.tol-btn-ghost:hover,
.tol-btn-ghost .elementor-button:hover {
  background: var(--ink, #2B2520) !important;
  color: #fff !important;
  border-color: var(--ink, #2B2520) !important;
}

/* 5. GHOST on the plum band: light outline, white text */
.bg-plum a.tol-btn-ghost,
.bg-plum .tol-btn-ghost .elementor-button {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
}
.bg-plum a.tol-btn-ghost:hover,
.bg-plum .tol-btn-ghost .elementor-button:hover {
  background: #fff !important;
  color: var(--fuchsia, #6E1248) !important;
  border-color: #fff !important;
}

/* 6. HAMBURGER trigger: render real bars when it does show (tablet/mobile) */
#tol-nav-trigger.tol-nav-trigger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: var(--blush, #C2477E);
  cursor: pointer;
}
#tol-nav-trigger.tol-nav-trigger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* 7. DESKTOP NAV: show all six links, drop the desktop hamburger.
      Hamburger + off-canvas stay for tablet/mobile (<=1024px). */
@media (min-width: 1025px) {
  .tol-nav li:nth-child(n+5) { display: inline-block !important; }
  #tol-nav-trigger { display: none !important; }
}
/* >>> TOL BUTTON FIX END <<< */

/* >>> TOL EDITORIAL V5 START <<< */
/* =====================================================================
   TOL EDITORIAL v5  (append-only, marker-guarded)
   Grows the approved mockup direction onto the live native build:
   image-topped service cards, a photo+parallax signature band,
   a visible hero ghost button, and refined header nav.
   Pairs with structural steps (card image widgets + feature band
   background image) applied via Elementor data. Styling only here.
   ===================================================================== */

/* ---------- SERVICE CARDS: photo on top, editorial body, hover ---------- */
.tol-card {
  background: #fff;
  border: 1px solid rgba(43, 37, 32, 0.14);
  border-radius: 3px;
  overflow: hidden;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.tol-card > .elementor-widget-image {
  margin: 0 0 16px !important;
  overflow: hidden;
}
.tol-card > .elementor-widget-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.2, .7, .2, 1);
}
.tol-card > .elementor-widget-heading { padding: 0 22px; }
.tol-card > .elementor-widget-text-editor { padding: 0 22px 26px; }
.tol-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 48px -28px rgba(43, 18, 30, 0.5);
  border-color: rgba(194, 71, 126, 0.4);
}
.tol-card:hover > .elementor-widget-image img { transform: scale(1.06); }

/* ---------- SIGNATURE BAND: photo + plum/ink wash + parallax ---------- */
.tol-feature {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;   /* parallax */
  background-color: var(--fuchsia, #6E1248);  /* fallback before image loads */
}
.tol-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 12, 48, 0.82), rgba(20, 8, 16, 0.86));
  pointer-events: none;
  z-index: 0;
}
.tol-feature > .elementor-element,
.tol-feature > .e-con-inner { position: relative; z-index: 1; }
.tol-feature .elementor-heading-title { color: #fff !important; }
.tol-feature p,
.tol-feature .elementor-widget-text-editor { color: rgba(255, 255, 255, 0.88) !important; }
.tol-feature .tol-eyebrow .elementor-heading-title { color: rgba(255, 255, 255, 0.78) !important; }
/* light ghost button on the dark band */
.tol-feature .tol-btn-ghost .elementor-button {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7) !important;
  backdrop-filter: blur(2px);
}
.tol-feature .tol-btn-ghost .elementor-button:hover {
  background: #fff !important;
  color: var(--fuchsia, #6E1248) !important;
  border-color: #fff !important;
}

/* ---------- HERO GHOST BUTTON: visible white outline on the photo ---------- */
.tol-hero .tol-btn-ghost .elementor-button {
  background: rgba(255, 255, 255, 0.05) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.78) !important;
  backdrop-filter: blur(2px);
}
.tol-hero .tol-btn-ghost .elementor-button:hover {
  background: #fff !important;
  color: var(--fuchsia, #6E1248) !important;
  border-color: #fff !important;
}

/* ---------- HEADER REFINEMENT: animated nav underline + air ---------- */
.tol-mainbar-inner { min-height: 92px; }
.tol-nav-list a {
  position: relative;
  letter-spacing: 0.16em;
  padding-bottom: 3px;
}
.tol-nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--blush, #C2477E);
  transition: width .25s ease;
}
.tol-nav-list a:hover::after { width: 100%; }
.tol-mainbar { border-bottom: 1px solid rgba(43, 37, 32, 0.12); }

/* ---------- RESPONSIVE / MOTION SAFETY ---------- */
@media (max-width: 760px) {
  .tol-feature { background-attachment: scroll; min-height: 64vh; }
  .tol-card > .elementor-widget-image img { aspect-ratio: 16 / 10; }
}
@media (prefers-reduced-motion: reduce) {
  .tol-feature { background-attachment: scroll; }
  .tol-card, .tol-card > .elementor-widget-image img { transition: none; }
}
/* >>> TOL EDITORIAL V5 END <<< */

/* >>> TOL FOOTER FIX START <<< */
/* =====================================================================
   TOL FOOTER FIX  (marker name: TOL FOOTER FIX)
   v2: columns un-stacked but were shrinking to ~433px because the
   gridded wrapper (.e-con-inner) sized to content. Force it full width.
   ===================================================================== */

.tol-footer { padding-block: clamp(54px, 7vw, 86px) 34px; }

/* make the wrapper fill the container, THEN grid it */
.tol-footer-inner { width: 100%; }
.tol-footer-inner > .e-con-inner {
  width: 100%;
  max-width: 100%;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.6fr;
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
}

/* brand column */
.tol-footer-brand img { width: 200px; max-width: 62%; height: auto; margin: 0 0 16px; }
.tol-footer-brand p { color: rgba(255,255,255,.8) !important; max-width: 34ch; font-size: .95rem; }

/* nav column */
.tol-footer-nav .elementor-nav-menu { display: block; }
.tol-footer-nav .elementor-nav-menu .elementor-item {
  color: rgba(255,255,255,.82) !important;
  background: transparent !important;
  padding: 7px 0 !important;
  font-size: .92rem;
  letter-spacing: .1em;
}
.tol-footer-nav .elementor-nav-menu .elementor-item:hover { color: #fff !important; }
.tol-footer-nav .elementor-item::before,
.tol-footer-nav .elementor-item::after { display: none !important; }
.tol-footer-nav .elementor-menu-toggle,
.tol-footer-nav .elementor-nav-menu--dropdown { display: none !important; }

/* contact column */
.tol-footer-contact p,
.tol-footer-contact .elementor-icon-list-text { color: rgba(255,255,255,.82) !important; }
.tol-footer-contact p { font-size: .95rem; margin: 0 0 .5rem; }
.tol-footer-contact .elementor-icon-list-icon svg { fill: rgba(255,255,255,.72) !important; }
.tol-footer-contact .elementor-icon-list-item a:hover .elementor-icon-list-text { color: #fff !important; }

/* social under brand */
.tol-social { margin-top: 18px; }
.tol-social .elementor-social-icon { background: rgba(255,255,255,.1) !important; transition: background .2s ease; }
.tol-social .elementor-social-icon:hover { background: rgba(255,255,255,.24) !important; }

/* base bar */
.tol-footer-base {
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: 22px;
}
.tol-footer-base p {
  color: rgba(255,255,255,.6) !important;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0;
}

/* responsive */
@media (max-width: 900px) { .tol-footer-inner > .e-con-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .tol-footer-inner > .e-con-inner { grid-template-columns: 1fr; gap: 26px; } }
/* >>> TOL FOOTER FIX END <<< */

/* >>> TOL FOOTER FIX AUTOCORRECT START <<< */
/* auto-correct (apply-procedure step 6): .tol-footer-inner is an Elementor GRID
   container (grid-template-columns ~433/309/433) holding a single .e-con-inner, so
   the footer content was trapped in one 433px track (~34% of container). Collapse the
   parent to one full-width track; the real 3-col layout lives on .e-con-inner (footer-fix).
   Separate marker block so re-applying the base footer-fix file does not wipe this. */
.tol-footer-inner { grid-template-columns: minmax(0, 1fr) !important; }
.tol-footer-inner > .e-con-inner { width: 100% !important; }
/* >>> TOL FOOTER FIX AUTOCORRECT END <<< */

/* >>> TOL INNER PAGES START <<< */
/* light page hero for inner-page intros */
.tol-page-hero{ text-align:center; padding-block:clamp(64px,9vw,120px) clamp(40px,6vw,72px); }
.tol-page-hero .elementor-heading-title{ color:var(--ink,#2B2520); }
.tol-page-hero .elementor-widget-heading h1.elementor-heading-title,
.tol-page-hero h1.elementor-heading-title{ font-family:var(--display,"freight-big-pro",Georgia,serif); font-weight:300; font-size:clamp(2.4rem,5vw,4rem); line-height:1.05; }
.tol-page-hero .tol-eyebrow .elementor-heading-title{ color:var(--blush,#C2477E); }
.tol-page-hero .elementor-widget-text-editor{ max-width:56ch; margin-inline:auto; }
.tol-page-hero p{ color:var(--ash,#6E665E); }

/* About: stat row */
.tol-stats > .e-con-inner{ display:flex; flex-wrap:wrap; justify-content:center; gap:clamp(24px,5vw,72px); text-align:center; }
.tol-stats .elementor-widget-heading{ flex:1 1 150px; max-width:240px; }
.tol-stats .elementor-heading-title{ font-family:var(--display,"freight-big-pro",Georgia,serif); font-weight:300; font-size:clamp(1.4rem,3vw,2rem); color:var(--ink,#2B2520); line-height:1.15; }

/* Contact: form + map */
.elementor-widget-form .elementor-field-group > label{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--ash,#6E665E); }
.elementor-widget-form input[type=text],
.elementor-widget-form input[type=email],
.elementor-widget-form input[type=tel],
.elementor-widget-form textarea,
.elementor-widget-form select{
  background:#fff!important; border:1px solid rgba(43,37,32,.18)!important; border-radius:2px!important;
  padding:.85rem 1rem!important; color:var(--ink,#2B2520)!important;
  font-family:var(--body,"freight-text-pro",Georgia,serif)!important;
}
.elementor-widget-form input:focus,
.elementor-widget-form textarea:focus{ border-color:var(--blush,#C2477E)!important; outline:none!important; box-shadow:none!important; }
.elementor-widget-form .elementor-button{ background:var(--blush,#C2477E)!important; color:#fff!important; letter-spacing:.18em; text-transform:uppercase; padding:1rem 2rem!important; border-radius:2px; }
.elementor-widget-form .elementor-button:hover{ background:var(--fuchsia,#6E1248)!important; }
.elementor-widget-google_maps iframe{ border-radius:3px; filter:saturate(.92); }

/* framed images on inner content sections */
.tol-frame-imgs .elementor-widget-image img{ border-radius:3px; }

/* gallery grid spacing */
.elementor-widget-gallery .elementor-gallery__container{ gap:14px; }

/* blog archive (conservative) */
.tol-archive article, .elementor-posts .elementor-post{ border:1px solid rgba(43,37,32,.12); border-radius:3px; overflow:hidden; background:#fff; }
.tol-archive .elementor-post__title a{ font-family:var(--display,"freight-big-pro",Georgia,serif); color:var(--ink,#2B2520); }
/* >>> TOL INNER PAGES END <<< */

/* >>> TOL INNER PAGES AUTOCORRECT START <<< */
/* auto-correct (apply-procedure step 6): "About / Facts" is a full-width container, so
   there is no .tol-stats > .e-con-inner for the given rule to flex; its 4 stat headings live
   in .tol-stats .tol-grid which computed to a single 342px column and stacked them. Elementor
   containers default to flex-direction:column, so force a centered wrapping ROW. Separate
   marker block so re-applying the base inner-pages CSS does not wipe this. */
.tol-stats .tol-grid{ display:flex !important; flex-direction:row !important; flex-wrap:wrap;
  justify-content:center; align-items:flex-start; gap:clamp(24px,5vw,72px);
  grid-template-columns:none !important; }
/* >>> TOL INNER PAGES AUTOCORRECT END <<< */

/* >>> TOL TYPE SYSTEM START <<< */
:root{
  --display:"freight-big-pro", Georgia, serif;
  --body:"freight-sans-pro", system-ui, -apple-system, "Segoe UI", sans-serif;
}
.elementor-heading-title{ font-family:var(--display); }
h1.elementor-heading-title, .tol-hero h1{ font-family:var(--display); font-weight:300; }
h2.elementor-heading-title, h3.elementor-heading-title{ font-family:var(--display); font-weight:400; }
.tol-accent-italic, .tol-hero h1 em, .elementor-heading-title em{ font-style:italic; font-weight:300; }
body, p, li, .elementor-widget-text-editor, .elementor-widget-text-editor p{ font-family:var(--body); font-weight:400; }
.tol-eyebrow, .tol-eyebrow .elementor-heading-title{ font-family:var(--body); font-weight:500; text-transform:uppercase; letter-spacing:.28em; }
.tol-nav-list a, .tol-footer-nav .elementor-item{ font-family:var(--body); font-weight:500; letter-spacing:.14em; }
.tol-topbar, .tol-topbar a, .tol-top-link, .tol-top-home{ font-family:var(--body); font-weight:500; }
a.tol-btn, .tol-btn .elementor-button, .elementor-button, .elementor-widget-form .elementor-button{ font-family:var(--body) !important; font-weight:600; text-transform:uppercase; letter-spacing:.18em; }
.elementor-widget-form .elementor-field-group > label{ font-family:var(--body); font-weight:500; text-transform:uppercase; letter-spacing:.14em; }
/* >>> TOL TYPE SYSTEM END <<< */

/* >>> TOL TYPE SYSTEM AUTOCORRECT START <<< */
/* AUTOCORRECT: --display collides with Elementor's reserved container variable.
   Elementor sets --display:flex on .e-con flex containers; it inherits down to
   headings, so font-family:var(--display) resolved to the invalid family "flex".
   Re-point heading fonts to a non-colliding --tol-display. Body text uses --body,
   which Elementor does not reserve, so it is left untouched. */
:root{ --tol-display:"freight-big-pro", Georgia, serif; }
.elementor-heading-title{ font-family:var(--tol-display); }
h1.elementor-heading-title, .tol-hero h1{ font-family:var(--tol-display); }
h2.elementor-heading-title, h3.elementor-heading-title{ font-family:var(--tol-display); }
.tol-page-hero h1.elementor-heading-title{ font-family:var(--tol-display); }
.tol-stats .elementor-heading-title{ font-family:var(--tol-display); }
.tol-archive .elementor-post__title a{ font-family:var(--tol-display); }
/* >>> TOL TYPE SYSTEM AUTOCORRECT END <<< */

/* >>> TOL TEXT CENTER FIX START <<< */
.tol-text-center .elementor-widget-text-editor,
.tol-text-center .elementor-widget-text-editor p,
.tol-page-hero .elementor-widget-text-editor,
.tol-page-hero .elementor-widget-text-editor p,
.tol-feature .elementor-widget-text-editor,
.tol-feature .elementor-widget-text-editor p{ text-align:center; }
/* keep editorial rows + any explicitly left blocks left */
.elementor-element-5a09665 .elementor-widget-text-editor,
.elementor-element-5a09665 .elementor-widget-text-editor p,
.tol-text-left .elementor-widget-text-editor,
.tol-text-left .elementor-widget-text-editor p{ text-align:left; }
/* >>> TOL TEXT CENTER FIX END <<< */

/* >>> TOL SERVICES ROWS START <<< */
/* superseded by HOME-VLUX */
/* >>> TOL SERVICES ROWS END <<< */

/* >>> HOME-VLUX START <<< */
.tol-site{ --vlux-y: clamp(84px,9vw,152px); --vlux-gap: clamp(14px,1.4vw,22px); }
.page-id-14 h1{ font-size:clamp(2.8rem,6vw,5.2rem); line-height:1.02; letter-spacing:-0.01em; }
.page-id-14 h2{ font-size:clamp(2.1rem,3.6vw,3.4rem); line-height:1.06; letter-spacing:-0.005em; }

/* >>> TOL BENTO STAGE B RETIRED 2026-07-09 — dead: .tol-editorial-frame base block (old centered
   intro/closing "frame" pattern; ZERO live elements site-wide, superseded by #care-start and
   .tol-editorial-row). Removed as dead per-section CSS; full original in /tmp/tol-pB/orchid.css.preB
   (incl. the ::before sprig SVG data-URI). Grouped .tol-editorial-frame selectors elsewhere are also
   inert (zero elements) and left untouched to avoid disturbing the live selectors they share a rule with. <<< */

/* BENTO services */
.tol-site .tol-bento{ display:grid; gap:var(--vlux-gap); grid-template-columns:repeat(3,1fr); grid-auto-rows:minmax(220px,auto); }
.tol-site .tol-card{ position:relative; overflow:hidden; border-radius:2px; min-height:260px; background:#0d0a08; isolation:isolate; }
.tol-site .tol-card.tol-anchor{ grid-column:1/3; grid-row:1/3; }
.tol-site .tol-card.tol-b{ grid-column:3/4; grid-row:1/2; }
.tol-site .tol-card.tol-c{ grid-column:3/4; grid-row:2/3; }
.tol-site .tol-card.tol-d{ grid-column:1/4; grid-row:3/4; min-height:300px; }
.tol-site .tol-card .elementor-widget-image{ position:absolute; inset:0; margin:0; z-index:0; }
.tol-site .tol-card .elementor-widget-image .elementor-widget-container,
.tol-site .tol-card .elementor-widget-image img{ width:100%; height:100%; object-fit:cover; display:block; }
.tol-site .tol-card .elementor-widget-image img{ transition:transform 1.2s cubic-bezier(.2,.7,.2,1); }
.tol-site .tol-card:hover .elementor-widget-image img{ transform:scale(1.05); }
.tol-site .tol-card::after{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(20,12,16,0) 38%, rgba(20,12,16,.18) 60%, rgba(20,12,16,.72) 100%); }
.tol-site .tol-card > .e-con-inner{ position:relative; z-index:2; display:flex; flex-direction:column; justify-content:flex-end; height:100%; padding:clamp(20px,2vw,34px); gap:6px; }
.tol-site .tol-card .elementor-widget-heading *{ color:#fff; }
.tol-site .tol-card .elementor-widget-text-editor{ position:relative; z-index:2; color:rgba(255,255,255,.82); max-width:42ch; opacity:0; transform:translateY(8px); transition:opacity .6s ease, transform .6s ease; }
.tol-site .tol-card:hover .elementor-widget-text-editor{ opacity:1; transform:none; }
.tol-site .tol-card[data-idx]::before{ content:attr(data-idx); position:absolute; top:clamp(16px,1.6vw,26px); left:clamp(20px,2vw,34px); z-index:2; color:rgba(255,255,255,.7); font-family:var(--body); font-weight:500; letter-spacing:.18em; font-size:.72rem; }

/* GALLERY bento */
.page-id-14 .tol-gallery-bento{ display:grid; gap:var(--vlux-gap); grid-template-columns:repeat(4,1fr); grid-auto-rows:1fr; }
.page-id-14 .tol-gallery-bento > *{ overflow:hidden; aspect-ratio:1/1; }
.page-id-14 .tol-gallery-bento > *:nth-child(1){ grid-column:span 2; grid-row:span 2; aspect-ratio:auto; }
.page-id-14 .tol-gallery-bento > *:nth-child(6){ grid-column:span 2; aspect-ratio:auto; }
.page-id-14 .tol-gallery-bento img{ width:100%; height:100%; object-fit:cover; transition:transform 1.2s cubic-bezier(.2,.7,.2,1); }
.page-id-14 .tol-gallery-bento > *:hover img{ transform:scale(1.06); }

/* reveal + motion */
.tol-js .page-id-14 .tol-reveal, .tol-js .page-id-14 .tol-editorial-frame{ opacity:0; transform:translateY(24px); transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); will-change:opacity,transform; }
.page-id-14 .tol-reveal.is-revealed, .page-id-14 .tol-editorial-frame.is-revealed{ opacity:1; transform:none; }
.page-id-14 .tol-kenburns{ animation:tolKen 18s ease-in-out infinite alternate; }
@keyframes tolKen{ from{ transform:scale(1.02);} to{ transform:scale(1.10);} }
.page-id-14 .tol-parallax{ will-change:transform; }

@media (max-width:1024px){
  .tol-site .tol-bento{ grid-template-columns:repeat(2,1fr); }
  .tol-site .tol-card.tol-anchor{ grid-column:1/3; grid-row:auto; min-height:340px; }
  .tol-site .tol-card.tol-b,.tol-site .tol-card.tol-c{ grid-column:auto; grid-row:auto; }
  .tol-site .tol-card.tol-d{ grid-column:1/3; grid-row:auto; }
  .page-id-14 .tol-gallery-bento{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:820px){
  .tol-site .tol-bento{ grid-template-columns:1fr; }
  .tol-site .tol-card{ grid-column:1/-1 !important; grid-row:auto !important; min-height:300px; }
  .tol-site .tol-card .elementor-widget-text-editor{ opacity:1; transform:none; }
  .page-id-14 .tol-gallery-bento{ grid-template-columns:repeat(2,1fr); }
  .page-id-14 .tol-gallery-bento > *:nth-child(1),.page-id-14 .tol-gallery-bento > *:nth-child(6){ grid-column:auto; grid-row:auto; aspect-ratio:1/1; }
}
@media (prefers-reduced-motion:reduce){
  .page-id-14 .tol-reveal,.page-id-14 .tol-editorial-frame{ opacity:1 !important; transform:none !important; }
  .page-id-14 .tol-kenburns{ animation:none !important; }
}
/* >>> HOME-VLUX END <<< */

/* >>> HOME-VLUX AUTOCORRECT START <<< */
/* Service cards have NO .e-con-inner wrapper (image/heading/text are direct
   children of .tol-card). The HOME-VLUX `.tol-card > .e-con-inner` content
   rule therefore never matched. Re-point the bottom-anchored overlay layout
   to the card itself; the image is position:absolute (out of flow) so flex
   stacks only the heading + text at the bottom. */
.tol-site .tol-card{ display:flex; flex-direction:column; justify-content:flex-end; padding:clamp(20px,2vw,34px); gap:6px; }
.tol-site .tol-card > .elementor-widget-heading,
.tol-site .tol-card > .elementor-widget-text-editor{ position:relative; z-index:2; }

/* This Elementor install uses optimized DOM output: widgets render WITHOUT a
   .elementor-widget-container wrapper, so the HOME-VLUX image-fill and motif
   ::before rules that depended on that wrapper were no-ops. Re-point them. */

/* (a) image must truly fill the tile — kill the widget margin, force absolute fill */
.tol-site .tol-card .elementor-widget-image{ position:absolute !important; inset:0 !important; margin:0 !important; height:auto !important; }
.tol-site .tol-card .elementor-widget-image img{ width:100% !important; height:100% !important; object-fit:cover; margin:0 !important; display:block; }

/* (b) signature orchid motif: re-host the ::before on the first heading widget itself */
.tol-site .tol-editorial-frame .elementor-widget-heading:first-of-type::before{
  content:""; display:block; width:28px; height:28px; margin:0 auto 22px; opacity:.85;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E1248' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M12 3c-1.4 2-1.4 4.4 0 6.4 1.4-2 1.4-4.4 0-6.4z'/%3E%3Cpath d='M12 10C9.6 8.4 6.8 8.8 5 10.6c2 1.6 4.8 1.4 7-.6z'/%3E%3Cpath d='M12 10c2.4-1.6 5.2-1.2 7 .6-2 1.6-4.8 1.4-7-.6z'/%3E%3Cpath d='M12 10c-1 3-1 7 0 11 1-4 1-8 0-11z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* (c) gallery: real images aren't square; aspect-ratio:auto let the 2x2 tile grow
   to ~1566px. Fixed auto-rows keep spanning tiles a clean 2x and images cover. */
.page-id-14 .tol-gallery-bento{ grid-auto-rows:clamp(150px,15vw,212px) !important; }
.page-id-14 .tol-gallery-bento > *{ aspect-ratio:auto !important; height:auto; }
.page-id-14 .tol-gallery-bento > * img{ width:100%; height:100%; object-fit:cover; }
@media (max-width:820px){
  .page-id-14 .tol-gallery-bento{ grid-auto-rows:clamp(120px,42vw,180px) !important; }
}
/* >>> HOME-VLUX AUTOCORRECT END <<< */

/* >>> TOL TEXT CENTER FIX V2 START <<< */
/* The center fix set text-align:center but the paragraph keeps a max-width; with
   no auto inline-margin the constrained BOX hugs the left, so centered text reads
   off-center (e.g. f72b8bf, 1c4eb7b, footer copyright). Center the box too. */
.tol-text-center .elementor-widget-text-editor p,
.tol-page-hero .elementor-widget-text-editor p,
.tol-feature .elementor-widget-text-editor p,
.tol-editorial-frame .elementor-widget-text-editor p{ margin-inline:auto; }
/* explicit-left contexts keep their box hard-left (hero is not in the set above) */
.tol-text-left .elementor-widget-text-editor p,
.elementor-element-5a09665 .elementor-widget-text-editor p{ margin-inline:0; }
/* >>> TOL TEXT CENTER FIX V2 END <<< */

/* >>> TOL LUXE V2 START <<< */
/* 4d — tighter vertical rhythm on page 14 (reduce oversized empty bands) */
.tol-site{ --vlux-y:clamp(72px,7vw,120px); }
.tol-site .tol-section-pad{ padding-block:clamp(72px,7vw,120px) !important; }
.tol-site .tol-editorial-frame{ padding-block:clamp(72px,7vw,120px); }
.tol-site .tol-quickform{ padding-block:clamp(72px,7vw,120px); } /* applies once Part 1 section exists */

/* 4a — card supporting copy ALWAYS visible (no hover-gating); keep a subtle card lift */
.tol-site .tol-card .elementor-widget-text-editor{ opacity:1 !important; transform:none !important; color:rgba(255,255,255,.92) !important; text-shadow:0 1px 12px rgba(0,0,0,.45); }
.tol-site .tol-card .elementor-widget-heading *{ text-shadow:0 1px 14px rgba(0,0,0,.5); }
.tol-site .tol-card{ transition:transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s ease; }
.tol-site .tol-card:hover{ transform:translateY(-4px); box-shadow:0 24px 60px rgba(20,12,16,.30); }
/* deepen the scrim so heading + line clear 4.5:1 over imagery */
.tol-site .tol-card::after{ background:linear-gradient(180deg, rgba(18,11,15,0) 28%, rgba(18,11,15,.34) 55%, rgba(18,11,15,.84) 100%) !important; }

/* 4b — image fills the whole tile, no dead floor; content pinned bottom, number top */
.tol-site .tol-card{ justify-content:flex-end; }
.tol-site .tol-card > .elementor-widget-image{ position:absolute !important; inset:0 !important; margin:0 !important; height:auto !important; }
.tol-site .tol-card > .elementor-widget-image img{ width:100% !important; height:100% !important; object-fit:cover; display:block; margin:0 !important; }

/* 4c — gallery real bento (items are e-gallery CSS-background tiles, full-bleed cover) */
.page-id-14 .tol-gallery-bento{ display:grid !important; grid-template-columns:repeat(4,1fr) !important; grid-auto-rows:clamp(150px,15vw,210px) !important; gap:var(--vlux-gap,16px); }
.page-id-14 .tol-gallery-bento > *{ overflow:hidden; aspect-ratio:auto !important; height:auto; background-size:cover; background-position:center; }
.page-id-14 .tol-gallery-bento > *:nth-child(1){ grid-column:span 2; grid-row:span 2; }
.page-id-14 .tol-gallery-bento > *:nth-child(6){ grid-column:span 2; }
.page-id-14 .tol-gallery-bento img{ width:100%; height:100%; object-fit:cover; }
.page-id-14 .tol-gallery-bento > *,
.page-id-14 .tol-gallery-bento .e-gallery-item{ transition:transform 1.1s cubic-bezier(.2,.7,.2,1); }
.page-id-14 .tol-gallery-bento .e-gallery-item:hover{ transform:scale(1.04); }
@media (max-width:820px){
  .page-id-14 .tol-gallery-bento{ grid-template-columns:repeat(2,1fr) !important; grid-auto-rows:clamp(150px,30vw,210px) !important; }
  .page-id-14 .tol-gallery-bento > *:nth-child(1),
  .page-id-14 .tol-gallery-bento > *:nth-child(6){ grid-column:auto; grid-row:auto; }
}
@media (max-width:430px){
  .page-id-14 .tol-gallery-bento{ grid-template-columns:repeat(2,1fr) !important; grid-auto-rows:clamp(120px,40vw,170px) !important; }
}
/* >>> TOL LUXE V2 END <<< */

/* >>> TOL QUICKFORM START <<< */
html{ scroll-behavior:smooth; }
#quick-contact{ scroll-margin-top:148px; } /* >= sticky header height (135px measured) so the form clears the header */
.tol-quickform-inner{ max-width:680px; margin-inline:auto; }
.tol-quickform .elementor-widget-form{ text-align:left; }
.tol-quickform .elementor-form-fields-wrapper{ gap:18px; }
.tol-quickform .elementor-field-group{ margin-bottom:0; }
.tol-quickform .elementor-field-group > label{ display:block; margin-bottom:7px; color:var(--ash,#6E665E); font-size:.72rem; }
.tol-quickform .elementor-field-group .elementor-field{
  width:100%; background:#fff; border:1px solid var(--bd,rgba(43,37,32,.12)) !important; border-radius:2px;
  padding:14px 16px !important; color:var(--ink,#2B2520); font-family:var(--body); font-size:1rem; line-height:1.5;
  transition:border-color .25s ease, box-shadow .25s ease; box-shadow:none; }
.tol-quickform textarea.elementor-field{ min-height:140px; resize:vertical; }
.tol-quickform .elementor-field::placeholder{ color:color-mix(in srgb, var(--ash,#6E665E) 65%, #fff); }
.tol-quickform .elementor-field:focus{ outline:none; border-color:var(--fuchsia,#6E1248) !important;
  box-shadow:0 0 0 3px color-mix(in srgb, var(--fuchsia,#6E1248) 20%, transparent); }
.tol-quickform .elementor-button[type="submit"],
.tol-quickform button.elementor-button,
.tol-quickform .elementor-field-type-submit .elementor-button{
  background:var(--blush,#C2477E) !important; border:1px solid var(--blush,#C2477E) !important; color:#fff !important;
  border-radius:2px; padding:16px 40px !important; width:auto;
  font-family:var(--body) !important; font-weight:600; text-transform:uppercase; letter-spacing:.18em; font-size:.82rem;
  box-shadow:0 10px 30px color-mix(in srgb, var(--blush,#C2477E) 28%, transparent);
  transition:background .25s, box-shadow .25s, transform .25s; cursor:pointer; }
.tol-quickform .elementor-button:hover{ background:var(--fuchsia,#6E1248) !important; border-color:var(--fuchsia,#6E1248) !important;
  transform:translateY(-2px); box-shadow:0 14px 38px color-mix(in srgb, var(--fuchsia,#6E1248) 32%, transparent); }
.tol-quickform .tol-contact-line .elementor-heading-title{ display:block; margin-top:24px; color:var(--ash,#6E665E); font-size:.85rem; letter-spacing:.04em; text-transform:none; }
.tol-quickform .elementor-message{ text-align:left; }
@media (max-width:680px){
  .tol-quickform-inner{ max-width:100%; }
  .tol-quickform .elementor-button[type="submit"],.tol-quickform button.elementor-button{ width:100%; }
}
/* >>> TOL QUICKFORM END <<< */

/* >>> TOL EDITOR FIX START <<< */
.elementor-editor-active .tol-reveal,
.elementor-editor-active .tol-reveal-l,
.elementor-editor-active .tol-reveal-r,
.elementor-editor-active .tol-editorial-frame,
.elementor-editor-active .tol-card .elementor-widget-text-editor{ opacity:1 !important; transform:none !important; }
/* Care reveal (TOL CARE REVEAL) hides the editorial MEDIA + copy widgets + ghost number until the
   scroll observer adds .revealed — which never runs in the editor, so they stayed invisible while
   editing (the rule above only un-hid the row-level .tol-reveal, not these children). Neutralise them
   in-editor too. Unscoped so any .tol-editorial-row on any page is safe in the editor; front end untouched. */
.elementor-editor-active .tol-editorial-row .tol-editorial-media,
.elementor-editor-active .tol-editorial-row .tol-editorial-copy > .elementor-widget{ opacity:1 !important; transform:none !important; }
.elementor-editor-active .tol-editorial-row .tol-editorial-copy::before{ opacity:.5 !important; transform:none !important; }
/* >>> TOL EDITOR FIX END <<< */

/* >>> TOL TESTI FIX START <<< */
.tolx .tolx-dots .tolx-dot{ width:8px !important; height:8px !important; min-width:0 !important; padding:0 !important; border:none !important; border-radius:50% !important; background:rgba(43,37,32,.2) !important; box-shadow:none !important; }
.tolx .tolx-dots .tolx-dot.is-active{ width:22px !important; border-radius:4px !important; background:#C2477E !important; }
.tolx .tolx-nav{ min-width:0 !important; }
.tolx .tolx-card.is-side{ opacity:.4 !important; }
/* >>> TOL TESTI FIX END <<< */

/* >>> TOL SPLIT V1 START <<< */
.tol-split > .e-con-inner{ display:grid; grid-template-columns:1.02fr .98fr; gap:clamp(28px,5vw,72px) clamp(36px,5vw,84px); align-items:center; max-width:1180px; margin-inline:auto; text-align:left; }
.tol-split .tol-ownerphoto{ grid-column:1; grid-row:1 / -1; align-self:center; position:relative; margin:0; }
.tol-split > .e-con-inner > :not(.tol-ownerphoto){ grid-column:2; text-align:left; }
.tol-split .tol-ownerphoto img{ position:relative; z-index:1; width:100%; height:auto; display:block; border-radius:2px; box-shadow:0 30px 70px -36px rgba(43,37,32,.5); }
.tol-split .tol-ownerphoto::after{ content:""; position:absolute; z-index:0; inset:0; transform:translate(20px,20px); border:1px solid rgba(110,18,72,.45); border-radius:2px; pointer-events:none; }
.tol-split h2{ max-width:18ch; margin-inline:0; }
.tol-split p{ max-width:46ch; margin-inline:0; }
/* keep the signature mark, left aligned */
.tol-split .elementor-widget-heading:first-of-type .elementor-widget-container::before{
  content:""; display:block; width:26px; height:26px; margin:0 0 18px; opacity:.85;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E1248' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M12 3c-1.4 2-1.4 4.4 0 6.4 1.4-2 1.4-4.4 0-6.4z'/%3E%3Cpath d='M12 10C9.6 8.4 6.8 8.8 5 10.6c2 1.6 4.8 1.4 7-.6z'/%3E%3Cpath d='M12 10c2.4-1.6 5.2-1.2 7 .6-2 1.6-4.8 1.4-7-.6z'/%3E%3Cpath d='M12 10c-1 3-1 7 0 11 1-4 1-8 0-11z'/%3E%3C/svg%3E") center/contain no-repeat; }
/* directional reveals */
.tol-js .tol-reveal-l{ opacity:0; transform:translateX(-28px); transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.tol-js .tol-reveal-r{ opacity:0; transform:translateX(28px); transition:opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.tol-reveal-l.is-revealed, .tol-reveal-r.is-revealed{ opacity:1; transform:none; }
/* offset asymmetric block (Delivery) */
.tol-offset > .e-con-inner{ max-width:1180px; margin-inline:auto; text-align:left; }
.tol-offset .elementor-widget-heading, .tol-offset .elementor-widget-text-editor{ text-align:left; }
.tol-offset h2, .tol-offset p{ margin-inline:0; }
.tol-offset > .e-con-inner{ padding-left:clamp(0px,6vw,120px); }
.tol-offset h2{ max-width:20ch; }
.tol-offset p{ max-width:52ch; }
.tol-offset .elementor-widget-heading:first-of-type{ border-left:2px solid #C2477E; padding-left:22px; }
@media (max-width:900px){
  .tol-split > .e-con-inner{ grid-template-columns:1fr; gap:26px; }
  .tol-split .tol-ownerphoto{ grid-column:1; grid-row:auto; }
  .tol-split > .e-con-inner > :not(.tol-ownerphoto){ grid-column:1; }
  .tol-split .tol-ownerphoto::after{ transform:translate(12px,12px); }
  .tol-offset > .e-con-inner{ padding-left:0; }
}
/* >>> TOL SPLIT V1 END <<< */

/* >>> TOL SPLIT V1 AUTOCORRECT START <<< */
/* This install: sections are full-width with NO .e-con-inner, and the copy lives in a nested
   boxed container. So the verbatim `.tol-split > .e-con-inner` grid + `.tol-offset > .e-con-inner`
   never match. Re-point the grid to the real wrapper (.tol-split-inner) and the offset to the
   real inner (.tol-offset-inner). Also re-host the signature ::before (no .elementor-widget-container). */
.tol-site .tol-split .tol-split-inner{ display:grid; grid-template-columns:1.02fr .98fr; gap:clamp(28px,5vw,72px) clamp(36px,5vw,84px); align-items:center; max-width:1180px; margin-inline:auto; text-align:left; }
.tol-site .tol-split .tol-split-inner > :not(.tol-ownerphoto){ grid-column:2; text-align:left; }
.tol-site .tol-split .tol-ownerphoto{ grid-column:1; grid-row:1 / -1; }
.tol-site .tol-split .tol-split-copy{ display:flex; flex-direction:column; gap:14px; }
.tol-site .tol-split .elementor-widget-heading:first-of-type::before{
  content:""; display:block; width:26px; height:26px; margin:0 0 18px; opacity:.85;
  background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E1248' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M12 3c-1.4 2-1.4 4.4 0 6.4 1.4-2 1.4-4.4 0-6.4z'/%3E%3Cpath d='M12 10C9.6 8.4 6.8 8.8 5 10.6c2 1.6 4.8 1.4 7-.6z'/%3E%3Cpath d='M12 10c2.4-1.6 5.2-1.2 7 .6-2 1.6-4.8 1.4-7-.6z'/%3E%3Cpath d='M12 10c-1 3-1 7 0 11 1-4 1-8 0-11z'/%3E%3C/svg%3E") center/contain no-repeat; }
.tol-site .tol-offset .tol-offset-inner{ max-width:1180px; margin-inline:auto; text-align:left; padding-left:clamp(0px,6vw,120px); }
.tol-site .tol-offset .tol-offset-inner .elementor-widget-heading,
.tol-site .tol-offset .tol-offset-inner .elementor-widget-text-editor{ text-align:left; }
.tol-site .tol-offset .tol-offset-inner h2, .tol-site .tol-offset .tol-offset-inner p{ margin-inline:0; }
.tol-site .tol-offset .tol-offset-inner .elementor-widget-heading:first-of-type{ border-left:2px solid #C2477E; padding-left:22px; }
@media (max-width:900px){
  .tol-site .tol-split .tol-split-inner{ grid-template-columns:1fr; gap:26px; }
  .tol-site .tol-split .tol-split-inner > :not(.tol-ownerphoto){ grid-column:1; }
  .tol-site .tol-split .tol-ownerphoto{ grid-column:1; grid-row:auto; }
  .tol-site .tol-offset .tol-offset-inner{ padding-left:0; }
}
/* >>> TOL SPLIT V1 AUTOCORRECT END <<< */

/* >>> TOL RAIL 1440 START <<< */
:root{ --tol-rail:1440px; }
.tol-site .tol-split > .e-con-inner,
.tol-site .tol-offset > .e-con-inner,
.tol-site .tol-editorial-frame > .e-con-inner,
.page-id-14 .tolx,
.page-id-14 .tol-faq-inner,
.tol-site .tol-blog-inner,
.tol-site .tol-quickform-inner{ max-width:var(--tol-rail); margin-inline:auto; padding-inline:clamp(20px,4vw,64px); }
/* >>> TOL RAIL 1440 END <<< */

/* >>> TOL RAIL 1440 AUTOCORRECT START <<< */
/* Sections have no .e-con-inner here; the real inner wrappers are .tol-split-inner /
   .tol-offset-inner. Apply the 1440 rail (overriding the prior 1180 split max-width). */
.tol-site .tol-split-inner,
.tol-site .tol-offset-inner{ max-width:var(--tol-rail) !important; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); }
/* >>> TOL RAIL 1440 AUTOCORRECT END <<< */

/* >>> TOL QUICKFORM SPLIT START <<< */
.tol-site .tol-quickform-inner{ display:grid; grid-template-columns:38fr 62fr; gap:clamp(32px,5vw,80px); align-items:start; text-align:left; }
.tol-site .tol-quickform-inner .tol-qf-left{ align-self:center; }
.tol-site .tol-quickform-inner .tol-qf-left h2{ max-width:16ch; margin:0 0 16px; text-align:left; }
.tol-site .tol-quickform-inner .tol-qf-left p{ max-width:42ch; margin:0 0 22px; text-align:left; color:var(--ash); }
.tol-site .tol-qf-contact a{ display:block; color:var(--ink); text-decoration:none; font-family:var(--body); letter-spacing:.02em; padding:8px 0; border-bottom:1px solid var(--bd); transition:color .2s; }
.tol-site .tol-qf-contact a:hover{ color:var(--plum); }
.tol-site .tol-qf-contact a .lab{ display:inline-block; min-width:54px; color:var(--blush); font-weight:500; text-transform:uppercase; letter-spacing:.18em; font-size:.7rem; }
@media (max-width:900px){ .tol-site .tol-quickform-inner{ grid-template-columns:1fr; gap:28px; } }
/* >>> TOL QUICKFORM SPLIT END <<< */

/* >>> TOL SLIDESHOW START <<< */
.tol-slideshow{ position:relative; width:100%; aspect-ratio:4/5; border-radius:2px; overflow:hidden; isolation:isolate; }
.tol-slideshow .slide{ position:absolute; inset:0; opacity:0; transition:opacity 1.4s ease; background-size:cover; background-position:center; }
.tol-slideshow .slide.is-on{ opacity:1; }
.tol-split-img-right > .e-con-inner{ display:grid; grid-template-columns:.98fr 1.02fr; gap:clamp(28px,5vw,72px) clamp(36px,5vw,84px); align-items:center; }
.tol-split-img-right .tol-slideshow-wrap{ position:relative; grid-column:2; }
.tol-split-img-right > .e-con-inner > :not(.tol-slideshow-wrap){ grid-column:1; text-align:left; }
.tol-split-img-right .tol-slideshow-wrap::after{ content:""; position:absolute; inset:0; transform:translate(20px,20px); border:1px solid rgba(110,18,72,.45); border-radius:2px; pointer-events:none; z-index:2; }
.tol-split-img-right h2, .tol-split-img-right p{ margin-inline:0; }
.tol-split-img-right h2{ max-width:18ch; } .tol-split-img-right p{ max-width:46ch; color:var(--ash); }
@media (max-width:900px){
  .tol-split-img-right > .e-con-inner{ grid-template-columns:1fr; }
  .tol-split-img-right .tol-slideshow-wrap{ grid-column:1; }
  .tol-split-img-right > .e-con-inner > :not(.tol-slideshow-wrap){ grid-column:1; }
  .tol-slideshow{ aspect-ratio:3/2; }
}
/* AUTOCORRECT: no .e-con-inner -> grid on the real .tol-split-inner wrapper for the right-image split */
.page-id-14 .tol-split-img-right .tol-split-inner{ display:grid; grid-template-columns:.98fr 1.02fr; gap:clamp(28px,5vw,72px) clamp(36px,5vw,84px); align-items:center; }
.page-id-14 .tol-split-img-right .tol-split-inner > .tol-slideshow-wrap{ grid-column:2; position:relative; }
.page-id-14 .tol-split-img-right .tol-split-inner > :not(.tol-slideshow-wrap){ grid-column:1; text-align:left; }
.page-id-14 .tol-split-img-right .tol-slideshow-wrap::after{ content:""; position:absolute; inset:0; transform:translate(20px,20px); border:1px solid rgba(110,18,72,.45); border-radius:2px; pointer-events:none; z-index:2; }
@media (max-width:900px){
  .page-id-14 .tol-split-img-right .tol-split-inner{ grid-template-columns:1fr; }
  .page-id-14 .tol-split-img-right .tol-split-inner > .tol-slideshow-wrap,
  .page-id-14 .tol-split-img-right .tol-split-inner > :not(.tol-slideshow-wrap){ grid-column:1; }
}
/* >>> TOL SLIDESHOW END <<< */

/* >>> TOL BLOG START <<< */
.tol-site .tol-blog{ }
.tol-site .tol-blog-head{ text-align:center; margin:0 auto clamp(36px,5vw,56px); max-width:680px; }
.tol-site .tol-blog-h-eyebrow{ display:inline-block; color:var(--blush); font-size:.7rem; font-weight:500; letter-spacing:.28em; text-transform:uppercase; margin:0 0 14px; }
.tol-site .tol-blog-mark{ display:block; width:26px; height:26px; margin:0 auto 16px; background:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E1248' stroke-width='1' stroke-linecap='round'%3E%3Cpath d='M12 3c-1.4 2-1.4 4.4 0 6.4 1.4-2 1.4-4.4 0-6.4z'/%3E%3Cpath d='M12 10C9.6 8.4 6.8 8.8 5 10.6c2 1.6 4.8 1.4 7-.6z'/%3E%3Cpath d='M12 10c2.4-1.6 5.2-1.2 7 .6-2 1.6-4.8 1.4-7-.6z'/%3E%3Cpath d='M12 10c-1 3-1 7 0 11 1-4 1-8 0-11z'/%3E%3C/svg%3E") center/contain no-repeat; }
.tol-site .tol-blog-h2{ color:var(--ink); font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:300; font-size:clamp(2rem,3.4vw,3.1rem); line-height:1.06; margin:0; }
.tol-site .tol-blog-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:clamp(24px,3vw,46px); align-items:start; }
.tol-site .tol-blog-stack{ display:flex; flex-direction:column; gap:clamp(24px,3vw,46px); }
.tol-site .tol-blog-feature, .tol-site .tol-blog-card{ display:flex; flex-direction:column; text-decoration:none; color:var(--ink); transition:transform .4s cubic-bezier(.2,.7,.2,1); }
.tol-site .tol-blog-card{ flex-direction:row; gap:18px; align-items:flex-start; }
.tol-site .tol-blog-feature:hover, .tol-site .tol-blog-card:hover{ transform:translateY(-4px); }
.tol-site .tol-blog-media{ position:relative; display:block; border-radius:2px; overflow:hidden; }
.tol-site .tol-blog-feature .tol-blog-media{ aspect-ratio:4/3; margin-bottom:22px; }
.tol-site .tol-blog-card .tol-blog-media{ flex:0 0 38%; aspect-ratio:1/1; }
.tol-site .tol-blog-media .tol-blog-img,
.tol-site .tol-blog-media .tol-blog-fallback{ width:100%; height:100%; object-fit:cover; display:block; }
.tol-site .tol-blog-frame{ overflow:visible; }
.tol-site .tol-blog-frame .tol-blog-img,.tol-site .tol-blog-frame .tol-blog-fallback{ border-radius:2px; }
.tol-site .tol-blog-frame::after{ content:""; position:absolute; inset:0; transform:translate(18px,18px); border:1px solid rgba(110,18,72,.42); border-radius:2px; z-index:-1; pointer-events:none; }
.tol-site .tol-blog-body{ display:flex; flex-direction:column; gap:8px; }
.tol-site .tol-blog-meta{ display:flex; align-items:center; gap:12px; }
.tol-site .tol-blog-eyebrow{ color:var(--blush); font-size:.64rem; font-weight:500; text-transform:uppercase; letter-spacing:.22em; }
.tol-site .tol-blog-date{ color:var(--ash); font-size:.72rem; letter-spacing:.04em; }
.tol-site .tol-blog-title{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:300; color:var(--ink); margin:2px 0 4px; line-height:1.12; }
.tol-site .tol-blog-feature .tol-blog-title{ font-size:clamp(1.5rem,2.4vw,2.1rem); max-width:20ch; }
.tol-site .tol-blog-card .tol-blog-title{ font-size:clamp(1.05rem,1.5vw,1.28rem); }
.tol-site .tol-blog-excerpt{ color:var(--ash); font-size:.95rem; line-height:1.6; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.tol-site .tol-blog-read{ margin-top:8px; color:var(--plum); font-family:var(--body); font-weight:600; text-transform:uppercase; letter-spacing:.18em; font-size:.7rem; }
.tol-site .tol-blog-feature:hover .tol-blog-read,.tol-site .tol-blog-card:hover .tol-blog-read{ color:var(--blush); }
.tol-site .tol-blog-cta{ text-align:center; margin-top:clamp(36px,4vw,56px); }
.tol-site .tol-blog-visit{ display:inline-flex; align-items:center; gap:9px; color:var(--plum); text-decoration:none; font-size:.78rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; padding:14px 28px; border:1px solid rgba(110,18,72,.4); border-radius:2px; transition:background .25s,color .25s,transform .25s; }
.tol-site .tol-blog-visit:hover{ background:var(--plum); color:#fff; transform:translateY(-2px); }
@media (max-width:900px){
  .tol-site .tol-blog-grid{ grid-template-columns:1fr; gap:30px; }
  .tol-site .tol-blog-card{ flex-direction:row; }
}
/* >>> TOL BLOG END <<< */

/* >>> TOL V4 FIX START <<< */
/* FAQ question font was resolving to freight-display-pro via a base heading rule; pin to spec. */
.tol-site .tolfaq .tolfaq-q{ font-family:"freight-big-pro",Georgia,serif !important; }
/* FAQ inner is an Elementor HTML widget (max-width:100% default); apply the rail with force. */
.page-id-14 .tol-faq-inner{ max-width:var(--tol-rail) !important; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); }
/* >>> TOL V4 FIX END <<< */

/* >>> TOL MOTIF REMOVE START <<< */
/* Cross/orchid mark removed everywhere pending a custom SVG.
   HOOK: to re-add, restore a ::before on the eyebrow/heading with the new SVG. */
.tol-site .tol-editorial-frame .elementor-widget-heading:first-of-type::before,
.tol-site .tol-split .elementor-widget-heading:first-of-type::before{ content:none !important; background:none !important; display:none !important; }
.tolx-mark, .tolfaq-mark, .tol-site .tol-blog-mark{ display:none !important; }
/* >>> TOL MOTIF REMOVE END <<< */

/* >>> TOL EYEBROW START <<< */
/* superseded by TOL EYEBROW V3 */
/* >>> TOL EYEBROW END <<< */

/* >>> TOL BTN ALIGN START <<< */
.tol-split .elementor-widget-button, .tol-offset .elementor-widget-button{ text-align:left; }
.tol-split .elementor-widget-button .elementor-button, .tol-offset .elementor-widget-button .elementor-button{ display:inline-flex; }
.tol-split .elementor-widget-button .elementor-button-wrapper, .tol-offset .elementor-widget-button .elementor-button-wrapper{ justify-content:flex-start; text-align:left; }
.tol-site .tol-services-cta, .tol-site .tol-section-cta{ margin-top:clamp(34px,4vw,56px); }
.page-id-14 .e-con.e-parent > .e-con-inner > .elementor-widget-button:last-child{ margin-top:clamp(28px,3.5vw,48px); }
/* >>> TOL BTN ALIGN END <<< */

/* >>> TOL BENTO READ START <<< */
.tol-site .tol-card::after{ content:""; position:absolute; inset:0; z-index:1; pointer-events:none;
  background:linear-gradient(180deg, rgba(20,12,16,0) 30%, rgba(20,12,16,.28) 52%, rgba(20,12,16,.78) 100%); }
.tol-site .tol-card > .e-con-inner{ position:relative; z-index:2; }
.tol-site .tol-card .elementor-widget-heading *{ text-shadow:0 1px 14px rgba(0,0,0,.45); }
.tol-site .tol-card .elementor-widget-text-editor{ color:rgba(255,255,255,.94) !important; opacity:1 !important; transform:none !important; text-shadow:0 1px 12px rgba(0,0,0,.5); font-size:.95rem; line-height:1.5; max-width:42ch; }
/* >>> TOL BENTO READ END <<< */

/* >>> TOL FEATURE V2 START <<< */
.page-id-14 .tol-feature{ position:relative; }
.page-id-14 .tol-feature::before{ content:""; position:absolute; inset:0; z-index:0;
  background:linear-gradient(180deg, rgba(43,18,40,.62) 0%, rgba(43,18,40,.50) 45%, rgba(20,10,18,.74) 100%); }
.page-id-14 .tol-feature > .e-con-inner{ position:relative; z-index:1; padding-block:clamp(120px,14vw,200px); max-width:720px; margin-inline:auto; }
.page-id-14 .tol-feature h2{ font-size:clamp(2.4rem,4.6vw,4rem); line-height:1.04; }
.page-id-14 .tol-feature p{ max-width:48ch; margin-inline:auto; color:rgba(255,255,255,.9); }
.page-id-14 .tol-feature .elementor-widget-button{ margin-top:8px; }
/* >>> TOL FEATURE V2 END <<< */

/* >>> TOL TESTI NAV START <<< */
.tolx .tolx-nav{ width:48px !important; height:48px !important; min-width:0 !important; padding:0 !important; border-radius:50% !important; background:transparent !important; border:1px solid rgba(43,37,32,.22) !important; color:var(--ink,#2B2520) !important; box-shadow:none !important; transition:border-color .25s, background .25s, color .25s !important; }
.tolx .tolx-nav:hover{ background:#6E1248 !important; border-color:#6E1248 !important; color:#fff !important; }
.tolx .tolx-nav svg, .tolx .tolx-nav span{ pointer-events:none; }
/* >>> TOL TESTI NAV END <<< */

/* >>> TOL FAQ V2 START <<< */
.tolfaq{ max-width:1080px !important; }
.tolfaq-list{ max-width:980px; margin:0 auto; }
.tolfaq-item{ background:transparent !important; border:0 !important; border-top:1px solid rgba(43,37,32,.16) !important; border-radius:0 !important; margin:0 !important; }
.tolfaq-item:last-child{ border-bottom:1px solid rgba(43,37,32,.16) !important; }
.tolfaq-q{ background:none !important; color:var(--ink,#2B2520) !important; text-transform:none !important; letter-spacing:0 !important; font-family:"freight-big-pro",Georgia,serif !important; font-weight:300 !important; font-size:clamp(1.2rem,1.8vw,1.55rem) !important; padding:30px 6px !important; }
.tolfaq-item.is-open .tolfaq-q{ color:#6E1248 !important; }
.tolfaq-q:hover{ color:#6E1248 !important; }
.tolfaq-ic::before, .tolfaq-ic::after{ background:#6E1248 !important; }
.tolfaq-a-inner{ font-size:1.05rem !important; color:var(--ash,#6E665E) !important; max-width:70ch; }
.tol-site .tol-faq{ position:relative; isolation:isolate; }
.page-id-14 .tol-faq::before{ content:""; position:absolute; inset:0; z-index:-2;
  background-image:url("/wp-content/uploads/2026/06/orchid-arrangement-sarasota-03.jpg"); background-size:cover; background-position:center; background-attachment:fixed; }
.page-id-14 .tol-faq::after{ content:""; position:absolute; inset:0; z-index:-1;
  background:rgba(246,242,236,.90); }
@media (max-width:900px){ .page-id-14 .tol-faq::before{ background-attachment:scroll; } }
/* >>> TOL FAQ V2 END <<< */

/* >>> TOL BLOG FIX START <<< */
.tol-site .tol-blog{ padding-bottom:clamp(80px,9vw,140px); }
.tol-site .tol-blog .tol-journal-cta{ margin-top:clamp(40px,5vw,64px); }
/* >>> TOL BLOG FIX END <<< */

/* >>> TOL QF CONTACT V2 START <<< */
.tol-site .tol-qf-contact a{ display:grid; grid-template-columns:64px 1fr; align-items:baseline; gap:14px; padding:12px 0; border-bottom:1px solid rgba(43,37,32,.12); }
.tol-site .tol-qf-contact a .lab{ color:#A8336B; font-weight:600; text-transform:uppercase; letter-spacing:.2em; font-size:.68rem; }
.tol-site .tol-qf-contact a .val{ color:var(--ink,#2B2520); font-family:"freight-sans-pro",system-ui,sans-serif; font-size:1.05rem; letter-spacing:.01em; }
.tol-site .tol-qf-contact a:hover .val{ color:#6E1248; }
/* >>> TOL QF CONTACT V2 END <<< */

/* >>> TOL V5 FIX START <<< */
/* Feature band has NO .e-con-inner (full-width section); TOL FEATURE V2's `> .e-con-inner`
   rules (padding, max-width, z-index:1) never matched, leaving content UNDER the ::before
   gradient. Re-point to the real inner container (.tol-container) and lift it above the wash. */
.page-id-14 .tol-feature > .tol-container{ position:relative; z-index:1; padding-block:clamp(120px,14vw,200px); max-width:720px; margin-inline:auto; }
/* Buttons in splits/offset were centering (optimized DOM has no .elementor-button-wrapper;
   a base rule forces display:flex + auto margins). Force inline-flex hard-left. */
.tol-site .tol-split .elementor-widget-button .elementor-button,
.tol-site .tol-offset .elementor-widget-button .elementor-button{ display:inline-flex !important; margin-left:0 !important; margin-right:auto !important; width:auto !important; }
/* >>> TOL V5 FIX END <<< */

/* >>> TOL EYEBROW V2 START <<< */
/* superseded by TOL EYEBROW V3 */
/* >>> TOL EYEBROW V2 END <<< */

/* >>> TOL BENTO READ V2 START <<< */
.tol-site .tol-card .elementor-widget-text-editor,
.tol-site .tol-card .elementor-widget-text-editor *{ color:#ffffff !important; opacity:1 !important; }
.tol-site .tol-card .elementor-widget-text-editor{ text-shadow:0 1px 12px rgba(0,0,0,.6), 0 0 2px rgba(0,0,0,.4); font-size:.97rem; line-height:1.5; }
.tol-site .tol-card::after{ background:linear-gradient(180deg, rgba(18,10,14,0) 26%, rgba(18,10,14,.34) 50%, rgba(18,10,14,.82) 100%) !important; }
/* >>> TOL BENTO READ V2 END <<< */

/* >>> TOL FEATURE V3 START <<< */
.page-id-14 .tol-feature::before{ background:linear-gradient(180deg, rgba(38,16,34,.70) 0%, rgba(38,16,34,.56) 45%, rgba(16,8,14,.80) 100%) !important; }
.page-id-14 .tol-feature h2{ text-shadow:0 2px 24px rgba(0,0,0,.55); }
.page-id-14 .tol-feature p{ color:#fff !important; text-shadow:0 1px 16px rgba(0,0,0,.6); }
/* >>> TOL FEATURE V3 END <<< */

/* >>> TOL FAQ V3 START <<< */
.page-id-14 .tol-faq::after{ background:rgba(246,242,236,.93) !important; }
.tolfaq-list{ background:rgba(255,255,255,.42); backdrop-filter:blur(8px); -webkit-backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.5); border-radius:4px; padding:8px clamp(20px,3vw,40px); box-shadow:0 30px 80px -50px rgba(43,37,32,.4); }
/* >>> TOL FAQ V3 END <<< */

/* >>> TOL JOURNAL CTA START <<< */
.tol-site .tol-journal-cta a, .tol-site .tol-journal-cta .elementor-button{ font-family:"freight-sans-pro",system-ui,sans-serif !important; font-weight:600 !important; letter-spacing:.18em !important; text-transform:uppercase !important; color:#6E1248 !important; border:1px solid rgba(110,18,72,.4) !important; background:transparent !important; transition:background .25s,color .25s,border-color .25s !important; }
.tol-site .tol-journal-cta a:hover, .tol-site .tol-journal-cta .elementor-button:hover{ background:#6E1248 !important; color:#ffffff !important; border-color:#6E1248 !important; }
/* >>> TOL JOURNAL CTA END <<< */

/* >>> TOL V6 MISC START <<< */
.tol-site .tol-gallery-cta, .tol-site .tol-section-cta{ margin-top:clamp(34px,4vw,56px); }
.tol-site .tol-blog{ padding-top:clamp(96px,11vw,168px); }
.page-id-14 .tol-recaptcha-note, .page-id-14 .tol-recaptcha-note *{ font-size:.74rem !important; color:var(--ash,#6E665E) !important; letter-spacing:.02em; margin-top:14px; }
/* >>> TOL V6 MISC END <<< */

/* >>> TOL HEADER V2 START <<< */
/* class map: announcement = .tol-topbar-center (no .tol-announce); top links = .tol-top-link/.tol-top-home (no .tol-topbar-link); header main bar = .tol-mainbar (no .tol-header-main) */
.tol-topbar{ font-size:.86rem !important; }
.tol-topbar, .tol-topbar a, .tol-top-link, .tol-top-home{ color:rgba(255,255,255,.96) !important; }
.tol-topbar a:hover{ color:#F4C6DC !important; }
.tol-top-link, .tol-top-home{ font-weight:600 !important; letter-spacing:.12em !important; text-transform:uppercase !important; }
.tol-topbar svg, .tol-topbar i, .tol-topbar img{ opacity:1 !important; width:18px !important; height:18px !important; }
.tol-topbar-center{ font-weight:500 !important; letter-spacing:.01em; color:#fff !important; }
.tol-nav a{ text-transform:uppercase !important; letter-spacing:.16em !important; font-size:.84rem !important; font-weight:600 !important; font-family:"freight-sans-pro",system-ui,sans-serif !important; color:#2B2520 !important; position:relative; padding-bottom:4px; }
.tol-nav a::after{ content:""; position:absolute; left:0; bottom:0; width:0; height:1.5px; background:#6E1248; transition:width .3s ease; }
.tol-nav a:hover::after, .tol-nav a.current-menu-item::after{ width:100%; }
.tol-nav a:hover{ color:#6E1248 !important; }
.tol-logo img{ max-height:96px !important; height:auto !important; width:auto !important; }
.tol-mainbar{ padding-top:18px !important; padding-bottom:18px !important; }
/* >>> TOL HEADER V2 END <<< */

/* >>> TOL FOOTER V2 START <<< */
.tol-footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1.3fr 1fr; gap:clamp(28px,4vw,64px); max-width:1440px; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); align-items:start; }
.tol-footer-colhead{ font-family:"freight-sans-pro",system-ui,sans-serif; font-weight:600; text-transform:uppercase; letter-spacing:.2em; font-size:.72rem; color:rgba(255,255,255,.66); margin:0 0 18px; }
.tol-footer-colhead .elementor-heading-title{ font-family:inherit; font-weight:inherit; letter-spacing:inherit; font-size:inherit; color:inherit; text-transform:inherit; }
.tol-footer-grid a{ color:rgba(255,255,255,.9); text-decoration:none; transition:color .2s; }
.tol-footer-grid a:hover{ color:#F4C6DC; }
.tol-footer-social{ display:flex; gap:12px; margin-top:22px; }
.tol-footer-social a, .tol-footer-social .elementor-social-icon{ width:38px !important; height:38px !important; border:1px solid rgba(255,255,255,.28); border-radius:50%; display:flex; align-items:center; justify-content:center; background:transparent !important; }
.tol-footer-social a:hover, .tol-footer-social .elementor-social-icon:hover{ background:rgba(255,255,255,.12) !important; }
.tol-footer-legal{ display:flex; gap:24px; justify-content:center; flex-wrap:wrap; padding:24px 0; border-top:1px solid rgba(255,255,255,.14); margin-top:clamp(40px,5vw,64px); font-size:.8rem; }
.tol-footer-legal a{ color:rgba(255,255,255,.82); text-decoration:none; }
.tol-footer-legal a:hover{ color:#F4C6DC; }
.tol-footer-copy{ display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; padding:18px clamp(20px,4vw,64px); border-top:1px solid rgba(255,255,255,.14); font-size:.78rem; color:rgba(255,255,255,.7); }
.tol-footer-credit{ display:inline-flex; align-items:center; gap:8px; text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; color:rgba(255,255,255,.7); }
.tol-footer-credit a{ display:inline-flex; align-items:center; }
.tol-footer-credit img{ height:14px; width:auto; display:inline-block; }
@media (max-width:900px){ .tol-footer-grid{ grid-template-columns:1fr 1fr; } .tol-footer-copy{ justify-content:center; text-align:center; } }
@media (max-width:560px){ .tol-footer-grid{ grid-template-columns:1fr; } }
/* >>> TOL FOOTER V2 END <<< */

/* >>> TOL NAV WEIGHT START <<< */
.tol-nav a{ font-weight:500 !important; color:#3A322C !important; }
.tol-nav a:hover, .tol-nav a.current-menu-item{ color:#6E1248 !important; }
/* >>> TOL NAV WEIGHT END <<< */

/* >>> TOL EYEBROW V3 START <<< */
.tol-site .tol-eyebrow, .tolx-eyebrow, .tolfaq-eyebrow{
  display:block; width:fit-content;
  color:#9E2D63 !important;
  font-family:"freight-sans-pro",system-ui,sans-serif !important;
  font-weight:700 !important; letter-spacing:.24em !important; text-transform:uppercase !important;
  font-size:.84rem !important; line-height:1.2 !important; margin:0 0 14px !important;
}
.tol-site .tol-eyebrow::after, .tolx-eyebrow::after, .tolfaq-eyebrow::after{
  content:""; display:block; width:38px; height:2px; background:#C2477E; margin-top:14px; margin-left:0; margin-right:auto;
}
/* center contexts: center the eyebrow element AND its divider */
.tol-site .tol-center .tol-eyebrow,
.tolx-head .tolx-eyebrow, .tolfaq-head .tolfaq-eyebrow,
.tol-site .tol-editorial-frame .tol-eyebrow,
.tol-site .tol-services-head .tol-eyebrow,
.tol-site .tol-feature .tol-eyebrow,
.tol-site .tol-ig-head .tol-eyebrow,
.tol-site .tol-blog .tol-eyebrow{ margin-left:auto !important; margin-right:auto !important; text-align:center; }
.tol-site .tol-center .tol-eyebrow::after,
.tolx-head .tolx-eyebrow::after, .tolfaq-head .tolfaq-eyebrow::after,
.tol-site .tol-editorial-frame .tol-eyebrow::after,
.tol-site .tol-services-head .tol-eyebrow::after,
.tol-site .tol-feature .tol-eyebrow::after,
.tol-site .tol-ig-head .tol-eyebrow::after,
.tol-site .tol-blog .tol-eyebrow::after{ margin-left:auto; margin-right:auto; }
/* left contexts: split/offset → eyebrow + divider left */
.tol-site .tol-split .tol-eyebrow, .tol-site .tol-offset .tol-eyebrow{ margin-left:0 !important; margin-right:auto !important; text-align:left; }
.tol-site .tol-split .tol-eyebrow::after, .tol-site .tol-offset .tol-eyebrow::after{ margin-left:0; margin-right:auto; }
/* >>> TOL EYEBROW V3 END <<< */

/* >>> TOL HERO EYEBROW START <<< */
/* shared (was .page-id-14) so any page cloning the homepage hero (.tol-hero) gets the
   white eyebrow + white divider. Zero-change on Home (.tol-site is on its body too). */
.tol-site .tol-hero .tol-eyebrow{ color:#ffffff !important; text-shadow:0 1px 10px rgba(0,0,0,.4); }
.tol-site .tol-hero .tol-eyebrow::after{ background:#ffffff !important; opacity:.9; }
/* Home hero H1 display scale was pinned to .page-id-14; share it so a cloned hero (About) matches exactly. (0,2,1) > .page-id-14 h1 (0,1,1) but the clamp value is identical, so Home is unchanged. */
.tol-site .tol-hero h1{ font-size:clamp(2.8rem,6vw,5.2rem); line-height:1.02; letter-spacing:-0.01em; }
/* >>> TOL HERO EYEBROW END <<< */

/* >>> TOL SECTION SEP START <<< */
.page-id-14 .tol-testi-section{ background:#EFE8DD; }
.page-id-14 .tol-testi-section .tolx-card{ background:#ffffff; }
.page-id-14 .tol-testi-section .tolx-card.is-side{ background:#F6F2EC; }
/* Delivery is a tol-split (not tol-offset) here -> apply seam padding to .tol-delivery directly */
.page-id-14 .tol-delivery{ padding-bottom:clamp(80px,9vw,132px); }
/* >>> TOL SECTION SEP END <<< */

/* >>> TOL SUB FIX START <<< */
.tolx-sub{ text-align:center !important; margin-left:auto !important; margin-right:auto !important; max-width:64ch !important; text-wrap:balance; }
.tolfaq-sub{ text-align:center !important; margin-left:auto !important; margin-right:auto !important; max-width:60ch !important; text-wrap:balance; }
.tol-site .tol-services-head p, .tol-site .tol-editorial-frame p{ text-wrap:pretty; }
/* >>> TOL SUB FIX END <<< */

/* >>> TOL READALL START <<< */
.tolx-readall{ border:1px solid rgba(110,18,72,.45) !important; padding:15px 30px !important; position:relative; }
.tolx-readall::before{ content:""; position:absolute; top:-1px; left:50%; transform:translateX(-50%); width:46px; height:2px; background:#C2477E; }
.tolx-readall:hover{ background:#6E1248 !important; color:#fff !important; border-color:#6E1248 !important; }
/* >>> TOL READALL END <<< */

/* >>> TOL RECAPTCHA NOTE START <<< */
.page-id-14 .tol-recaptcha-note{ text-align:center !important; max-width:520px; margin:18px auto 0 !important; font-size:.74rem !important; line-height:1.5; color:var(--ash,#6E665E) !important; }
.page-id-14 .tol-recaptcha-note a{ color:#9E2D63 !important; text-decoration:underline; }
/* >>> TOL RECAPTCHA NOTE END <<< */

/* >>> TOL FOOTER V3 START <<< */
.tol-footer-grid .tol-footer-nav, .tol-footer-grid .tol-footer-nav a{ text-align:left !important; padding-left:0 !important; margin-left:0 !important; }
.tol-footer-grid .tol-footer-nav li{ list-style:none; margin-left:0; padding-left:0; }
.tol-footer-grid .tol-footer-nav ul{ padding-left:0 !important; margin-left:0 !important; }
.tol-footer-grid .tol-footer-contact i, .tol-footer-grid .tol-footer-contact svg,
.tol-footer-grid .tol-footer-contact .elementor-icon{ color:rgba(255,255,255,.92) !important; fill:rgba(255,255,255,.92) !important; }
.tol-footer-grid .tol-footer-contact i::before{ color:rgba(255,255,255,.92) !important; }
.tol-footer-credit img{ height:11px !important; opacity:.7 !important; }
.tol-footer-grid .tol-footer-logo img, .tol-footer-brand img{ max-width:80% !important; opacity:.82 !important; }
/* >>> TOL FOOTER V3 END <<< */

/* >>> TOL V7 FIX START <<< */
/* (a) gallery strip head is .tol-section-head (not in V3 center contexts) -> its eyebrow divider stayed left. Add it. */
.tol-site .tol-section-head .tol-eyebrow{ margin-left:auto !important; margin-right:auto !important; text-align:center; }
.tol-site .tol-section-head .tol-eyebrow::after{ margin-left:auto; margin-right:auto; }
/* (b) Delivery seam padding was overridden by `tol-section-pad !important` -> force it */
.page-id-14 .tol-delivery{ padding-bottom:clamp(80px,9vw,132px) !important; }
/* (c) reCAPTCHA note: placement reverted in v8 (TOL RECAPTCHA V2) */
/* >>> TOL V7 FIX END <<< */

/* >>> TOL EYEBROW WEIGHT START <<< */
.tol-site .tol-eyebrow, .tolx-eyebrow, .tolfaq-eyebrow, .tol-footer-colhead{ font-weight:600 !important; }
/* >>> TOL EYEBROW WEIGHT END <<< */

/* >>> TOL BLOG READ START <<< */
/* superseded by TOL BLOG READ V2 */
/* >>> TOL BLOG READ END <<< */

/* >>> TOL RECAPTCHA V2 START <<< */
.page-id-14 .tol-quickform-inner .tol-recaptcha-note{ grid-column:auto; max-width:none !important; width:100%; text-align:center !important; margin:14px auto 0 !important; font-size:.72rem !important; white-space:nowrap; }
@media (max-width:1024px){ .page-id-14 .tol-quickform-inner .tol-recaptcha-note{ white-space:normal; } }
/* >>> TOL RECAPTCHA V2 END <<< */

/* >>> TOL FOOTER HOURS START <<< */
.tol-footer-hours{ display:block; }
.tol-footer-hours .hours-row{ display:grid; grid-template-columns:96px 1fr; gap:10px; padding:5px 0; font-size:.92rem; line-height:1.4; }
.tol-footer-hours .hours-row .d{ color:rgba(255,255,255,.7); }
.tol-footer-hours .hours-row .t{ color:#fff; }
/* >>> TOL FOOTER HOURS END <<< */

/* >>> TOL JOURNAL V2 START <<< */
.tol-site .tol-blog-inner{ display:grid; grid-template-columns:1.15fr .85fr; gap:clamp(28px,4vw,56px); align-items:start; }
.tol-site .tol-blog-feature{ grid-column:1; }
.tol-site .tol-blog-list{ grid-column:2; display:grid; grid-template-columns:1fr 1fr; gap:clamp(18px,2vw,28px); }
.tol-site .tol-blog-list .tol-blog-card{ display:flex; flex-direction:column; gap:6px; }
/* head + CTA span the full rail (they are siblings of feature/list in the inner grid) */
.tol-site .tol-blog-inner > .tol-blog-head, .tol-site .tol-blog-inner > .tol-blog-cta{ grid-column:1 / -1; }
/* vertical cards: media full-width on top (override the old horizontal card media sizing) */
.tol-site .tol-blog-list .tol-blog-card .tol-blog-media{ flex:none; width:100%; aspect-ratio:4/3; margin-bottom:8px; }
/* Tablet/mobile: stack feature above list. feature/list carry grid-column:1/2 which forces an
   implicit 2nd track even under a 1fr template — reset both to full width so they truly stack. */
@media (max-width:1024px){
  .tol-site .tol-blog-inner{ grid-template-columns:1fr; }
  .tol-site .tol-blog-feature{ grid-column:1 / -1; }
  .tol-site .tol-blog-list{ grid-column:1 / -1; grid-template-columns:1fr 1fr; }
}
@media (max-width:767px){ .tol-site .tol-blog-list{ grid-template-columns:1fr; } }
/* >>> TOL JOURNAL V2 END <<< */

/* >>> TOL BLOG READ V2 START <<< */
.tol-site .tol-blog .tol-read, .tol-site .tol-blog .tol-card-read a{
  display:inline-flex; align-items:center; gap:12px;
  background:none !important; border:0 !important; padding:0 !important; border-radius:0 !important;
  font-family:"freight-sans-pro",system-ui,sans-serif; font-weight:600; letter-spacing:.18em; text-transform:uppercase; font-size:.72rem;
  color:#6E1248 !important; text-decoration:none; margin-top:14px;
}
.tol-site .tol-blog .tol-read .arw, .tol-site .tol-blog .tol-card-read a .arw{
  position:relative; display:inline-block; width:42px; height:1px; background:#6E1248; transition:width .3s ease;
}
.tol-site .tol-blog .tol-read .arw::after, .tol-site .tol-blog .tol-card-read a .arw::after{
  content:""; position:absolute; right:0; top:50%; width:7px; height:7px; border-top:1px solid #6E1248; border-right:1px solid #6E1248; transform:translateY(-50%) rotate(45deg);
}
.tol-site .tol-blog .tol-read:hover .arw, .tol-site .tol-blog .tol-card-read a:hover .arw{ width:60px; }
.tol-site .tol-blog .tol-read:hover, .tol-site .tol-blog .tol-card-read a:hover{ color:#9E2D63 !important; }
/* >>> TOL BLOG READ V2 END <<< */

/* >>> TOL EYEBROW 600 START <<< */
.tol-eyebrow, .tolx-eyebrow, .tolfaq-eyebrow, .tol-footer-colhead, .tol-section-head .tol-eyebrow{ font-weight:600 !important; }
/* >>> TOL EYEBROW 600 END <<< */

/* >>> TOL PAGE HERO START <<< */
.tol-page-hero{ position:relative; min-height:56vh; display:flex; align-items:center; isolation:isolate; overflow:hidden; }
.tol-page-hero .tol-hero-bg{ position:absolute; inset:0; z-index:-2; background-size:cover; background-position:center; }
.tol-page-hero::after{ content:""; position:absolute; inset:0; z-index:-1; background:linear-gradient(120deg, rgba(30,14,26,.72) 0%, rgba(30,14,26,.42) 55%, rgba(30,14,26,.30) 100%); }
.tol-page-hero > .e-con-inner, .tol-page-hero .tol-page-hero-inner{ max-width:1440px; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); width:100%; }
.tol-page-hero .tol-eyebrow{ color:#fff !important; }
.tol-page-hero .tol-eyebrow::after{ background:#fff !important; opacity:.9; }
.tol-page-hero h1{ color:#fff; font-family:"freight-big-pro",Georgia,serif; font-weight:300; font-size:clamp(2.6rem,5.5vw,4.6rem); line-height:1.03; margin:0 0 18px; max-width:20ch; }
.tol-page-hero p{ color:rgba(255,255,255,.92); max-width:52ch; font-size:clamp(1.02rem,1.3vw,1.18rem); margin:0 0 26px; }
@media (max-width:768px){ .tol-page-hero{ min-height:48vh; } }
/* >>> TOL PAGE HERO END <<< */

/* >>> TOL INNER PATTERNS (inner-page-only conventions; scope = .tol-site) <<< */
/* The reusable patterns (eyebrow, bento, split, rail, section rhythm, faq type,
   buttons) now live in the marker blocks above, re-scoped .page-id-14 -> .tol-site
   and applied to every page via the body_class filter. This block keeps ONLY what
   the homepage does not use: the .tol-split-media image wrapper (home's img-right
   uses .tol-slideshow-wrap), the .tol-co-inner rail, and the .tol-co-cta band. */
/* >>> TOL CO PATTERNS START <<< */
/* directional reveals respond to the GLOBAL reveal engine's .revealed class */
.tol-reveal-l.revealed, .tol-reveal-r.revealed{ opacity:1 !important; transform:none !important; }
/* co-inner rail (inner-page only) */
.tol-site .tol-co-inner{ max-width:1440px; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); }
/* split-img-right whose media is a STATIC image / slideshow in a .tol-split-media wrapper */
.tol-site .tol-split-img-right .tol-split-inner{ display:grid; grid-template-columns:.98fr 1.02fr; gap:clamp(28px,5vw,72px) clamp(36px,5vw,84px); align-items:center; }
.tol-site .tol-split-img-right .tol-split-inner > .tol-split-media{ grid-column:2; position:relative; }
.tol-site .tol-split-img-right .tol-split-inner > .tol-split-copy{ grid-column:1; text-align:left; }
.tol-site .tol-split-media::after{ content:""; position:absolute; inset:0; transform:translate(20px,20px); border:1px solid rgba(110,18,72,.45); border-radius:2px; pointer-events:none; z-index:2; }
.tol-site .tol-split-media img{ position:relative; z-index:1; width:100%; height:auto; display:block; border-radius:2px; box-shadow:0 30px 70px -36px rgba(43,37,32,.5); }
.tol-site .tol-split-media .elementor-widget-image{ margin:0 !important; }
/* closing CTA band (inner-page only) */
.tol-site .tol-co-cta{ text-align:center; }
.tol-site .tol-co-cta h2{ margin:0 0 12px; }
.tol-site .tol-co-cta p{ max-width:52ch; margin:0 auto 24px; color:var(--ash,#6E665E); }
.tol-site .tol-co-cta .tol-eyebrow{ margin-left:auto !important; margin-right:auto !important; text-align:center; }
.tol-site .tol-co-cta .tol-eyebrow::after{ margin-left:auto; margin-right:auto; }
/* >>> TOL CO PATTERNS END <<< */

/* >>> TOL CO FIX START <<< */
/* page-specific content-fit one-offs for Custom Orchids (kept page-scoped) */
.page-id-16 .tol-split h2{ max-width:20ch; margin-inline:0; }
.page-id-16 .tol-split p{ max-width:48ch; margin-inline:0; color:var(--ash,#6E665E); }
/* Elementor kit `body.elementor-kit-5 h1` out-specifies `.tol-page-hero h1`; force hero text white (global). */
.tol-page-hero h1, .tol-page-hero .elementor-heading-title{ color:#fff !important; }
.tol-page-hero p, .tol-page-hero .elementor-widget-text-editor, .tol-page-hero .elementor-widget-text-editor p{ color:rgba(255,255,255,.92) !important; }
/* >>> TOL CO FIX END <<< */

/* >>> TOL CO FIX V11 START <<< */
/* Inner-page (Custom Orchids) rendering fixes. All SHARED (.tol-site / global) so
   every inner page benefits, not just page 16. */

/* (e) MOBILE STACK — the shared .tol-split-media img-right split never collapsed to
   one column, so on tablet/mobile the copy crammed into ~145px and the slideshow
   media collapsed (20px @390). Stack ≤900px: copy above, media below (DOM order). */
@media (max-width:900px){
  .tol-site .tol-split-img-right .tol-split-inner{ grid-template-columns:1fr; }
  .tol-site .tol-split-img-right .tol-split-inner > .tol-split-copy{ grid-column:1; order:0; }
  .tol-site .tol-split-img-right .tol-split-inner > .tol-split-media{ grid-column:1; order:1; }
}
/* (a) slideshow height guard — .tol-split-media is an Elementor flex container; the
   slideshow's slides are position:absolute so its aspect-ratio height does NOT
   propagate to the flex wrapper (it collapsed to 20px @390). Move the ratio onto the
   media wrapper and absolutely fill it with the slideshow, so height is always definite. */
.tol-site .tol-split-media{ min-width:0; }
.tol-site .tol-split-media:has(.tol-slideshow){ aspect-ratio:4/5; }
@media (max-width:900px){ .tol-site .tol-split-media:has(.tol-slideshow){ aspect-ratio:3/2; } }
.tol-site .tol-split-media .tol-slideshow{ position:absolute; inset:0; width:100%; height:100%; aspect-ratio:auto; }
.tol-site .tol-split-media .elementor-widget-html{ position:static; }

/* (c) HERO SCRIM — worst-case white-text contrast measured 3.33:1 (text extends into
   the weak right-side taper over a bright photo). Deepen the plum/ink wash like the
   homepage feature band and add a text-shadow so worst-case clears 6:1. */
/* Scrim eased so the orchid photo shows through; a moderate even wash + text-shadow
   keeps centered text readable (worst-case still ≈5:1). Darker top/bottom bands sit
   under the eyebrow and the CTA; the middle (behind H1) stays lighter to reveal the image. */
.tol-page-hero::after{ background:linear-gradient(180deg, rgba(22,10,18,.70) 0%, rgba(22,10,18,.64) 42%, rgba(22,10,18,.62) 62%, rgba(22,10,18,.70) 100%) !important; }
.tol-page-hero h1, .tol-page-hero .tol-eyebrow, .tol-page-hero .elementor-heading-title{ text-shadow:0 2px 20px rgba(0,0,0,.55); }
.tol-page-hero p, .tol-page-hero .elementor-widget-text-editor p{ text-shadow:0 1px 14px rgba(0,0,0,.6); }

/* (f) RAIL UNIFY — inner-page testimonials (.tolx) and FAQ (.tol-faq-inner) were on
   the Elementor default (1320 / 100%). Put them on the shared 1440 rail like Home. */
.tol-site .tolx, .tol-site .tol-faq-inner{ max-width:var(--tol-rail) !important; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); }
/* >>> TOL CO FIX V11 END <<< */

/* >>> TOL REVEAL SAFETY START <<< */
/* Reveal un-hide covers the base AND both directional variants when .revealed is
   added (belt-and-suspenders with the base rule at :245 and the directional rule in
   TOL CO PATTERNS). Shared / global so every page benefits, not page-scoped.
   The existing reduced-motion fallback only un-hid .tol-reveal (base) — extend it to
   .tol-reveal-l / .tol-reveal-r so directional content is never stuck hidden for
   reduced-motion users. Paired with the load-time JS failsafe in orchid.js. */
.tol-reveal.revealed, .tol-reveal-l.revealed, .tol-reveal-r.revealed{ opacity:1; transform:none; }
@media (prefers-reduced-motion: reduce){
  .tol-reveal, .tol-reveal-l, .tol-reveal-r{ opacity:1 !important; transform:none !important; }
}
/* >>> TOL REVEAL SAFETY END <<< */

/* >>> TOL CO FIX V13 START <<< */
/* BUG1 — .tol-center centered only its eyebrow (via the eyebrow rule); heading titles
   kept text-align:start so the H2 rendered left inside its centered box. Center all
   heading titles + text-editors inside .tol-center. Shared/global; eyebrow unchanged. */
.tol-site .tol-center{ text-align:center; }
.tol-site .tol-center .elementor-heading-title,
.tol-site .tol-center .elementor-widget-text-editor,
.tol-site .tol-center .elementor-widget-text-editor p{ text-align:center; }
.tol-site .tol-center .elementor-widget-heading{ width:100%; }

/* BUG2 — .tol-page-hero used min-height:56vh, which balloons on tall viewports
   (609px @1000vh → 879px @1570vh). Bound it to the intended compact range, and set a
   compact H1 clamp (was 64px via the older 'light page hero' rule at :949, which
   out-specified the pattern). Shared/global. Deepened scrim + text-shadow stay intact. */
.tol-page-hero{ min-height:clamp(480px,56vh,620px); }
@media (max-width:768px){ .tol-page-hero{ min-height:clamp(400px,56vh,520px); } }
/* win over the older (0,3,1) rule at :948 `.tol-page-hero .elementor-widget-heading h1.elementor-heading-title` */
.tol-site .tol-page-hero h1, .tol-site .tol-page-hero .elementor-widget-heading h1.elementor-heading-title, .tol-site .tol-page-hero h1.elementor-heading-title{ font-size:clamp(2.35rem,4.4vw,3.5rem); line-height:1.05; }
/* >>> TOL CO FIX V13 END <<< */

/* >>> TOL HERO ALIGN START <<< */
/* Hero content is CENTERED end to end (one axis, no mixed alignment). Overrides the
   mixed defaults so eyebrow + divider, H1, overview, and CTA all center on the rail.
   Shared/global (all inner heroes). */
.tol-site .tol-page-hero, .tol-site .tol-page-hero .tol-page-hero-inner{ text-align:center; }
.tol-site .tol-page-hero .tol-page-hero-inner{ display:flex; flex-direction:column; align-items:center; }
.tol-site .tol-page-hero .elementor-heading-title,
.tol-site .tol-page-hero .elementor-widget-text-editor,
.tol-site .tol-page-hero .elementor-widget-text-editor p{ text-align:center !important; margin-inline:auto !important; }
.tol-site .tol-page-hero h1{ margin-inline:auto !important; }
.tol-site .tol-page-hero .tol-eyebrow{ margin-left:auto !important; margin-right:auto !important; text-align:center; }
.tol-site .tol-page-hero .tol-eyebrow::after{ margin-left:auto !important; margin-right:auto !important; }
.tol-site .tol-page-hero .elementor-widget-button{ text-align:center !important; width:auto; }
.tol-site .tol-page-hero .tol-btn, .tol-site .tol-page-hero a.elementor-button{ margin-left:auto !important; margin-right:auto !important; }
/* >>> TOL HERO ALIGN END <<< */

/* >>> TOL ABOUT START <<< */
/* About page (15) on shared patterns. Two small, shared refinements: */
/* (1) tol-offset "How We Work" — put the blush rule on the whole inner block (not just
   the first heading, which would be the eyebrow) so the accent marks the full band; keep
   a modest left indent. */
.tol-site .tol-offset .tol-offset-inner{ border-left:2px solid #C2477E; padding-left:clamp(22px,4vw,48px); }
.tol-site .tol-offset .tol-offset-inner .elementor-widget-heading:first-of-type{ border-left:0; padding-left:0; }
/* (2) closing CTA with multiple buttons — center them in a wrapping row. */
.tol-site .tol-cta-btns{ display:flex; flex-wrap:wrap; gap:16px; justify-content:center; align-items:center; margin-top:8px; }
/* (3) Related links row — plain-anchor navigation line (NO button styling), modest
   padding + hairline top rule, on the 1440 rail. New shared class `.tol-related`
   (no general content link-row pattern existed; the footer's link rows are footer-scoped). */
.tol-site .tol-related{ padding-block:clamp(28px,4vw,52px); border-top:1px solid rgba(43,37,32,.10); }
.tol-site .tol-related .tol-eyebrow{ margin-bottom:12px; }
.tol-site .tol-related-links{ margin:0; font-family:var(--body,"freight-sans-pro",system-ui,sans-serif); color:var(--ash,#6E665E); font-size:1rem; line-height:1.9; }
.tol-site .tol-related-links a{ color:#6E1248; text-decoration:none; border-bottom:1px solid transparent; transition:color .2s, border-color .2s; }
.tol-site .tol-related-links a:hover{ color:#9E2D63; border-bottom-color:#9E2D63; }
/* >>> TOL ABOUT END <<< */

/* >>> TOL SPLIT IMG LEFT START <<< */
/* Completes the documented `tol-split-img-left` modifier for the modern `.tol-split-media`
   wrapper (the bible documents img-left/img-right; only img-right had .tol-split-media rules).
   Mirror of the img-right block: media col1, copy col2; stacks copy-above-media ≤900. Shared. */
.tol-site .tol-split-img-left .tol-split-inner{ display:grid; grid-template-columns:1.02fr .98fr; gap:clamp(28px,5vw,72px) clamp(36px,5vw,84px); align-items:center; }
.tol-site .tol-split-img-left .tol-split-inner > .tol-split-media{ grid-column:1; position:relative; }
.tol-site .tol-split-img-left .tol-split-inner > .tol-split-copy{ grid-column:2; text-align:left; }
@media (max-width:900px){
  .tol-site .tol-split-img-left .tol-split-inner{ grid-template-columns:1fr; }
  .tol-site .tol-split-img-left .tol-split-inner > .tol-split-copy{ grid-column:1; order:0; }
  .tol-site .tol-split-img-left .tol-split-inner > .tol-split-media{ grid-column:1; order:1; }
}
/* >>> TOL SPLIT IMG LEFT END <<< */

/* >>> TOL CARE START <<< */
/* Soft inline body links (e.g. the "More To Read" journal band) — brand plum, underlined.
   Scoped to .tol-softlink so it never touches the .tol-related plain-anchor row. */
.tol-site .tol-softlink a{ color:#6E1248; text-decoration:underline; text-underline-offset:2px; transition:color .2s; }
.tol-site .tol-softlink a:hover{ color:#9E2D63; }
/* >>> TOL CARE END <<< */

/* >>> TOL EDITORIAL ROW START <<< */
/* NEW REUSABLE PATTERN. Large editorial image band, alternating image side (.tol-img-right /
   .tol-img-left). Image is 60% of the row, min-height 560px @1440, object-fit cover, NO offset
   frame (clean edges — the frame is for small arrangement shots only). Copy column is
   vertical-centered with a LARGER display H2 (freight-big-pro). Stacks image-above-copy ≤900. */
.tol-site .tol-editorial-row{ display:grid; align-items:stretch; }
.tol-site .tol-editorial-row.tol-img-right{ grid-template-columns:40fr 60fr; }
.tol-site .tol-editorial-row.tol-img-left{ grid-template-columns:60fr 40fr; }
.tol-site .tol-editorial-row.tol-img-right > .tol-editorial-copy{ grid-column:1; }
.tol-site .tol-editorial-row.tol-img-right > .tol-editorial-media{ grid-column:2; }
.tol-site .tol-editorial-row.tol-img-left  > .tol-editorial-media{ grid-column:1; }
.tol-site .tol-editorial-row.tol-img-left  > .tol-editorial-copy{ grid-column:2; }
.tol-site .tol-editorial-row .tol-editorial-copy{ display:flex; flex-direction:column; justify-content:center; padding:clamp(44px,6vw,104px); text-align:left; }
.tol-site .tol-editorial-row .tol-editorial-copy h2{ font-family:"freight-big-pro",Georgia,serif; font-weight:300; font-size:clamp(3rem,5.2vw,4.6rem); line-height:1.02; letter-spacing:-.01em; margin:0 0 18px; }
.tol-site .tol-editorial-row .tol-editorial-copy p{ color:var(--ash,#6E665E); max-width:52ch; margin:0; }
.tol-site .tol-editorial-row .tol-editorial-media{ position:relative; min-height:560px; overflow:hidden; }
.tol-site .tol-editorial-row .tol-editorial-media .elementor-widget-image,
.tol-site .tol-editorial-row .tol-editorial-media img{ position:absolute !important; inset:0 !important; width:100% !important; height:100% !important; object-fit:cover; margin:0 !important; display:block; }
/* eyebrow stays left in this pattern (not a centered context) */
.tol-site .tol-editorial-row .tol-eyebrow{ margin-left:0 !important; margin-right:auto !important; text-align:left; }
.tol-site .tol-editorial-row .tol-eyebrow::after{ margin-left:0 !important; margin-right:auto !important; }
@media (max-width:900px){
  .tol-site .tol-editorial-row.tol-img-right, .tol-site .tol-editorial-row.tol-img-left{ grid-template-columns:1fr; }
  /* match the base placement specificity (0,4,0) so these win at mobile (else media stays col2 → 2-track grid collapses image) */
  .tol-site .tol-editorial-row.tol-img-right > .tol-editorial-media,
  .tol-site .tol-editorial-row.tol-img-left  > .tol-editorial-media{ grid-column:1; order:0; min-height:clamp(300px,58vw,420px); }
  .tol-site .tol-editorial-row.tol-img-right > .tol-editorial-copy,
  .tol-site .tol-editorial-row.tol-img-left  > .tol-editorial-copy{ grid-column:1; order:1; padding:clamp(32px,7vw,56px); }
}
/* >>> TOL EDITORIAL ROW END <<< */

/* >>> TOL FAQ EDITORIAL START <<< */
/* Editorial FAQ variant — add class `tolfaq-editorial` to the `.tolfaq` root. Removes the
   boxed/glass panel: transparent items separated by a hairline rule, larger freight-big-pro
   questions, generous row height, a plum plus/minus marker. Scoped to `.tolfaq-editorial`
   so Home/Custom Orchids FAQ widgets are untouched. Overrides the widget's inline CSS via
   higher specificity. */
.tol-site .tolfaq-editorial .tolfaq-list{ background:none !important; border:0 !important; box-shadow:none !important; -webkit-backdrop-filter:none !important; backdrop-filter:none !important; padding:0 !important; }
.tol-site .tolfaq-editorial .tolfaq-item{ background:none !important; border:0 !important; border-top:1px solid rgba(43,37,32,.14) !important; border-radius:0 !important; margin:0 !important; padding:0 !important; }
.tol-site .tolfaq-editorial .tolfaq-item:last-child{ border-bottom:1px solid rgba(43,37,32,.14) !important; }
.tol-site .tolfaq-editorial .tolfaq-q{ position:relative; display:flex; align-items:center; justify-content:space-between; gap:24px; width:100%; background:none !important; border:0 !important; cursor:pointer; text-align:left; padding:clamp(26px,2.6vw,38px) 0 !important; }
.tol-site .tolfaq-editorial .tolfaq-q > span:first-child{ font-family:"freight-big-pro",Georgia,serif !important; font-weight:400 !important; font-size:clamp(1.35rem,2vw,1.72rem) !important; line-height:1.28 !important; color:var(--ink,#2B2520) !important; }
.tol-site .tolfaq-editorial .tolfaq-ic{ position:relative; flex:0 0 auto; width:22px; height:22px; }
.tol-site .tolfaq-editorial .tolfaq-ic::before,
.tol-site .tolfaq-editorial .tolfaq-ic::after{ content:""; position:absolute; background:#6E1248; }
.tol-site .tolfaq-editorial .tolfaq-ic::before{ left:0; top:50%; width:100%; height:2px; transform:translateY(-50%); }
.tol-site .tolfaq-editorial .tolfaq-ic::after{ top:0; left:50%; width:2px; height:100%; transform:translateX(-50%); transition:opacity .25s ease; }
.tol-site .tolfaq-editorial .tolfaq-item.is-open .tolfaq-ic::after{ opacity:0; }
.tol-site .tolfaq-editorial .tolfaq-a-inner{ color:var(--ash,#6E665E) !important; font-size:1.04rem !important; line-height:1.72 !important; padding:0 60px clamp(24px,2.4vw,32px) 0 !important; max-width:70ch; }
/* >>> TOL FAQ EDITORIAL END <<< */

/* >>> TOL ANCHOR OFFSET START <<< */
/* on-page anchors clear the sticky header when jumped to (e.g. hero CTA -> #meet-alicia) */
/* Model A: the top header is not sticky; the slim reveal bar (~66px) is what an anchor must
   clear when it is showing. 88px clears it with breathing room. When the bar is hidden/dismissed
   there is a benign ~66px of extra top gap (target still fully visible) — acceptable tradeoff. */
.tol-site #meet-alicia, .tol-site #care-start, .tol-site #gallery-grid, .tol-site #contact-form, .tol-site #journal-grid{ scroll-margin-top:88px; }
/* >>> TOL ANCHOR OFFSET END <<< */

/* >>> TOL VIDEO START <<< */
/* Styled, restrained video placeholder (16:9, site radius, soft shadow, plum circular
   play button). Ready to accept a real <video>/embed later; non-functional for now. */
.tol-site .tol-video-frame{ position:relative; aspect-ratio:16/9; border-radius:var(--radius-soft); overflow:hidden; box-shadow:0 30px 70px -36px rgba(43,37,32,.5); background:#0d0a08; }
.tol-site .tol-video-poster{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; display:block; border-radius:0; }
.tol-site .tol-video-play{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:64px; height:64px; padding:0; border:0; border-radius:50%; background:#9E2D63; cursor:pointer; display:flex; align-items:center; justify-content:center; transition:transform .2s ease, background .2s ease; box-shadow:0 8px 24px rgba(110,18,72,.4); }
.tol-site .tol-video-play:hover{ transform:translate(-50%,-50%) scale(1.05); background:#6E1248; }
.tol-site .tol-video-tri{ display:block; width:0; height:0; border-style:solid; border-width:11px 0 11px 18px; border-color:transparent transparent transparent #ffffff; margin-left:5px; }
/* >>> TOL VIDEO END <<< */

/* >>> TOL INTRO SPLIT START <<< */
/* Intro band: copy left (~42%) + video right (~58%), centered, on the 1440 rail. */
.tol-site .tol-intro-split{ display:grid; grid-template-columns:42fr 58fr; gap:clamp(32px,4vw,72px); align-items:center; }
.tol-site .tol-intro-split .tol-intro-copy{ display:flex; flex-direction:column; }
@media (max-width:900px){
  .tol-site .tol-intro-split{ grid-template-columns:1fr; gap:32px; }
  .tol-site .tol-intro-split .tol-intro-copy{ order:0; }
  .tol-site .tol-intro-split .tol-intro-media{ order:1; }
}
/* >>> TOL INTRO SPLIT END <<< */

/* >>> TOL HWW START <<< */
/* How We Work: image LEFT + copy RIGHT; align-items:stretch so the image height is driven
   by the copy block (no fixed min-height). Plum vertical rule is the copy column's left accent. */
.tol-site .tol-hww{ display:grid; grid-template-columns:45fr 55fr; gap:clamp(32px,4vw,72px); align-items:stretch; }
.tol-site .tol-hww .tol-hww-media{ position:relative; overflow:hidden; border-radius:var(--radius-soft); min-width:0; }
.tol-site .tol-hww .tol-hww-media .elementor-widget-image,
.tol-site .tol-hww .tol-hww-media img{ position:absolute !important; inset:0 !important; width:100% !important; height:100% !important; object-fit:cover; margin:0 !important; display:block; border-radius:0; }
.tol-site .tol-hww .tol-hww-copy{ display:flex; flex-direction:column; justify-content:center; border-left:2px solid #C2477E; padding-left:clamp(24px,3vw,44px); }
@media (max-width:900px){
  .tol-site .tol-hww{ grid-template-columns:1fr; gap:28px; align-items:start; }
  .tol-site .tol-hww .tol-hww-media{ order:0; min-height:clamp(280px,60vw,380px); }
  .tol-site .tol-hww .tol-hww-copy{ order:1; border-left:0; padding-left:0; }
}
/* >>> TOL HWW END <<< */

/* >>> TOL FOOTER CONTACT BAND START <<< */
/* Site-wide contact band at the top of the global footer (template 63), above the
   four-column grid. Reuses the homepage `tol-quickform` pattern. Excluded on the Contact
   page (19) only — it has its own contact form. Home (14) now RENDERS the band (2026-07-10:
   the old standalone Home quick-contact `qcsec01` was removed so Home uses the global footer
   like every other page; the `#quick-contact` CTA anchor resolves to the band's form column). */
body.page-id-19 .tol-footer-contact-band{ display:none; }
/* honeypot field — invisible to humans, present for bots (paired with the
   elementor_pro/forms/validation guard in functions.php) */
.tol-site .elementor-field-group-hp_website{ position:absolute !important; left:-9999px !important; width:1px !important; height:1px !important; overflow:hidden !important; padding:0 !important; margin:0 !important; }
/* >>> TOL FOOTER CONTACT BAND END <<< */

/* >>> TOL GALLERY GRID START <<< */
/* Gallery browse grid — the render surface for the Option A [tol_gallery] shortcode.
   UNIFORM grid (not masonry): a calm, predictable editorial rhythm reads better for a
   browse page than a ragged masonry, needs no JS, and keeps the mixed portrait/landscape
   library tidy via a fixed 4/5 tile + object-fit:cover. Generous gutters, full-bleed feel
   on the 1440 rail, CLEAN edges (no plum offset frame — that is for small arrangement
   shots only). Full-res <img> tiles with a soft hover zoom; Elementor's lightbox handles
   the click. Reflows 3 -> 2 -> 1. Scoped .tol-site so it overrides the legacy generic
   .tol-gallery-grid base rule (section 13) by specificity + source order. */
.tol-site .tol-gallery-section{ padding-block:clamp(52px,6.5vw,100px); }
.tol-site .tol-gallery-rail{ max-width:var(--tol-rail,1440px); margin-inline:auto; padding-inline:clamp(16px,3vw,48px); }
.tol-site .tol-gallery-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(14px,1.6vw,24px); }
.tol-site .tol-gallery-item{ display:block; position:relative; overflow:hidden; border-radius:var(--radius-soft,4px);
  aspect-ratio:4/5; cursor:zoom-in; background:color-mix(in srgb, var(--lavender,#E7D6E2) 32%, transparent);
  box-shadow:0 10px 30px color-mix(in srgb, var(--fuchsia,#9E2D63) 8%, transparent); }
.tol-site .tol-gallery-img{ width:100%; height:100%; object-fit:cover; display:block; margin:0;
  transition:transform .6s var(--ease,cubic-bezier(.22,.61,.36,1)); }
.tol-site .tol-gallery-item:hover .tol-gallery-img,
.tol-site .tol-gallery-item:focus-visible .tol-gallery-img{ transform:scale(1.045); }
.tol-site .tol-gallery-item:focus-visible{ outline:2px solid var(--fuchsia,#9E2D63); outline-offset:3px; }
@media (max-width:1024px){ .tol-site .tol-gallery-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .tol-site .tol-gallery-grid{ grid-template-columns:1fr; gap:16px; } }
/* >>> TOL GALLERY GRID END <<< */

/* >>> TOL CONTACT START <<< */
/* Contact page (page 19). Visit block (details + map) + fuller form with 2-col fields and
   conditional event fields. The form section carries .tol-quickform so inputs inherit the
   TOL QUICKFORM styling; .tol-contact-form adds the contact-specific overrides. */

/* Visit block: details left, map right, on the 1440 rail; stacks details-above-map ≤900. */
.tol-site .tol-visit-inner{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,60px); align-items:stretch; }
.tol-site .tol-visit-map,
.tol-site .tol-visit-map .elementor-widget-google_maps,
.tol-site .tol-visit-map .elementor-custom-embed{ height:100%; }
.tol-site .tol-visit-map{ border-radius:var(--radius-soft,4px); overflow:hidden; min-height:420px;
  box-shadow:0 12px 34px color-mix(in srgb, var(--fuchsia,#6E1248) 8%, transparent); }
.tol-site .tol-visit-map iframe{ width:100%; height:100% !important; min-height:420px; border:0; display:block; }
.tol-site .tol-visit-list{ display:flex; flex-direction:column; gap:22px; margin-top:6px; }
.tol-site .tol-visit-row{ display:grid; grid-template-columns:132px 1fr; gap:14px; align-items:start; }
.tol-site .tol-visit-k{ font-family:var(--body); font-weight:600; font-size:.72rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--fuchsia,#9E2D63); padding-top:3px; }
.tol-site .tol-visit-v{ font-family:var(--body); font-size:1.02rem; line-height:1.6; color:var(--ink,#2B2520); min-width:0; overflow-wrap:anywhere; }
.tol-site .tol-visit-v a{ color:var(--fuchsia,#6E1248); text-decoration:underline; text-underline-offset:3px; }
.tol-site .tol-visit-v a:hover{ color:var(--blush,#C2477E); }
@media (max-width:900px){
  .tol-site .tol-visit-inner{ grid-template-columns:1fr; }
  .tol-site .tol-visit-map{ min-height:320px; }
  .tol-site .tol-visit-row{ grid-template-columns:112px 1fr; }
}

/* Contact form: wider rail + 2-col fields that respect the 18px wrapper gap. */
.tol-site .tol-contact-form .tol-quickform-inner{ max-width:840px; }
.tol-site .tol-contact-form .elementor-field-group.elementor-col-50{ flex:0 0 calc(50% - 9px); max-width:calc(50% - 9px); width:auto; }
.tol-site .tol-contact-form .tol-form-lead .elementor-heading-title,
.tol-site .tol-contact-form .tol-form-lead{ max-width:640px; margin:0 auto 30px; text-align:center;
  color:var(--ash,#6E665E); font-size:1.06rem; line-height:1.6; font-weight:400; }
/* conditional BRANCH fields — hidden by default; JS (TOL CONTACT JS) adds a branch class to the
   form based on the "What are you looking for?" select, revealing only that branch's fields.
   Targeted by Elementor's own generated field-id classes (per-field css_classes are unreliable
   in the form repeater). */
.tol-site .tol-contact-form .elementor-field-group-occasion,
.tol-site .tol-contact-form .elementor-field-group-color_a,
.tol-site .tol-contact-form .elementor-field-group-budget_a,
.tol-site .tol-contact-form .elementor-field-group-need_date_a,
.tol-site .tol-contact-form .elementor-field-group-describe_b,
.tol-site .tol-contact-form .elementor-field-group-vessel_b,
.tol-site .tol-contact-form .elementor-field-group-style_b,
.tol-site .tol-contact-form .elementor-field-group-budget_b,
.tol-site .tol-contact-form .elementor-field-group-need_date_b,
.tol-site .tol-contact-form .elementor-field-group-event_type_c,
.tol-site .tol-contact-form .elementor-field-group-event_date_c,
.tol-site .tol-contact-form .elementor-field-group-scale_c,
.tol-site .tol-contact-form .elementor-field-group-budget_c,
.tol-site .tol-contact-form .elementor-field-group-venue_c,
.tol-site .tol-contact-form .elementor-field-group-question_d{ display:none; }
.tol-site .tol-contact-form.tol-branch-ready .elementor-field-group-occasion,
.tol-site .tol-contact-form.tol-branch-ready .elementor-field-group-color_a,
.tol-site .tol-contact-form.tol-branch-ready .elementor-field-group-budget_a,
.tol-site .tol-contact-form.tol-branch-ready .elementor-field-group-need_date_a,
.tol-site .tol-contact-form.tol-branch-custom .elementor-field-group-describe_b,
.tol-site .tol-contact-form.tol-branch-custom .elementor-field-group-vessel_b,
.tol-site .tol-contact-form.tol-branch-custom .elementor-field-group-style_b,
.tol-site .tol-contact-form.tol-branch-custom .elementor-field-group-budget_b,
.tol-site .tol-contact-form.tol-branch-custom .elementor-field-group-need_date_b,
.tol-site .tol-contact-form.tol-branch-event .elementor-field-group-event_type_c,
.tol-site .tol-contact-form.tol-branch-event .elementor-field-group-event_date_c,
.tol-site .tol-contact-form.tol-branch-event .elementor-field-group-scale_c,
.tol-site .tol-contact-form.tol-branch-event .elementor-field-group-budget_c,
.tol-site .tol-contact-form.tol-branch-event .elementor-field-group-venue_c,
.tol-site .tol-contact-form.tol-branch-question .elementor-field-group-question_d{ display:flex; }
@media (max-width:680px){
  .tol-site .tol-contact-form .elementor-field-group.elementor-col-50{ flex-basis:100%; max-width:100%; }
}
/* >>> TOL CONTACT END <<< */

/* >>> TOL CONTACT REDESIGN START <<< */
/* Contact page (19) form-dominant redesign (2026-07-07): main band = form ~66% (visual hero,
   soft card) + "Come By" details ~34% sidebar, then a full-width edge-to-edge map band. */
.tol-site .tol-contact-main .tol-contact-main-inner{
  display:grid; grid-template-columns:minmax(0,1.94fr) minmax(0,1fr);
  gap:clamp(28px,3.5vw,56px); align-items:start;
  max-width:var(--tol-rail,1440px); margin-inline:auto; padding-inline:clamp(20px,4vw,64px);
}
/* form column = the visual hero: soft white card */
.tol-site .tol-contact-formcol{
  background:#fff; border:1px solid var(--bd,#E7DED3); border-radius:var(--radius-soft,6px);
  padding:clamp(24px,3vw,44px);
  box-shadow:0 18px 46px color-mix(in srgb, var(--fuchsia,#6E1248) 7%, transparent);
}
.tol-site .tol-contact-formcol .tol-form-lead{ text-align:left; margin:0 0 22px; max-width:none; }
/* "Come By" details sidebar: clean, top-aligned, readable (single-column rows) */
.tol-site .tol-contact-details{ padding-top:4px; }
.tol-site .tol-contact-details .tol-eyebrow{ margin-bottom:18px; }
.tol-site .tol-contact-details .tol-visit-list{ display:flex; flex-direction:column; gap:20px; }
.tol-site .tol-contact-details .tol-visit-row{ display:grid; grid-template-columns:1fr; gap:4px; }
.tol-site .tol-contact-details .tol-visit-k{ font-family:var(--body); font-weight:600; font-size:.72rem;
  letter-spacing:.14em; text-transform:uppercase; color:var(--fuchsia,#9E2D63); }
.tol-site .tol-contact-details .tol-visit-v{ font-family:var(--body); font-size:1.02rem; line-height:1.6; color:var(--ink,#2B2520); }
.tol-site .tol-contact-details .tol-visit-v a{ color:var(--fuchsia,#6E1248); text-decoration:underline; text-underline-offset:3px; }
.tol-site .tol-contact-details .tol-visit-v a:hover{ color:var(--blush,#C2477E); }
/* reCAPTCHA v3 notice (badge hidden — this disclosure satisfies Google) */
.tol-site .tol-recaptcha-note{ margin:18px auto 0; max-width:520px; text-align:center; font-family:var(--body);
  font-size:.76rem; line-height:1.55; color:var(--ash,#8a8078); }
.tol-site .tol-recaptcha-note a{ color:var(--fuchsia,#9E2D63); text-decoration:underline; }
/* badge hidden via display:none (not visibility) so its fixed box doesn't cause horizontal
   overflow; the notice above satisfies Google's disclosure requirement. */
.grecaptcha-badge{ display:none !important; }
/* full-width edge-to-edge map band */
.tol-site .tol-contact-map-band{ padding:0; }
.tol-site .tol-contact-map-band .elementor-widget-google_maps,
.tol-site .tol-contact-map-band .elementor-custom-embed,
.tol-site .tol-contact-map-band iframe{ display:block; width:100%; height:400px !important; border:0; margin:0; }
/* tablet/mobile: stack — form on top full-width, details below, map full-width */
@media (max-width:900px){
  .tol-site .tol-contact-main .tol-contact-main-inner{ grid-template-columns:1fr; gap:28px; }
  .tol-site .tol-contact-details{ padding-top:0; }
  .tol-site .tol-contact-map-band iframe{ height:320px !important; }
}
/* >>> TOL CONTACT REDESIGN END <<< */

/* >>> TOL JOURNAL GRID START <<< */
/* Blog / Journal index (Theme Builder Archive template 65, blog posts page only).
   Styles the Elementor Archive Posts "classic" skin into clean editorial journal cards —
   image-top, title (H3), date, one-line excerpt, read link. NO plum offset frame (clean
   edges). Uniform 3/2 image ratio; Elementor's own grid handles 3→2→1 columns. */
.tol-site .tol-journal-grid .elementor-posts{ gap:clamp(22px,2.6vw,38px); }
.tol-site .tol-journal-grid .elementor-post{ background:#fff; border-radius:var(--radius-soft,4px); overflow:hidden; margin:0;
  box-shadow:0 10px 30px color-mix(in srgb, var(--fuchsia,#6E1248) 7%, transparent);
  display:flex; flex-direction:column; transition:transform .3s var(--ease,ease), box-shadow .3s var(--ease,ease); }
.tol-site .tol-journal-grid .elementor-post:hover{ transform:translateY(-4px);
  box-shadow:0 18px 46px color-mix(in srgb, var(--fuchsia,#6E1248) 13%, transparent); }
.tol-site .tol-journal-grid .elementor-post__thumbnail{ position:relative; aspect-ratio:3/2; height:auto; padding-bottom:0 !important; overflow:hidden; margin:0; }
.tol-site .tol-journal-grid .elementor-post__thumbnail img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; margin:0;
  transition:transform .6s var(--ease,cubic-bezier(.22,.61,.36,1)); }
.tol-site .tol-journal-grid .elementor-post:hover .elementor-post__thumbnail img{ transform:scale(1.05); }
.tol-site .tol-journal-grid .elementor-post__text{ padding:clamp(20px,1.8vw,28px); display:flex; flex-direction:column; gap:10px; flex:1 1 auto; }
.tol-site .tol-journal-grid .elementor-post__meta-data{ order:-1; margin:0; padding:0; border:0;
  font-family:var(--body); font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:var(--ash,#6E665E); }
.tol-site .tol-journal-grid .elementor-post__title{ margin:0; font-family:var(--tol-display); font-weight:400; font-size:1.3rem; line-height:1.24; }
.tol-site .tol-journal-grid .elementor-post__title a{ color:var(--fuchsia,#6E1248); }
.tol-site .tol-journal-grid .elementor-post__title a:hover{ color:var(--blush,#C2477E); }
.tol-site .tol-journal-grid .elementor-post__excerpt{ margin:0; }
.tol-site .tol-journal-grid .elementor-post__excerpt p{ margin:0; font-family:var(--body); font-size:.97rem; line-height:1.6; color:var(--ash,#6E665E); }
.tol-site .tol-journal-grid .elementor-post__read-more{ margin-top:6px; align-self:flex-start;
  font-family:var(--body); font-weight:600; font-size:.76rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--fuchsia,#6E1248); border-bottom:1px solid currentColor; padding-bottom:2px; transition:color .25s; }
.tol-site .tol-journal-grid .elementor-post__read-more:hover{ color:var(--blush,#C2477E); }
.tol-site .tol-journal-grid .elementor-pagination{ margin-top:clamp(34px,4vw,56px); text-align:center; }
.tol-site .tol-journal-grid .elementor-pagination .page-numbers{ font-family:var(--body); font-size:.9rem; color:var(--ink,#2B2520); padding:8px 13px; border-radius:3px; }
.tol-site .tol-journal-grid .elementor-pagination .page-numbers.current{ background:var(--fuchsia,#6E1248); color:#fff; }
/* >>> TOL JOURNAL GRID END <<< */

/* >>> TOL HEADER V4 START <<< */
/* Single-breakpoint nav — fixes the 901–1024 DOUBLED menu (nav hid at ≤900 while the
   hamburger showed at ≤1024, so both rendered in that band). Desktop nav (all items) ABOVE
   1024; exactly one hamburger BELOW. Contact now lives in the top bar → primary nav is 5
   items. Start an Order stays visible at every width (task requirement). */
/* Breakpoint raised 1024 → 1200 (2026-07-02): with the real Typekit font the 5 items + logo +
   Start an Order wrapped "Custom Orchids"/"Orchid Care" between ~1024–1200. The horizontal nav
   now only shows ≥1201 where it fits on one line with comfortable spacing; hamburger ≤1200.
   white-space:nowrap on the links is the HARD guarantee that no item ever breaks to two lines. */
#tol-site-header .tol-nav ul{ flex-wrap:nowrap; }
#tol-site-header .tol-nav a{ white-space:nowrap; }
@media (min-width:1201px){
  #tol-site-header .tol-nav{ display:flex !important; }
  #tol-site-header .tol-nav li{ display:inline-block !important; }
  #tol-site-header .tol-nav-trigger, #tol-nav-trigger{ display:none !important; }
}
@media (max-width:1200px){
  #tol-site-header .tol-nav{ display:none !important; }
  #tol-site-header .tol-nav-trigger, #tol-nav-trigger{ display:inline-flex !important; }
}
/* keep Start an Order at all widths (override the ≤900 CTA hides) */
#tol-site-header a.tol-header-cta{ display:inline-flex !important; }
@media (max-width:560px){
  /* the oversized logo (177px wide @390) + Start an Order + hamburger overflowed the bar by ~43px.
     Shrink the logo, tighten the actions, and trim the gutter so the row fits with room to spare. */
  #tol-site-header .tol-logo img{ height:44px !important; }
  #tol-site-header a.tol-header-cta{ padding:10px 15px; font-size:.6rem; letter-spacing:.1em; }
  #tol-site-header .tol-header-actions{ gap:12px; }
  #tol-site-header .tol-mainbar-inner{ padding-inline:18px; min-height:64px; }
  #tol-site-header .tol-topbar-inner{ padding-inline:18px; }
}
/* top bar now carries 4 links (Call/Text/Email/Contact) — icons-only on small screens to avoid overflow */
@media (max-width:768px){
  #tol-site-header .tol-top-link span, #tol-site-header .tol-top-home span{ display:none; }
  #tol-site-header .tol-topbar-left, #tol-site-header .tol-topbar-right{ gap:14px; }
}
/* >>> TOL HEADER V4 END <<< */

/* >>> TOL STICKY FIX START <<< */
/* The inner #tol-site-header sat inside Elementor wrappers that are only header-height tall,
   so its position:sticky could only travel ~175px then scrolled away. The header LOCATION
   element is a direct child of <body> (the scroll container), whose containing block spans the
   full page — make IT sticky. Overrides the containing-block reset's position:static on the
   header wrapper (higher specificity + later source). Constant height (no shrink-driven jump);
   the .scrolled state only changes background/shadow + logo, which does not move page content. */
/* MODEL A (TOL HEADER V5, 2026-07-02): the FULL header is NO LONGER sticky — it scrolls away
   with the hero. A separate slim #tol-sticky-bar reveals after the hero (see TOL HEADER V5).
   Force the header wrapper + inner static (override the older sticky rule + the reset). */
body > header.elementor-location-header,
body > [data-elementor-type="header"]{ position:static !important; }
#tol-site-header{ position:static; }
/* Off-canvas nav overflow fix: the old closed state (transform:translateX(100%)) parked the
   fixed panel just off the right edge, and body's overflow-x:hidden cannot clip a FIXED element
   → it added ~43px to documentElement.scrollWidth at mobile. Park it ON-screen (right:0) but
   hidden/uninteractive when closed, so it never extends the page. Fade + a small slide in place;
   no page overflow, sticky untouched. */
#tol-mobile-nav{ display:none !important; }
body.tol-nav-open #tol-mobile-nav{ display:flex !important; transform:translateX(0) !important; opacity:1 !important; visibility:visible !important; pointer-events:auto; }
/* >>> TOL STICKY FIX END <<< */

/* >>> TOL HEADER V5 START <<< */
/* MODEL A slim reveal sticky bar. Fixed, full-bleed, hidden above the hero; slides down + fades in
   once body.tol-past-hero is set (single IO on the hero, orchid.js). Dismissible via
   body.tol-sticky-dismissed. JS portals #tol-sticky-bar to <body> so position:fixed is viewport-relative. */
.tol-sticky-bar{ position:fixed; top:0; left:0; right:0; width:100%; z-index:1200;
  background:color-mix(in srgb, var(--porcelain,#F6F2EC) 97%, transparent); backdrop-filter:blur(10px);
  box-shadow:0 4px 20px color-mix(in srgb, var(--ink,#2B2520) 10%, transparent);
  transform:translateY(-100%); opacity:0; visibility:hidden; pointer-events:none;
  transition:transform .28s cubic-bezier(.22,.61,.36,1), opacity .28s ease, visibility .28s; }
body.tol-past-hero:not(.tol-sticky-dismissed) .tol-sticky-bar{ transform:translateY(0); opacity:1; visibility:visible; pointer-events:auto; }
.tol-sticky-inner{ width:100%; margin:0; padding:0 clamp(16px,3vw,48px); min-height:66px;
  display:flex; align-items:center; justify-content:space-between; gap:24px; }
.tol-sticky-logo{ display:inline-flex; align-items:center; flex:0 0 auto; }
.tol-sticky-logo img{ height:40px; width:auto; max-width:none; }
.tol-sticky-nav ul,.tol-sticky-nav .tol-nav-list{ display:flex; align-items:center; gap:30px; list-style:none; margin:0; padding:0; }
.tol-sticky-nav a{ color:var(--ink,#2B2520); font-family:var(--font-display); font-size:.98rem; position:relative; padding:4px 0; transition:color var(--t-fast,.2s); }
.tol-sticky-nav a:hover,.tol-sticky-nav .current-menu-item a{ color:var(--blush,#C2477E); }
.tol-sticky-actions{ display:flex; align-items:center; gap:14px; flex:0 0 auto; }
.tol-sticky-cta{ padding:11px 22px; font-size:.66rem; }
.tol-sticky-close{ background:none; border:0; cursor:pointer; width:30px; height:30px; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center; font-size:1.4rem; line-height:1;
  color:var(--ash,#6E665E); transition:color .2s, background .2s; }
.tol-sticky-close:hover{ color:var(--fuchsia,#6E1248); background:color-mix(in srgb, var(--ink,#2B2520) 6%, transparent); }
.tol-sticky-trigger{ display:none; }
.tol-sticky-nav ul{ flex-wrap:nowrap; } .tol-sticky-nav a{ white-space:nowrap; }
@media (max-width:1200px){ .tol-sticky-nav{ display:none; } .tol-sticky-trigger{ display:inline-flex; } }
@media (min-width:1201px){ .tol-sticky-trigger{ display:none; } }
@media (max-width:560px){
  .tol-sticky-inner{ min-height:60px; padding-inline:16px; gap:12px; }
  .tol-sticky-logo img{ height:34px; }
  .tol-sticky-cta{ padding:9px 14px; font-size:.58rem; letter-spacing:.1em; }
  .tol-sticky-actions{ gap:10px; }
}
@media (prefers-reduced-motion:reduce){
  .tol-sticky-bar,body.tol-past-hero:not(.tol-sticky-dismissed) .tol-sticky-bar{ transform:none; transition:opacity .2s ease, visibility .2s; } }
/* >>> TOL HEADER V5 END <<< */

/* >>> TOL SCROLL TOP START <<< */
/* Site-wide scroll-to-top (rendered on wp_footer, functions.php). Reveals with the sticky bar on
   body.tol-past-hero (shared IO). z-index below the Elementor lightbox (9999+), above content. */
.tol-scrolltop{ position:fixed; right:clamp(18px,2.5vw,34px); bottom:clamp(22px,3vw,40px); z-index:900;
  width:52px; height:52px; border-radius:50%; border:0; cursor:pointer; background:var(--fuchsia,#6E1248); color:#fff;
  display:inline-flex; align-items:center; justify-content:center;
  box-shadow:0 10px 30px color-mix(in srgb, var(--ink,#2B2520) 22%, transparent);
  opacity:0; visibility:hidden; transform:translateY(14px); pointer-events:none;
  transition:opacity .3s ease, transform .3s cubic-bezier(.22,.61,.36,1), visibility .3s, background .2s; }
/* Reveal on a CONSISTENT scroll distance (body.tol-show-top, set at scrollY>600 by the EXISTING
   header scroll listener), with past-hero kept as an OR fallback so the button can never be
   stranded hidden if that listener does not run. */
body.tol-show-top .tol-scrolltop,
body.tol-past-hero .tol-scrolltop{ opacity:1; visibility:visible; transform:translateY(0); pointer-events:auto; }
/* RETIRED 2026-07-10 — THIS WAS THE "disappears at the bottom" BUG.
   It hid the button whenever `.tol-footer-contact-band` intersected the viewport (threshold:0).
   That band is 888px tall (1338px at 390) inside a 1445px footer, so it entered view long before
   max scroll and was STILL intersecting AT max scroll → the control stayed hidden through the
   whole footer region, including the very bottom, on every page that renders the band (About,
   Custom, Care, Gallery, Blog, single posts). Home + Contact suppress the band (footer 557px),
   which is exactly the "some pages, not all" pattern.
   It existed to avoid colliding with the footer form's Send button — but measured at the true
   bottom the Send sits at y135-182 while the button sits at y808-860: no overlap at all.
   Was: body.tol-near-footer .tol-scrolltop{ opacity:0 !important; visibility:hidden !important; pointer-events:none !important; } */
.tol-scrolltop:hover{ background:var(--blush,#C2477E); }
.tol-scrolltop svg{ width:20px; height:20px; }
@media (max-width:560px){ .tol-scrolltop{ width:44px; height:44px; right:16px; bottom:20px; } .tol-scrolltop svg{ width:17px; height:17px; } }
@media (prefers-reduced-motion:reduce){ .tol-scrolltop,body.tol-show-top .tol-scrolltop,body.tol-past-hero .tol-scrolltop{ transform:none; transition:opacity .2s, visibility .2s; } }
/* >>> TOL SCROLL TOP END <<< */

/* >>> TOL NOTICE BAR START <<< */
/* Announcement bar at the very top (wp_body_open, functions.php). OFF by default — renders nothing
   unless a message is set in tol_notice_config(). Normal flow (pushes content down, scrolls away);
   the sticky reveal bar does NOT include it. Dismissible (sessionStorage). Variants: sale/closure/announcement. */
.tol-notice{ width:100%; font-family:var(--body); font-size:.86rem; letter-spacing:.02em; position:relative;
  display:flex; align-items:center; justify-content:center; gap:14px; padding:11px clamp(44px,4vw,60px);
  background:var(--fuchsia,#6E1248); color:var(--porcelain,#F6F2EC); text-align:center; }
.tol-notice a.tol-notice-link{ color:#fff; text-decoration:underline; text-underline-offset:3px; font-weight:600; }
.tol-notice a.tol-notice-link:hover{ opacity:.85; }
.tol-notice--sale{ background:var(--blush,#C2477E); color:#fff; }
.tol-notice--closure{ background:var(--ink,#2B2520); color:var(--porcelain,#F6F2EC); }
.tol-notice--announcement{ background:var(--fuchsia,#6E1248); color:var(--porcelain,#F6F2EC); }
.tol-notice-close{ position:absolute; right:clamp(12px,3vw,28px); top:50%; transform:translateY(-50%);
  background:none; border:0; color:inherit; opacity:.85; cursor:pointer; font-size:1.3rem; line-height:1; padding:4px; }
.tol-notice-close:hover{ opacity:1; }
body.tol-notice-dismissed .tol-notice{ display:none; }
@media (max-width:560px){ .tol-notice{ font-size:.78rem; padding:9px 40px; } }
/* >>> TOL NOTICE BAR END <<< */

/* >>> TOL COMPONENT POLISH START <<< */
/* Fixes for defects the EYE caught (Elementor-kit bare-<button> overrides, tiny targets,
   low contrast, default icons). The kit (.elementor-kit-5) paints bare buttons #C94A84 with
   radius 4px + padding and zeroes inline SVGs, so these use body.tol-site scope + !important. */

/* Defect 1 — scroll-to-top: true plum circle, visible inline SVG arrow, subtle hover. */
body.tol-site button.tol-scrolltop{
  width:52px !important; height:52px !important; padding:0 !important; border:0 !important; border-radius:50% !important;
  background:#6E1248 !important; color:#fff !important;
  box-shadow:0 10px 30px color-mix(in srgb,#2B2520 22%,transparent) !important;
  display:inline-flex !important; align-items:center !important; justify-content:center !important; }
body.tol-site button.tol-scrolltop:hover{ background:#8a2560 !important; transform:translateY(-3px); }
body.tol-site .tol-scrolltop svg{ width:22px !important; height:22px !important; min-width:22px; display:block !important; stroke:#fff !important; fill:none !important; }
@media (max-width:560px){ body.tol-site button.tol-scrolltop{ width:44px !important; height:44px !important; } body.tol-site .tol-scrolltop svg{ width:19px !important; height:19px !important; } }

/* Defect 3 — custom hamburger: refined SVG, ink colour, transparent button (kit tried to paint it). */
#tol-site-header .tol-nav-trigger, #tol-sticky-trigger, .tol-sticky-bar .tol-nav-trigger, #tol-nav-trigger{
  background:transparent !important; border:0 !important; padding:6px !important; width:auto !important; height:auto !important;
  align-items:center; justify-content:center; color:var(--ink,#2B2520) !important; }
.tol-burger{ color:var(--ink,#2B2520); display:block; transition:opacity var(--t-fast,.2s); }
.tol-nav-trigger:hover .tol-burger{ opacity:.6; }
.tol-sticky-bar .tol-burger{ width:24px; height:16px; }

/* Defect 4 — mobile close: 46x46 target (kit had painted a tiny pink box), transparent, custom X. */
#tol-mobile-nav button.tol-nav-close{
  width:46px !important; height:46px !important; padding:0 !important; border:0 !important; border-radius:50% !important;
  background:transparent !important; color:var(--ink,#2B2520) !important; font-size:0 !important;
  top:20px !important; right:20px !important; display:inline-flex !important; align-items:center !important; justify-content:center !important;
  transition:background .2s, color .2s; }
#tol-mobile-nav button.tol-nav-close:hover{ background:color-mix(in srgb,var(--ink,#2B2520) 8%,transparent) !important; color:var(--fuchsia,#6E1248) !important; }
#tol-mobile-nav .tol-close-x{ width:24px !important; height:24px !important; display:block !important; stroke:currentColor !important; fill:none !important; }

/* Defect 4b — off-canvas panel was min(440px,100vw) = full-width at ≤440, leaving NO region to
   click "outside" it. Cap at 86vw so a tap-strip remains at every mobile width → outside-click works. */
#tol-mobile-nav{ width:min(420px,86vw) !important; }

/* Defect 5 — mobile contact lines: were --ash (#6E665E ~4.9:1) → ink for strong legibility. */
.tol-mobile-contact a{ color:var(--ink,#2B2520) !important; font-weight:500; letter-spacing:.02em; }
.tol-mobile-contact a:hover{ color:var(--fuchsia,#6E1248) !important; }
/* >>> TOL COMPONENT POLISH END <<< */

/* >>> TOL FOOTER V4 START <<< */
/* Footer fix (2026-07-04). EXPLORE rebuilt as a plain HTML <ul> (the Elementor nav-menu
   widget collapsed to a hidden burger at <=1024 -> empty column); Hours forced single-line;
   legal links relocated under the social icons in col1; bottom bar = copyright + Sirrona only;
   EXPLICIT responsive tiers. Authoritative: supersedes the TOL FOOTER V2/V3 grid media
   queries (max-width:900 / 560) and the .tol-footer-copy centering by source order. */

/* EXPLORE list (col2) — plain list, no nav-menu breakpoint/burger behavior */
.tol-footer-grid .tol-footer-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.tol-footer-grid .tol-footer-links li{ list-style:none; margin:0; padding:0; }
.tol-footer-grid .tol-footer-links a{ color:rgba(255,255,255,.9); text-decoration:none; font-family:var(--body); font-weight:500; letter-spacing:.06em; transition:color .2s; }
.tol-footer-grid .tol-footer-links a:hover{ color:var(--petal); }

/* DEFECT 2 — Hours: one clean line per row, day left / time right, never wraps */
.tol-footer-hours{ display:block; }
.tol-footer-hours .hours-row{ display:flex; justify-content:space-between; align-items:baseline; gap:16px; padding:5px 0; font-size:.92rem; line-height:1.35; }
.tol-footer-hours .hours-row .d{ color:rgba(255,255,255,.82); white-space:nowrap; }   /* ~7.5:1 on #6E1248 */
.tol-footer-hours .hours-row .t{ color:#ffffff; white-space:nowrap; text-align:right; } /* ~11.4:1 on #6E1248 */

/* DEFECT 3 — legal links, now in col1 directly under the social icons */
.tol-footer-grid .tol-footer-legal{ display:flex; flex-wrap:wrap; align-items:center; gap:6px 14px; justify-content:flex-start; padding:0; border-top:0; margin-top:18px; font-size:.78rem; }
.tol-footer-grid .tol-footer-legal a{ color:rgba(255,255,255,.72); text-decoration:none; transition:color .2s; }
.tol-footer-grid .tol-footer-legal a:hover{ color:var(--petal); }
.tol-footer-grid .tol-footer-legal a:not(:last-child)::after{ content:"\00B7"; margin-left:14px; color:rgba(255,255,255,.34); }

/* DEFECT 4 — bottom bar: two items, copyright bottom-left / Sirrona bottom-right */
.tol-footer-copy{ display:flex; flex-direction:row !important; align-items:flex-end; justify-content:space-between; gap:18px; flex-wrap:wrap; padding:18px clamp(20px,4vw,64px); border-top:1px solid rgba(255,255,255,.14); font-size:.78rem; color:rgba(255,255,255,.7); max-width:1440px; margin-inline:auto; }
.tol-footer-copy > *{ margin:0; }
.tol-footer-copy .tol-footer-credit{ display:inline-flex; align-items:center; gap:8px; }

/* DEFECT 5 — EXPLICIT responsive tiers (this block is the root fix; do not re-nudge) */
/* Desktop >1024: four columns: [Brand+blurb+social+legal] | Explore | Visit | Hours */
.tol-footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1.3fr 1fr; gap:clamp(28px,4vw,64px); max-width:1440px; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); align-items:start; }
/* Tablet 768-1024: balanced 2x2 in DOM order -> row1 Brand | Explore, row2 Visit | Hours */
@media (max-width:1024px){
  .tol-footer-grid{ grid-template-columns:1fr 1fr; gap:clamp(28px,4vw,48px) clamp(32px,5vw,64px); }
  .tol-footer-grid > *{ order:0; }
}
/* Mobile <768: single column; contact-first order Brand, Social, Legal, Visit, Hours, Explore; centered */
@media (max-width:767px){
  .tol-footer-grid{ grid-template-columns:1fr; text-align:center; gap:40px; }
  .tol-footer-grid > .elementor-element-ftcol1{ order:1; }
  .tol-footer-grid > .elementor-element-ftcol3{ order:2; }
  .tol-footer-grid > .elementor-element-ftcol4{ order:3; }
  .tol-footer-grid > .elementor-element-ftcol2{ order:4; }
  .tol-footer-grid .tol-footer-social{ justify-content:center; }
  .tol-footer-grid .tol-footer-legal{ justify-content:center; }
  .tol-footer-grid .tol-footer-links{ align-items:center; }
  .tol-footer-grid .elementor-element-ftcol1 img{ margin-inline:auto; }
  .tol-footer-hours{ max-width:280px; margin-inline:auto; }
  .tol-footer-grid .tol-footer-contact{ display:inline-block; text-align:left; }
  .tol-footer-copy{ flex-direction:column !important; align-items:center; text-align:center; gap:12px; }
}
/* >>> TOL FOOTER V4 END <<< */

/* >>> TOL PANEL + FOOTER V5 START <<< */
/* 2026-07-04. Footer tagline centering + mobile phone/email one-row + Hours/Explore 2-col pair;
   mobile panel contact block restyle + social icons; sticky close refinement (kit override). */

/* ---- PART 1a/1e — footer: center all columns on tablet & mobile (Elementor text-editors
   don't inherit text-align, so center them explicitly) — kills left-aligned wraps with dead space ---- */
@media (max-width:1024px){
  .tol-footer-grid{ text-align:center; }
  .tol-footer-grid .elementor-widget-text-editor,
  .tol-footer-grid .elementor-widget-text-editor p{ text-align:center !important; max-width:none !important; margin-inline:auto; }
  .tol-footer-grid .elementor-element-ftcol1 img{ margin-inline:auto; }
  .tol-footer-grid .tol-footer-social{ justify-content:center; }
  .tol-footer-grid .tol-footer-legal{ justify-content:center; }
  .tol-footer-grid .tol-footer-links{ align-items:center; }
  .tol-footer-grid .tol-footer-contact .elementor-icon-list-item{ justify-content:center; }
}

/* ---- PART 1b/1c — mobile: phone+email one centered row; Hours+Explore two-column pair ---- */
@media (max-width:767px){
  /* two-column grid: Brand + Visit span full width, then Hours | Explore side by side */
  .tol-footer-grid{ grid-template-columns:1fr 1fr; gap:34px 20px; text-align:center; }
  .tol-footer-grid > .elementor-element-ftcol1{ grid-column:1 / -1; order:1; }  /* Brand + social + legal */
  .tol-footer-grid > .elementor-element-ftcol3{ grid-column:1 / -1; order:2; }  /* Visit */
  .tol-footer-grid > .elementor-element-ftcol4{ grid-column:auto;  order:3; }   /* Hours (left) */
  .tol-footer-grid > .elementor-element-ftcol2{ grid-column:auto;  order:4; }   /* Explore (right) */

  /* 1b — phone + email on one centered row (drop icons + shrink so both fit a single line) */
  .tol-footer-grid .tol-footer-contact{ display:block !important; text-align:center; }
  .tol-footer-grid .tol-footer-contact ul,
  .tol-footer-grid .tol-footer-contact .elementor-icon-list-items{ display:flex !important; flex-wrap:nowrap; justify-content:center; align-items:center; gap:0 16px; margin:0; padding:0; }
  .tol-footer-grid .tol-footer-contact li,
  .tol-footer-grid .tol-footer-contact .elementor-icon-list-item{ margin:0 !important; }
  .tol-footer-grid .tol-footer-contact .elementor-icon-list-icon{ display:none !important; }
  .tol-footer-grid .tol-footer-contact .elementor-icon-list-text{ font-size:.8rem !important; white-space:nowrap; }

  /* Hours fills its cell (drop the single-column centering cap) */
  .tol-footer-hours{ max-width:none !important; margin-inline:0 !important; }
  .tol-footer-hours .hours-row{ font-size:.86rem; gap:10px; }
  /* Explore links centered in its cell */
  .tol-footer-grid .tol-footer-links{ align-items:center; }
}

/* ---- PART 2b — mobile panel: Call/Text/Email as a labelled contact block ---- */
.tol-mobile-contact{ margin-top:34px; padding-top:26px; border-top:1px solid color-mix(in srgb,var(--ink) 12%,transparent); display:flex; flex-direction:column; gap:18px; }
.tol-mobile-nav .tol-mobile-contact .tol-mc-item{ display:flex !important; flex-direction:column; gap:3px; text-decoration:none; }
.tol-mobile-nav .tol-mobile-contact .tol-mc-lab{ font-family:var(--body); text-transform:uppercase; font-size:.66rem; font-weight:600; letter-spacing:.2em; color:var(--fuchsia,#6E1248) !important; }
.tol-mobile-nav .tol-mobile-contact .tol-mc-val{ font-family:var(--body); font-size:1.02rem; font-weight:500; letter-spacing:.01em; color:var(--ink,#2B2520) !important; transition:color .2s; }
.tol-mobile-nav .tol-mobile-contact .tol-mc-item:hover .tol-mc-val{ color:var(--fuchsia,#6E1248) !important; }

/* ---- PART 2c — mobile panel: social icons (footer treatment, 46px tappable) ---- */
.tol-mobile-social{ display:flex; gap:14px; margin-top:26px; }
.tol-mobile-social .tol-mobile-social-icon{ width:46px; height:46px; border:1px solid color-mix(in srgb,var(--ink) 26%,transparent); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; color:var(--ink,#2B2520); transition:background .2s,color .2s,border-color .2s; }
.tol-mobile-social .tol-mobile-social-icon:hover{ background:color-mix(in srgb,var(--fuchsia) 10%,transparent); color:var(--fuchsia,#6E1248); border-color:var(--fuchsia,#6E1248); }
.tol-mobile-social .tol-mobile-social-icon svg{ width:20px; height:20px; display:block; }

/* ---- PART 3b — sticky close: refined minimal X, NOT a filled kit button ---- */
body.tol-site .tol-sticky-close{ background:transparent !important; border:0 !important; box-shadow:none !important; padding:0 !important; width:28px !important; height:28px !important; min-height:0 !important; border-radius:50% !important; display:inline-flex !important; align-items:center !important; justify-content:center !important; color:var(--ash,#6E665E) !important; cursor:pointer; transition:color .2s, background .2s; }
body.tol-site .tol-sticky-close:hover{ color:var(--fuchsia,#6E1248) !important; background:color-mix(in srgb, var(--ink,#2B2520) 7%, transparent) !important; }
body.tol-site .tol-sticky-close .tol-sticky-close-x{ width:15px !important; height:15px !important; display:block !important; stroke:currentColor !important; fill:none !important; }
/* Sticky close X: desktop only. Hide it at the sticky hamburger breakpoint (≤1200) so mobile
   shows the hamburger, not the X (2026-07-07). */
@media (max-width:1200px){ body.tol-site .tol-sticky-close{ display:none !important; } }
/* >>> TOL PANEL + FOOTER V5 END <<< */

/* >>> TOL HEADER V7 + HOME GALLERY START <<< */
/* 2026-07-07. Sticky bar menu<->CTA swap past section 2 (V7); Home "Fresh from the shop"
   varied mosaic with Load More (8 -> 20). */

/* ---- PART 4 — sticky menu <-> CTA crossfade ---- */
.tol-sticky-swap{ position:relative; flex:1 1 auto; min-width:0; display:flex; align-items:center; justify-content:center; }
.tol-sticky-swap .tol-sticky-nav{ transition:opacity .3s ease, visibility .3s ease; }
.tol-sticky-cta-row{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; gap:26px; opacity:0; visibility:hidden; pointer-events:none; transition:opacity .3s ease, visibility .3s ease; }
body.tol-past-section2 .tol-sticky-swap .tol-sticky-nav{ opacity:0; visibility:hidden; pointer-events:none; }
body.tol-past-section2 .tol-sticky-cta-row{ opacity:1; visibility:visible; pointer-events:auto; }
body.tol-past-section2 .tol-sticky-actions .tol-sticky-cta{ display:none !important; }   /* hide duplicate Start an Order in CTA state (beats .tol-btn display) */
.tol-sticky-cta-link{ display:inline-flex; align-items:center; gap:7px; color:var(--ink,#2B2520); font-family:var(--body); font-size:.7rem; text-transform:uppercase; letter-spacing:.14em; font-weight:600; text-decoration:none; white-space:nowrap; transition:color .2s; }
.tol-sticky-cta-link svg{ width:16px; height:16px; flex:0 0 auto; }
.tol-sticky-cta-link:hover{ color:var(--blush,#C2477E); }
.tol-sticky-cta-order{ padding:11px 22px; font-size:.66rem; }
@media (prefers-reduced-motion:reduce){ .tol-sticky-swap .tol-sticky-nav, .tol-sticky-cta-row{ transition:opacity .15s ease; } }
/* mobile (nav already hidden -> hamburger): CTA row becomes compact icon circles, drop standalone order */
@media (max-width:1200px){
  .tol-sticky-cta-link span{ display:none; }
  .tol-sticky-cta-row .tol-sticky-cta-order{ display:none !important; }
  .tol-sticky-cta-row{ gap:14px; }
  .tol-sticky-cta-link{ width:36px; height:36px; justify-content:center; gap:0; border:1px solid color-mix(in srgb,var(--ink,#2B2520) 22%,transparent); border-radius:50%; }
  .tol-sticky-cta-link svg{ width:18px; height:18px; }
}

/* ---- PART 3 — Home "Fresh from the shop" CSS-GRID mosaic (rebuilt 2026-07-07; replaces the
   broken CSS-columns masonry that tore large tiles). Square cells via aspect-ratio:1; large tiles
   (tol-hg-lg) occupy a defined 2x2 cell and never fragment; grid-auto-flow:dense backfills; layout
   is CSS-driven so it adapts to any image count. Columns: 4 (>1024) / 3 (768-1024) / 2 (<=767). */
/* ROOT FIX: the gallery section (f2db6b4) was a leftover 4-col bento grid with FIXED rows
   (grid-template-rows:210px 210px). Its inner (ed9474e) spanned 2 cols/2 rows (~566x440) with
   overflow:hidden, which BOTH crushed the gallery to ~566px wide AND clipped its taller height
   (the visible collapse). Make the section a plain block so the inner takes full width + natural
   height; the mosaic then lays out cleanly. */
.page-id-14 .elementor-element-f2db6b4{ display:block !important; }
.page-id-14 .elementor-element-ed9474e{ overflow:visible !important; width:100%; max-width:1400px; margin-inline:auto; }
/* Deterministic FIXED grid-auto-rows (row height approx column width per breakpoint) instead of
   aspect-ratio on the items — aspect-ratio on grid tiles desynced layout vs paint here (tiles
   measured full height but rendered collapsed). Fixed rows are paint-stable; 1x1 cells read square,
   2x2 tiles stay proportional; images fill via object-fit:cover. */
.tol-home-gallery{ display:grid; grid-template-columns:repeat(4,1fr); grid-auto-rows:clamp(210px,20.5vw,300px); gap:clamp(8px,0.9vw,14px); grid-auto-flow:dense; max-width:1280px; margin-inline:auto; }
.tol-home-gallery .tol-hg-item{ position:relative; display:block; overflow:hidden; border-radius:3px; margin:0; }
.tol-home-gallery .tol-hg-item img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .55s cubic-bezier(.2,.7,.2,1); }
.tol-home-gallery .tol-hg-item:hover img{ transform:scale(1.05); }
.tol-home-gallery .tol-hg-item.is-hidden{ display:none; }
.tol-home-gallery .tol-hg-lg{ grid-column:span 2; grid-row:span 2; }
@media (max-width:1024px){ .tol-home-gallery{ grid-template-columns:repeat(3,1fr); grid-auto-rows:clamp(180px,29vw,240px); } }
@media (max-width:767px){ .tol-home-gallery{ grid-template-columns:repeat(2,1fr); grid-auto-rows:clamp(150px,44vw,190px); gap:8px; }
  /* mobile: keep large tiles 2x2 (full-width accent) so 9-on-load fills 6 clean rows in 2 cols,
     no odd end-cell (2026-07-07). */
  .tol-home-gallery .tol-hg-lg{ grid-column:span 2; grid-row:span 2; } }
.tol-hg-actions{ display:flex; gap:16px; justify-content:center; align-items:center; flex-wrap:wrap; margin-top:clamp(30px,4vw,48px); }
.tol-hg-actions .tol-btn{ margin:0; }
.tol-hg-more[hidden]{ display:none !important; }
/* >>> TOL HEADER V7 + HOME GALLERY END <<< */

/* >>> TOL BRAND ICONS START <<< */
/* 2026-07-07. Custom brand icons (inline SVG, fill:currentColor) — footer contact list + button icon.
   Top-bar (18px, white via .tol-topbar color) and sticky (16px, ink) reuse existing svg sizing. */
.tol-footer-contact-list{ list-style:none; margin:6px 0 0; padding:0; display:flex; flex-direction:column; gap:12px; }
.tol-footer-contact-list li{ margin:0; padding:0; }
.tol-footer-contact-list a{ display:inline-flex; align-items:center; gap:10px; color:rgba(255,255,255,.9) !important; text-decoration:none; transition:color .2s; }
.tol-footer-contact-list a:hover{ color:#fff !important; }
.tol-footer-contact-list .tol-fic{ display:inline-flex; width:17px; height:17px; flex:0 0 auto; }
.tol-footer-contact-list .tol-fic svg{ width:17px; height:17px; display:block; }
/* footer forces white fill on its contact svgs (existing rule) — keep icons legible on plum */
.tol-footer-grid .tol-footer-contact-list svg{ fill:rgba(255,255,255,.92) !important; }

/* leading brand icon inside a .tol-btn (e.g. Get directions -> location pin) */
.tol-btn.tol-btn-icon{ display:inline-flex; align-items:center; }
.tol-btn .tol-fic{ display:inline-flex; width:16px; height:16px; margin-right:9px; flex:0 0 auto; }
.tol-btn .tol-fic svg{ width:16px; height:16px; display:block; }
/* The Elementor kit's `a` colour (accent #C94A84) out-specified the V7 sticky-link rule → the
   label AND the fill-based icon inherited pink. Force ink (plum on hover) with enough specificity. */
body.tol-site .tol-sticky-cta-link{ color:var(--ink,#2B2520) !important; }
body.tol-site .tol-sticky-cta-link:hover{ color:var(--fuchsia,#6E1248) !important; }
body.tol-site .tol-sticky-cta-link svg,
body.tol-site .tol-sticky-cta-link svg path,
body.tol-site .tol-btn .tol-fic svg,
body.tol-site .tol-btn .tol-fic svg path{ fill:currentColor !important; }
/* >>> TOL BRAND ICONS END <<< */

/* >>> TOL DELIVERY FIX START <<< */
/* 2026-07-07. Delivery band ("Sarasota and the Gulf Coast"): slides rebuilt as <img> (the div
   background-image would not paint on .slide in this band -> empty framed box) with object-fit
   cover; give the slideshow a real height so the media column fills its half instead of
   collapsing to slivers (the flex wrap collapsed to ~20px on mobile). */
.page-id-14 .tol-delivery .tol-slideshow-wrap{ display:block; position:relative; align-self:stretch; }
.page-id-14 .tol-delivery .tol-slideshow{ position:relative; width:100%; aspect-ratio:4/5; min-height:460px; border-radius:2px; overflow:hidden; isolation:isolate; }
.page-id-14 .tol-delivery .tol-slideshow img.slide{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0; transition:opacity 1.4s ease; }
.page-id-14 .tol-delivery .tol-slideshow img.slide.is-on{ opacity:1; }
@media (max-width:900px){
  .page-id-14 .tol-delivery .tol-slideshow{ aspect-ratio:3/2; min-height:300px; }
}
/* >>> TOL DELIVERY FIX END <<< */

/* >>> TOL SINGLE START <<< */
/* Single-post journal article template (Elementor Single template 155 → [tol_single_post]).
   Matches the .tol-site design system. Article hero (shorter than the 880 page hero), reading
   column, styled content, share, furniture, author box, related-by-category, contact CTA. */
.tol-single{ display:block; background:var(--porcelain,#F6F2EC); }

/* ---- HERO (article-scaled hero clone) ---- */
.tol-single-hero{ position:relative; min-height:clamp(360px,44vh,480px); display:flex; align-items:flex-end; overflow:hidden; isolation:isolate; background:var(--fuchsia,#6E1248); }
.tol-single-hero-img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; z-index:0; border-radius:0; }
.tol-single-hero-scrim{ position:absolute; inset:0; z-index:1; background:
  linear-gradient(98deg, rgba(31,9,24,0.80) 0%, rgba(31,9,24,0.30) 62%, rgba(31,9,24,0.10) 100%),
  linear-gradient(to top, rgba(31,9,24,0.78) 0%, rgba(31,9,24,0.10) 46%); }
.tol-single-hero--solid{ background:linear-gradient(135deg, var(--fuchsia,#6E1248) 0%, #4c0c31 100%); }
.tol-single-hero--solid .tol-single-hero-scrim{ background:linear-gradient(to top, rgba(31,9,24,0.35), rgba(31,9,24,0)); }
.tol-single-hero-inner{ position:relative; z-index:2; width:100%; max-width:1180px; margin-inline:auto; padding:clamp(40px,6vw,84px) clamp(20px,4vw,64px); }
.tol-single-cat{ display:inline-block; width:fit-content; font-family:var(--body); font-weight:600; text-transform:uppercase; letter-spacing:.24em; font-size:.82rem; color:var(--petal,#F2ADC2) !important; text-decoration:none; margin-bottom:18px; }
.tol-single-cat::after{ content:""; display:block; width:38px; height:2px; background:var(--petal,#F2ADC2); margin-top:12px; }
.tol-single-cat:hover{ color:#fff !important; }
.tol-single-title{ margin:0; color:#fff; font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:300; font-size:clamp(1.9rem,3.8vw,3.2rem); line-height:1.08; max-width:20ch; }
.tol-single-meta{ margin-top:20px; display:flex; flex-wrap:wrap; align-items:center; gap:10px; color:rgba(255,255,255,.9); font-family:var(--body); font-size:.86rem; letter-spacing:.02em; }
.tol-single-meta .tol-dot{ color:rgba(255,255,255,.5); }

/* ---- READING COLUMN + CONTENT ---- */
.tol-single-content{ max-width:720px; margin:clamp(40px,5vw,64px) auto 0; padding-inline:clamp(20px,5vw,28px); font-family:var(--body); color:var(--ink,#2B2520); font-size:1.075rem; line-height:1.78; }
.tol-single-content > *:first-child{ margin-top:0; }
.tol-single-content p{ margin:0 0 1.35em; }
.tol-single-content h2{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:400; color:var(--fuchsia,#6E1248); font-size:clamp(1.55rem,2.6vw,2rem); line-height:1.16; margin:2em 0 .55em; }
.tol-single-content h3{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:400; color:var(--ink,#2B2520); font-size:clamp(1.25rem,1.9vw,1.5rem); line-height:1.2; margin:1.7em 0 .5em; }
.tol-single-content h4{ font-family:var(--body); font-weight:600; text-transform:uppercase; letter-spacing:.1em; font-size:.9rem; color:var(--ash,#6E665E); margin:1.6em 0 .4em; }
.tol-single-content a{ color:var(--blush,#C2477E); text-decoration:underline; text-underline-offset:3px; text-decoration-thickness:1px; transition:color .2s; }
.tol-single-content a:hover{ color:var(--fuchsia,#6E1248); }
.tol-single-content ul,.tol-single-content ol{ margin:0 0 1.35em; padding-left:1.4em; }
.tol-single-content li{ margin:0 0 .5em; padding-left:.2em; }
.tol-single-content ul li::marker{ color:var(--blush,#C2477E); }
.tol-single-content blockquote{ margin:1.8em 0; padding:.4em 0 .4em 1.4em; border-left:3px solid var(--blush,#C2477E); font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-style:italic; font-size:1.25rem; line-height:1.5; color:var(--fuchsia,#6E1248); }
.tol-single-content blockquote p{ margin:0; }
.tol-single-content img{ width:100%; height:auto; border-radius:var(--radius-soft,4px); margin:1.6em 0; display:block; }
.tol-single-content figure{ margin:1.6em 0; }
.tol-single-content figcaption{ font-size:.86rem; color:var(--ash,#6E665E); text-align:center; margin-top:.6em; }
.tol-single-content strong{ color:var(--ink,#2B2520); }
.tol-single-content hr{ border:0; border-top:1px solid color-mix(in srgb, var(--ink,#2B2520) 12%, transparent); margin:2.4em 0; }

/* ---- SHARE ---- */
.tol-single-share{ max-width:720px; margin:clamp(36px,4vw,52px) auto 0; padding:22px clamp(20px,5vw,28px); border-top:1px solid color-mix(in srgb, var(--ink,#2B2520) 12%, transparent); border-bottom:1px solid color-mix(in srgb, var(--ink,#2B2520) 12%, transparent); display:flex; align-items:center; gap:18px; flex-wrap:wrap; }
.tol-single-share-label{ font-family:var(--body); font-weight:600; text-transform:uppercase; letter-spacing:.16em; font-size:.72rem; color:var(--ash,#6E665E); }
.tol-single-share-links{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.tol-site .tol-share-btn{ display:inline-flex; align-items:center; gap:8px; min-height:40px; padding:0 12px; border:1px solid color-mix(in srgb, var(--ink,#2B2520) 20%, transparent); border-radius:var(--radius-pill,999px); background:transparent; color:var(--ink,#2B2520) !important; cursor:pointer; text-decoration:none; font-family:var(--body); font-size:.8rem; transition:background .2s,color .2s,border-color .2s; }
.tol-site .tol-share-btn:not(.tol-share-copy){ width:40px; height:40px; padding:0; justify-content:center; }
.tol-site .tol-share-btn svg{ fill:currentColor; }
.tol-site .tol-share-btn:hover{ background:var(--fuchsia,#6E1248); color:#fff !important; border-color:var(--fuchsia,#6E1248); }
.tol-share-copy .tol-share-copytext{ font-weight:500; }

/* ---- FURNITURE: categories/tags + journal search ---- */
.tol-single-furniture{ max-width:720px; margin:clamp(30px,3.5vw,44px) auto 0; padding-inline:clamp(20px,5vw,28px); display:flex; flex-wrap:wrap; gap:24px; justify-content:space-between; align-items:flex-end; }
.tol-single-taxo{ display:flex; flex-direction:column; gap:14px; }
.tol-single-taxo-row{ display:flex; flex-wrap:wrap; align-items:center; gap:8px; }
.tol-furn-label{ font-family:var(--body); font-weight:600; text-transform:uppercase; letter-spacing:.16em; font-size:.68rem; color:var(--ash,#6E665E); margin-right:4px; }
.tol-tag-pill{ display:inline-flex; align-items:center; padding:6px 14px; border-radius:var(--radius-pill,999px); background:#fff; border:1px solid color-mix(in srgb, var(--ink,#2B2520) 14%, transparent); color:var(--ink,#2B2520); font-family:var(--body); font-size:.8rem; text-decoration:none; transition:background .2s,color .2s,border-color .2s; }
.tol-tag-pill:hover{ background:var(--fuchsia,#6E1248); color:#fff; border-color:var(--fuchsia,#6E1248); }
.tol-tag-pill--tag{ background:color-mix(in srgb, var(--petal,#F2ADC2) 26%, #fff); border-color:transparent; }
.tol-single-search{ display:flex; flex-direction:column; gap:8px; min-width:220px; }
.tol-single-search-field{ display:flex; align-items:center; background:#fff; border:1px solid color-mix(in srgb, var(--ink,#2B2520) 16%, transparent); border-radius:var(--radius-pill,999px); overflow:hidden; }
.tol-single-search-field input{ flex:1 1 auto; border:0; background:transparent; padding:11px 16px; font-family:var(--body); font-size:.9rem; color:var(--ink,#2B2520); outline:none; }
.tol-site .tol-single-search-field button{ background:transparent !important; border:0 !important; padding:0 14px 0 6px !important; color:var(--fuchsia,#6E1248) !important; cursor:pointer; display:inline-flex; align-items:center; }
.tol-site .tol-single-search-field button svg{ stroke:currentColor; }

/* ---- AUTHOR BOX ---- */
.tol-single-author{ max-width:720px; margin:clamp(40px,5vw,60px) auto 0; padding:clamp(22px,3vw,30px) clamp(20px,5vw,32px); background:#fff; border-radius:var(--radius-soft,4px); box-shadow:0 20px 50px color-mix(in srgb, var(--ink,#2B2520) 8%, transparent); display:flex; gap:22px; align-items:center; }
.tol-single-author-mark{ flex:0 0 auto; width:96px; height:96px; border-radius:50%; background:var(--porcelain,#F6F2EC); display:inline-flex; align-items:center; justify-content:center; overflow:hidden; padding:14px; }
.tol-single-author-mark img{ width:100%; height:auto; object-fit:contain; border-radius:0; }
.tol-single-author-text{ display:flex; flex-direction:column; gap:6px; }
.tol-single-author-name{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:400; font-size:1.25rem; color:var(--ink,#2B2520); }
.tol-single-author-bio{ margin:0; font-family:var(--body); font-size:.95rem; line-height:1.6; color:var(--ash,#6E665E); }

/* ---- RELATED (journal card look) ---- */
.tol-single-related{ max-width:1180px; margin:clamp(56px,6vw,88px) auto 0; padding:clamp(40px,5vw,64px) clamp(20px,4vw,64px) 0; }
.tol-single-related-head{ text-align:center; margin-bottom:clamp(28px,3vw,40px); }
.tol-single-related-head .tol-eyebrow{ margin-inline:auto; }
.tol-single-related-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:clamp(20px,2.4vw,34px); }
.tol-related-card{ display:flex; flex-direction:column; background:#fff; border-radius:var(--radius-soft,4px); overflow:hidden; text-decoration:none; color:var(--ink,#2B2520); box-shadow:0 14px 40px color-mix(in srgb, var(--ink,#2B2520) 7%, transparent); transition:transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s; }
.tol-related-card:hover{ transform:translateY(-4px); box-shadow:0 22px 56px color-mix(in srgb, var(--ink,#2B2520) 12%, transparent); }
.tol-related-media{ position:relative; display:block; aspect-ratio:3/2; overflow:hidden; background:var(--porcelain,#F6F2EC); }
.tol-related-media img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; border-radius:0; transition:transform .5s; }
.tol-related-card:hover .tol-related-media img{ transform:scale(1.05); }
.tol-related-fallback{ position:absolute; inset:0; background:linear-gradient(135deg,var(--fuchsia,#6E1248),var(--blush,#C2477E)); }
.tol-related-body{ padding:clamp(18px,1.6vw,24px); display:flex; flex-direction:column; gap:9px; }
.tol-related-meta{ font-family:var(--body); font-weight:600; text-transform:uppercase; letter-spacing:.14em; font-size:.68rem; color:var(--blush,#C2477E); }
.tol-related-title{ margin:0; font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:400; font-size:1.22rem; line-height:1.26; color:var(--ink,#2B2520); }

/* ---- POST → CONTACT CTA ---- */
.tol-single-cta{ margin-top:clamp(56px,6vw,90px); background:var(--fuchsia,#6E1248); }
.tol-single-cta-inner{ max-width:720px; margin-inline:auto; padding:clamp(56px,7vw,96px) clamp(20px,5vw,32px); text-align:center; }
.tol-single-cta .tol-eyebrow{ margin-inline:auto; color:var(--petal,#F2ADC2) !important; }
.tol-single-cta .tol-eyebrow::after{ background:var(--petal,#F2ADC2); }
.tol-single-cta-h2{ margin:0 0 .5em; color:#fff; font-family:var(--tol-display,"freight-big-pro",Georgia,serif); font-weight:300; font-size:clamp(1.7rem,3vw,2.6rem); line-height:1.12; }
.tol-single-cta p{ margin:0 auto 1.8em; max-width:44ch; color:rgba(255,255,255,.86); font-family:var(--body); line-height:1.6; }

/* ---- RESPONSIVE ---- */
@media (max-width:1024px){ .tol-single-related-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:767px){
  .tol-single-related-grid{ grid-template-columns:1fr; }
  .tol-single-furniture{ flex-direction:column; align-items:stretch; }
  .tol-single-search{ min-width:0; }
  .tol-single-author{ flex-direction:column; text-align:center; }
  .tol-single-author-text{ align-items:center; }
  .tol-single-title{ max-width:none; }
}
/* Specificity overrides: the Elementor kit h1 rule out-specifies the hero title (forces ink), and
   the .tol-site .tol-eyebrow base (plum) out-specifies .tol-single-cat — pin white/petal here. */
.tol-site .tol-single-hero .tol-single-title{ color:#fff !important; }
.tol-site .tol-single-hero .tol-single-cat{ color:var(--petal,#F2ADC2) !important; }
.tol-site .tol-single-hero .tol-single-cat::after{ background:var(--petal,#F2ADC2) !important; }
.tol-site .tol-single-hero .tol-single-cat:hover{ color:#fff !important; }
.tol-site .tol-single-cta .tol-eyebrow{ color:var(--petal,#F2ADC2) !important; }
.tol-site .tol-single-cta .tol-eyebrow::after{ background:var(--petal,#F2ADC2) !important; }
.tol-site .tol-single-cta .tol-single-cta-h2{ color:#fff !important; }
/* >>> TOL SINGLE END <<< */

/* >>> TOL FEATURED LABEL START <<< */
/* Journal featured (big) post label only — Freight Sans, uppercase, petal accent on a soft
   plum scrim so it reads on any featured photo (2026-07-07). */
.tol-site .tol-blog-feature .tol-blog-media{ position:relative; }
.tol-site .tol-blog-featured{ position:absolute; top:14px; left:14px; z-index:2;
  font-family:var(--body); font-weight:600; font-size:.68rem; letter-spacing:.16em; text-transform:uppercase;
  color:var(--petal,#F2ADC2); background:rgba(31,9,24,.55); padding:5px 11px; border-radius:2px; line-height:1; }
/* >>> TOL FEATURED LABEL END <<< */

/* >>> TOL DARK LINK FIX START <<< */
/* A prior pass left body links on the plum feature band inheriting the base
   blush link color (plum-on-plum, unreadable). Restore a readable light color
   on the dark band only. Light-background links are unchanged. */
.tol-site .tol-feature a{ color:var(--petal,#F2ADC2) !important; text-decoration:underline; text-underline-offset:2px; }
.tol-site .tol-feature a:hover{ color:#ffffff !important; }
/* >>> TOL DARK LINK FIX END <<< */

/* >>> TOL BENTO HOVER ZOOM START <<< */
/* Restores the old image-widget hover zoom on the native background. A nested
   .tol-card-bg layer (direct child, absolute, below the scrim) inherits the
   card photo + the custom per-device focal, and scales on hover. Exact old
   effect: scale(1.05), transform 1.2s cubic-bezier(.2,.7,.2,1). */
.tol-site .tol-card .tol-card-bg{ position:absolute; inset:0; z-index:0; margin:0; padding:0; min-height:0;
  background-image:inherit; background-position:inherit; background-size:inherit; background-repeat:no-repeat;
  transform:scale(1); transform-origin:center center; transition:transform 1.2s cubic-bezier(.2,.7,.2,1);
  pointer-events:none; }
.tol-site .tol-card:hover .tol-card-bg{ transform:scale(1.05); }
@media (prefers-reduced-motion: reduce){
  .tol-site .tol-card .tol-card-bg{ transition:none; }
  .tol-site .tol-card:hover .tol-card-bg{ transform:none; }
}
/* >>> TOL BENTO HOVER ZOOM END <<< */

/* >>> TOL CONTACT V3 START <<< */
/* Contact page (id 19), Phase 8 + 8.1 refinement. A centered Find Us band on
   cream (no white block), an elevated plum + porcelain split CARD, and a restyle
   of the EXISTING Elementor form (fields/branching/reCAPTCHA/send untouched —
   CSS only). Site design system: --fuchsia plum, --blush accent, --petal on-dark,
   --porcelain form ground, freight type. Scoped to .page-id-19.
   STANDING CHECK: any centered block centers its eyebrow AND its rule too. */

/* Find Us — centered editorial band on cream (white block dropped; option b) */
.page-id-19 .tol-contact-findus{ background:transparent !important;
  padding-block:clamp(72px,7vw,100px) clamp(32px,4vw,48px) !important; }
.page-id-19 .tol-contact-findus > .e-con-inner,
.page-id-19 .tol-contact-findus{ text-align:center; }
/* width:100% forces the widget to fill its 720 column instead of shrinking to its
   text (the short "Find Us" eyebrow was collapsing to ~72px and sitting left) */
.page-id-19 .tol-contact-findus .elementor-widget-heading,
.page-id-19 .tol-contact-findus .elementor-widget-text-editor{
  width:100% !important; max-width:720px !important; margin-left:auto !important; margin-right:auto !important; }
.page-id-19 .tol-contact-findus > *,
.page-id-19 .tol-contact-findus .elementor-widget-text-editor,
.page-id-19 .tol-contact-findus .elementor-widget-text-editor p,
.page-id-19 .tol-contact-findus .elementor-widget-heading .elementor-heading-title{ text-align:center !important; }
/* eyebrow rule: center the site's SINGLE native .tol-eyebrow::after divider (no
   custom duplicate — the orphan left rule was this native one sitting at margin:0) */
.page-id-19 .tol-contact-findus .tol-eyebrow::after{ margin-left:auto !important; margin-right:auto !important; }
.page-id-19 .tol-contact-findus h2{ margin:18px auto 18px; max-width:16ch; }
.page-id-19 .tol-contact-findus p{ color:var(--ash); font-size:1.06rem; max-width:60ch; margin:0 auto; }
.page-id-19 .tol-contact-findus a{ color:var(--blush); }

/* The split card — sits clean on cream, no ghost band, subtle rounding */
.page-id-19 .tol-contact{ background:transparent !important; max-width:1280px;
  margin:0 auto; padding-inline:clamp(20px,4vw,48px);
  padding-block:clamp(16px,2vw,28px) clamp(56px,7vw,88px) !important; }
.page-id-19 .tol-contact-split,
.page-id-19 .tol-contact-split > .e-con-inner{
  display:flex !important; flex-direction:row !important; flex-wrap:wrap; align-items:stretch; gap:0 !important; }
.page-id-19 .tol-contact-split{ box-shadow:0 40px 90px -50px rgba(43,20,35,.5);
  border-radius:var(--radius-soft); overflow:hidden; }

/* Left plum panel — content vertically centered so the panel reads balanced
   against the taller form column with no empty void (flex-fill: the wrapper is a
   column, the widget-container flexes to fill it, content is centered). */
.page-id-19 .tol-contact-panel{ flex:0 0 41%; max-width:41%;
  background:var(--fuchsia); color:#fff; padding:clamp(40px,4vw,60px);
  position:relative; overflow:hidden; display:flex; flex-direction:column; }
.page-id-19 .tol-contact-panel::after{ content:""; position:absolute; right:-70px; bottom:-70px;
  width:240px; height:240px; border-radius:50%;
  background:radial-gradient(circle,rgba(242,173,194,.16),transparent 70%); pointer-events:none; }
.page-id-19 .tol-contact-panel > .elementor-widget-container{ position:relative; z-index:1;
  flex:1 1 auto; display:flex; flex-direction:column; justify-content:center; }
/* future chat widget drops into this slot; hidden until one is provided */
.page-id-19 .tol-contact-panel .tol-chat-slot:empty{ display:none; }
.page-id-19 .tol-contact-panel .tol-chat-slot{ margin-top:26px; }
.page-id-19 .tol-contact-panel .tol-eyebrow-dark{ color:var(--petal); font-size:.7rem; letter-spacing:.3em;
  text-transform:uppercase; font-weight:600; margin:0 0 14px; font-family:var(--font-body); }
.page-id-19 .tol-contact-panel h2{ color:#fff; margin:0 0 10px; }
.page-id-19 .tol-contact-panel .tol-panel-lead{ color:rgba(255,255,255,.75); max-width:34ch; margin:0 0 30px; }
.page-id-19 .tol-contact-panel .tol-vlist{ border-top:1px solid rgba(255,255,255,.16); }
.page-id-19 .tol-contact-panel .tol-vrow{ display:grid; grid-template-columns:96px 1fr; gap:16px;
  padding:17px 0; border-bottom:1px solid rgba(255,255,255,.16); align-items:start; }
.page-id-19 .tol-contact-panel .tol-vk{ font-size:.66rem; letter-spacing:.2em; text-transform:uppercase;
  color:var(--petal); padding-top:3px; }
.page-id-19 .tol-contact-panel .tol-vv{ color:rgba(255,255,255,.94); font-size:.98rem; line-height:1.5; }
/* detail list values in the SANS body face (were serif freight-text-pro) */
.page-id-19 .tol-contact-panel .tol-vk,
.page-id-19 .tol-contact-panel .tol-vv,
.page-id-19 .tol-contact-panel .tol-vv a{ font-family:"freight-sans-pro", system-ui, -apple-system, "Segoe UI", sans-serif !important; }
.page-id-19 .tol-contact-panel .tol-vv a{ color:#fff; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.4); }
.page-id-19 .tol-contact-panel .tol-vv a:hover{ border-color:#fff; }
.page-id-19 .tol-contact-panel .tol-soon{ margin-top:30px; font-size:.82rem;
  color:rgba(255,255,255,.72); line-height:1.55; }
.page-id-19 .tol-contact-panel .tol-soon{ border-left:2px solid var(--petal); padding-left:14px; }

/* Right porcelain form column */
.page-id-19 .tol-contact-formwrap{ flex:1 1 59%; max-width:59%;
  background:var(--porcelain); padding:clamp(40px,4vw,60px); }
.page-id-19 .tol-contact-formhead h2{ margin:0 0 10px; }
.page-id-19 .tol-contact-formhead .tol-form-intro{ color:var(--ash); margin:0 0 6px; max-width:46ch; }
.page-id-19 .tol-contact-formhead .req-legend{ font-size:.76rem; color:var(--ash); margin:0 0 28px; }
.page-id-19 .tol-contact-formhead .req-legend b{ color:var(--blush); }

/* Restyle the existing Elementor form (scoped, not rebuilt) */
.page-id-19 .tol-contact-formwrap .elementor-field-group{ margin-bottom:18px; }
.page-id-19 .tol-contact-formwrap .elementor-field-group > label{
  display:block; font-family:var(--font-body); font-size:.72rem; letter-spacing:.14em;
  text-transform:uppercase; color:var(--ink); font-weight:600; margin:0 0 8px; line-height:1.3; }
.page-id-19 .tol-contact-formwrap input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.page-id-19 .tol-contact-formwrap select,
.page-id-19 .tol-contact-formwrap textarea{
  width:100%; font-family:var(--font-body); font-size:1rem; color:var(--ink);
  background:#fff; border:1px solid rgba(43,37,32,.16); border-radius:0 !important;
  padding:14px 15px; box-shadow:none; transition:border-color .2s, box-shadow .2s; }
.page-id-19 .tol-contact-formwrap input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus,
.page-id-19 .tol-contact-formwrap select:focus,
.page-id-19 .tol-contact-formwrap textarea:focus{
  outline:none; border-color:var(--blush); box-shadow:0 0 0 3px rgba(194,71,126,.12); }
.page-id-19 .tol-contact-formwrap textarea{ min-height:120px; resize:vertical; }
/* required asterisk — only the 4 required fields carry .elementor-field-required.
   nowrap keeps the mark attached to its label, never orphaned on its own line */
.page-id-19 .tol-contact-formwrap .elementor-field-group.elementor-field-required > label{ white-space:normal; }
.page-id-19 .tol-contact-formwrap .elementor-field-group.elementor-field-required > label::after{
  content:"\00a0*"; color:var(--blush); }
.page-id-19 .tol-contact-formwrap .elementor-field-type-select select{ cursor:pointer; }

/* consent / acceptance — checkbox left + text right on one aligned row, roomy
   separation before Send it. The redundant "Consent" field label is hidden. */
.page-id-19 .tol-contact-formwrap .elementor-field-type-acceptance{
  margin-top:30px; margin-bottom:26px; padding-top:28px; border-top:1px solid rgba(43,37,32,.12); }
.page-id-19 .tol-contact-formwrap .elementor-field-type-acceptance > .elementor-field-label{ display:none !important; }
.page-id-19 .tol-contact-formwrap .elementor-field-type-acceptance .elementor-field-subgroup{ display:block; }
.page-id-19 .tol-contact-formwrap .elementor-field-type-acceptance .elementor-field-option{
  display:flex; align-items:flex-start; gap:12px; }
.page-id-19 .tol-contact-formwrap .elementor-field-type-acceptance input[type=checkbox]{
  width:17px; height:17px; margin:3px 0 0; flex:0 0 auto; accent-color:var(--blush); }
.page-id-19 .tol-contact-formwrap .elementor-field-type-acceptance label{
  display:inline; margin:0; text-transform:none; letter-spacing:0; font-weight:400;
  font-size:.78rem; line-height:1.5; color:var(--ash); }
.page-id-19 .tol-contact-formwrap .elementor-field-type-acceptance a{ color:var(--blush); }

/* reCAPTCHA note */
.page-id-19 .tol-contact-formwrap .tol-recaptcha-note{ font-size:.72rem; color:var(--ash); text-align:center; margin:14px 0 0; }
.page-id-19 .tol-contact-formwrap .tol-recaptcha-note a{ color:var(--blush); }

/* submit — full width, confident, blush to plum on hover (kit-proofed) */
body.tol-site.page-id-19 .tol-contact-formwrap button[type=submit],
body.tol-site.page-id-19 .tol-contact-formwrap .elementor-button{
  width:100%; display:flex; justify-content:center; margin-top:8px; background:var(--blush) !important; color:#fff !important;
  border:0 !important; border-radius:0 !important; padding:18px !important; box-shadow:none !important;
  font-family:var(--font-body); font-size:.82rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; transition:background .25s; }
body.tol-site.page-id-19 .tol-contact-formwrap button[type=submit]:hover,
body.tol-site.page-id-19 .tol-contact-formwrap .elementor-button:hover{ background:var(--fuchsia) !important; }

/* Map — framed, rounded to match the card, lightly toned, matched width */
.page-id-19 .tol-contact-map-band{ background:transparent !important; border:0 !important;
  max-width:1280px; margin:0 auto;
  padding:0 clamp(20px,4vw,48px) clamp(64px,8vw,104px) !important; }
.page-id-19 .tol-contact-map-band iframe{
  width:100% !important; height:440px !important; display:block; border:1px solid rgba(43,37,32,.14) !important;
  border-radius:var(--radius-soft); filter:saturate(.9) contrast(1.03); }

/* Responsive: single column under 860, plum panel on top, fields full width */
@media (max-width:860px){
  .page-id-19 .tol-contact-split,
  .page-id-19 .tol-contact-split > .e-con-inner{ flex-direction:column !important; }
  .page-id-19 .tol-contact-panel,
  .page-id-19 .tol-contact-formwrap{ flex-basis:100%; max-width:100%; }
  .page-id-19 .tol-contact-panel .tol-soon{ margin-top:30px; }
  .page-id-19 .tol-contact-formwrap .elementor-field-group{ width:100% !important; flex-basis:100% !important; max-width:100% !important; }
  .page-id-19 .tol-contact-map-band iframe{ height:340px !important; }
}
/* >>> TOL CONTACT V3 END <<< */

/* >>> TOL CARE ROWS V2 START <<< */
/* Orchid Care (page 17), Phase 12. The three Light/Water/Patience rows become a
   deliberate staggered editorial set: tall full-bleed image alternating side,
   text block LEFT-aligned in every row (number, eyebrow, native rule, heading,
   body), with a big ghosted index number. "More to read" becomes a centered
   band. Uses the site's native .tol-editorial-row + .tol-eyebrow patterns —
   no custom eyebrow divider is added (the native ::after is reused). */

/* GOAL 1 (Phase 12.2) — CONTAIN the whole 7-row set to the SAME content box as the
   intro (#care-start = viewport minus the section's 10px pad and the clamp(20,4vw,64)
   inner gutter), so numbers/text align to the intro's left edge and nothing bleeds off
   the viewport. Uniform page background (no full-bleed colored bands). */
.page-id-17 .tol-editorial-row{
  max-width:1440px; margin-inline:auto;
  padding-inline:calc(10px + clamp(20px,4vw,64px));   /* == intro content gutter */
  padding-block:clamp(48px,6vw,88px);
  min-height:0; align-items:center; column-gap:clamp(28px,4vw,72px);
  background:transparent !important;
}
/* hairline rhythm between consecutive rows */
.page-id-17 .tol-editorial-row + .tol-editorial-row{ border-top:1px solid rgba(43,37,32,.10); }

/* GOAL 1 — SMALLER, contained image: one consistent height/aspect across all rows,
   rounded, cropped to fill its column (image no longer full-bleed to the viewport). */
.page-id-17 .tol-editorial-row.tol-img-right{ grid-template-columns:minmax(0,1fr) minmax(0,44%); }
.page-id-17 .tol-editorial-row.tol-img-left { grid-template-columns:minmax(0,44%) minmax(0,1fr); }
.page-id-17 .tol-editorial-row .tol-editorial-media{
  min-height:0; height:clamp(300px,30vw,440px); border-radius:8px; overflow:hidden; }
.page-id-17 .tol-editorial-row .tol-editorial-copy{ padding:clamp(20px,2.5vw,40px) 0; }

/* body ALWAYS left-aligned in every row, regardless of image side */
.page-id-17 .tol-editorial-row .tol-editorial-copy,
.page-id-17 .tol-editorial-row .tol-editorial-copy .elementor-heading-title,
.page-id-17 .tol-editorial-row .tol-editorial-copy p{ text-align:left !important; }
.page-id-17 .tol-editorial-row .tol-eyebrow,
.page-id-17 .tol-editorial-row .tol-eyebrow::after{ margin-left:0 !important; margin-right:auto !important; }
.page-id-17 .tol-editorial-row .tol-editorial-copy p{ max-width:46ch; }

/* big ghosted index number above each eyebrow (native flex first child) — all 7 rows */
.page-id-17 .tol-editorial-row .tol-editorial-copy{ position:relative; }
.page-id-17 .elementor-element-oclightcopy::before,
.page-id-17 .elementor-element-ocwatercopy::before,
.page-id-17 .elementor-element-ocaircopy::before,
.page-id-17 .elementor-element-ochumcopy::before,
.page-id-17 .elementor-element-octempcopy::before,
.page-id-17 .elementor-element-ocfertcopy::before,
.page-id-17 .elementor-element-ocpatcopy::before{
  /* IN FLOW, not Elementor's absolute .e-con::before overlay — so the number is a
     real flex item that reserves its own line directly above the eyebrow (no overlap). */
  position:static !important; inset:auto !important; width:auto !important; height:auto !important;
  display:block; order:-1; font-family:"freight-big-pro",Georgia,serif; font-weight:300;
  font-size:clamp(3.2rem,5.4vw,5.6rem); line-height:1; color:var(--petal,#F2ADC2); opacity:.5;
  margin:0 0 .1em; text-align:left; letter-spacing:-.02em; }
.page-id-17 .elementor-element-oclightcopy::before{ content:"01"; }
.page-id-17 .elementor-element-ocwatercopy::before{ content:"02"; }
.page-id-17 .elementor-element-ocaircopy::before{ content:"03"; }
.page-id-17 .elementor-element-ochumcopy::before{ content:"04"; }
.page-id-17 .elementor-element-octempcopy::before{ content:"05"; }
.page-id-17 .elementor-element-ocfertcopy::before{ content:"06"; }
.page-id-17 .elementor-element-ocpatcopy::before{ content:"07"; }

/* FIX (Phase 12.1, GENERALIZED 12.2) — EVERY flipped (.tol-img-left) row (Water,
   Humidity, Fertilizer) reassigns copy→col2 / media→col1 while DOM order stays
   copy-first; grid-auto-flow:row then bumps the media (wanting the earlier col1) onto
   a NEW row (image drops below the text, number/eyebrow crowd). Pin both children to
   grid-row 1 so they share the one row like the img-right rows. Desktop grid only —
   at <=900px the row is a single column that stacks image-over-text by `order`. */
@media (min-width:901px){
  .page-id-17 .tol-editorial-row.tol-img-left > .tol-editorial-media,
  .page-id-17 .tol-editorial-row.tol-img-left > .tol-editorial-copy{ grid-row:1; }
}

/* More to read — centered band, paper tone, hairline top/bottom */
.page-id-17 .tol-care-more{ background:#FBF8F3 !important; color:var(--ink,#2B2520);
  border-top:1px solid rgba(43,37,32,.14); border-bottom:1px solid rgba(43,37,32,.14);
  padding-block:clamp(64px,8vw,104px) !important; }
.page-id-17 .tol-care-more .tol-co-inner{ max-width:640px; margin-inline:auto !important; text-align:center; }
.page-id-17 .tol-care-more .elementor-widget-heading{ width:100% !important; text-align:center !important; }
.page-id-17 .tol-care-more .elementor-widget-heading .elementor-heading-title{ text-align:center !important; }
.page-id-17 .tol-care-more .tol-eyebrow{ margin-left:auto !important; margin-right:auto !important; }
.page-id-17 .tol-care-more .tol-eyebrow::after{ margin-left:auto !important; margin-right:auto !important; }
.page-id-17 .tol-care-more .elementor-widget-text-editor,
.page-id-17 .tol-care-more p{ text-align:center !important; max-width:56ch; margin-inline:auto; color:var(--ink,#2B2520); font-size:1.08rem; }
.page-id-17 .tol-care-more p a{ color:var(--blush,#C2477E); border-bottom:1px solid rgba(194,71,126,.4); text-decoration:none; }

/* mobile: single column, image over text (base rules set media order:0). Reset the
   2-col grid the desktop rules add; shorter media; numbers scale down. All 7 rows. */
@media (max-width:900px){
  .page-id-17 .tol-editorial-row.tol-img-right,
  .page-id-17 .tol-editorial-row.tol-img-left{ grid-template-columns:1fr; }
  .page-id-17 .tol-editorial-row .tol-editorial-media{ height:clamp(240px,52vw,360px); }
  .page-id-17 .tol-editorial-row .tol-editorial-copy{ padding:clamp(20px,5vw,30px) 0; }
  .page-id-17 .elementor-element-oclightcopy::before,
  .page-id-17 .elementor-element-ocwatercopy::before,
  .page-id-17 .elementor-element-ocaircopy::before,
  .page-id-17 .elementor-element-ochumcopy::before,
  .page-id-17 .elementor-element-octempcopy::before,
  .page-id-17 .elementor-element-ocfertcopy::before,
  .page-id-17 .elementor-element-ocpatcopy::before{ font-size:clamp(3.2rem,14vw,5rem); }
}
/* >>> TOL CARE ROWS V2 END <<< */

/* >>> TOL HOVER + POLISH V13 START <<< */
/* FIX 1 — kit-5 / Elementor strips the button HOVER background to transparent,
   leaving white text on the cream page = invisible. Re-assert every button state
   kit-proof so the text always reads in hover / focus / active. */
body.tol-site a.tol-btn-primary:hover, body.tol-site a.tol-btn-primary:focus, body.tol-site a.tol-btn-primary:active,
body.tol-site .elementor-button.tol-btn-primary:hover, body.tol-site .elementor-button.tol-btn-primary:focus, body.tol-site .elementor-button.tol-btn-primary:active{
  background:var(--fuchsia) !important; background-color:var(--fuchsia) !important; color:#fff !important; border-color:var(--fuchsia) !important; }
/* ghost buttons (non-hero): dark fill + white text */
body.tol-site a.tol-btn-ghost:hover, body.tol-site a.tol-btn-ghost:focus, body.tol-site a.tol-btn-ghost:active,
body.tol-site .elementor-button.tol-btn-ghost:hover, body.tol-site .elementor-button.tol-btn-ghost:focus{
  background:var(--fuchsia) !important; background-color:var(--fuchsia) !important; color:#fff !important; border-color:var(--fuchsia) !important; }
/* hero ghost keeps a LIGHT fill + dark text (over the dark hero) */
body.tol-site .tol-hero a.tol-btn-ghost:hover, body.tol-site .tol-hero a.tol-btn-ghost:focus{
  background:var(--porcelain) !important; background-color:var(--porcelain) !important; color:var(--fuchsia) !important; border-color:var(--porcelain) !important; }
/* plum-band ghost keeps petal fill + dark text */
body.tol-site .bg-plum a.tol-btn-ghost:hover, body.tol-site .bg-plum a.tol-btn-ghost:focus{
  background:var(--petal) !important; background-color:var(--petal) !important; color:var(--fuchsia) !important; border-color:var(--petal) !important; }
/* share + tag pills: keep white text on the plum hover fill (kit-proof) */
body.tol-site .tol-share-btn:hover, body.tol-site .tol-share-btn:focus,
body.tol-site .tol-tag-pill:hover, body.tol-site .tol-tag-pill:focus{
  background:var(--fuchsia) !important; color:#fff !important; border-color:var(--fuchsia) !important; }
body.tol-site .tol-share-btn:hover .tol-share-copytext{ color:#fff !important; }

/* FIX 3 — single-post pre-footer "Come see us" is a CENTERED block, so center its
   native eyebrow + its native rule on the same axis (no custom duplicate rule). */
.tol-site .tol-single-cta .tol-eyebrow{ margin-left:auto !important; margin-right:auto !important; }
.tol-site .tol-single-cta .tol-eyebrow::after{ margin-left:auto !important; margin-right:auto !important; }
/* >>> TOL HOVER + POLISH V13 END <<< */

/* >>> TOL MOBILE MENU FULLHEIGHT START <<< */
/* The off-canvas panel was NOT clipped by header height (it is already position:fixed,
   top:0, portalled to <body>, z-index 99999). The real bug: content is ~701px tall and the
   panel is `display:flex; flex-direction:column; justify-content:center` with NO overflow-y.
   When the viewport is shorter than the content (any phone with the URL bar showing:
   375x667, 390x664, 320x568) the centred column overflows BOTH ends — "About" sat at -36px
   and the last social link fell below the fold, with no way to scroll to either. Scrolling
   the page hides the mobile URL bar, the viewport grows past ~741px, and the clip vanishes —
   which is why it looked like a header-state bug.

   Fix: header-independent full-viewport height (dvh handles the iOS URL bar), internal
   scrolling, and auto-margins that centre the column only when it actually fits. */
#tol-mobile-nav{
  top:0 !important; bottom:auto !important;
  height:100vh !important;              /* fallback */
  height:100dvh !important;             /* iOS/Android URL-bar safe */
  max-height:100dvh !important;
  overflow-y:auto !important;
  -webkit-overflow-scrolling:touch;
  overscroll-behavior:contain;
  justify-content:flex-start !important;
  padding-block:84px 40px !important;   /* 84px clears the close X */
}
/* Centre when there is spare room; auto margins collapse to 0 when the content overflows,
   so the first item is never pushed above the top edge. */
#tol-mobile-nav > .tol-mobile-nav-list{ margin-top:auto !important; }
#tol-mobile-nav > .tol-mobile-social{ margin-bottom:auto !important; }
/* Keep the close X reachable while the panel scrolls (it is flush right, so viewport-fixed
   coordinates land inside the drawer). */
body.tol-nav-open #tol-mobile-nav button.tol-nav-close{
  position:fixed !important; top:22px !important; right:22px !important; z-index:100000 !important; }
/* Lock the page behind the panel; restore on close (class is removed by orchid.js). */
body.tol-nav-open{ overflow:hidden !important; overscroll-behavior:none; }
/* >>> TOL MOBILE MENU FULLHEIGHT END <<< */

/* >>> TOL CONTACT EMAIL WRAP START <<< */
/* `contact@theorchidladysrq.com` is a single unbreakable ~196px token sitting in the
   plum panel's `96px 1fr` detail row. MEASURED (2026-07-10, live staging):
   - Desktop (>=1080, value cell >=196px): one line. Fine.
   - MID / TABLET 861-1079 (row layout, the 41% panel is narrow, value cell 155-190px):
     the token wrapped mid-word, orphaning "m"/"om"/"com" (880/900/980/1024). THE BUG.
   - Small phones 375 & 390 (panel stacked, 78px label + narrow value): also orphaned
     "com"/"m". 320/360 wrapped cleanly; 414-860 already one line.
   FIX (preferred lever, "give the value room"): below 1080 STACK the label ABOVE the
   value so the mailto spans the FULL panel-content width (~180-450px) and reads on ONE
   line - no mid-word orphan at any width. min-width:0 + overflow-wrap:anywhere kept ONLY
   as last-resort safety. At <=400 the mailto steps to .84rem so the token still fits one
   line at 320. mailto colour/underline/sticky behaviour untouched. */
.page-id-19 .tol-contact-panel .tol-vv{ min-width:0; overflow-wrap:anywhere; }
.page-id-19 .tol-contact-panel .tol-vv a{ overflow-wrap:anywhere; }
@media (max-width:1079px){
  .page-id-19 .tol-contact-panel .tol-vrow{ grid-template-columns:1fr !important; gap:4px 0 !important; }
  .page-id-19 .tol-contact-panel .tol-vk{ padding-top:0 !important; }
}
@media (max-width:400px){
  .page-id-19 .tol-contact-panel .tol-vrow:has(a[href^="mailto:"]) .tol-vv,
  .page-id-19 .tol-contact-panel .tol-vv a[href^="mailto:"]{
    font-size:.84rem !important; letter-spacing:0 !important; line-height:1.45 !important; }
}
/* >>> TOL CONTACT EMAIL WRAP END <<< */

/* >>> TOL 320 OVERFLOW FIX START <<< */
/* MEASURED at 320px (live DOM, isolation test): the ~12px horizontal document overflow is NOT
   the sticky bar — hiding the sticky bar left scrollWidth at 332; hiding the FOOTER QUICKFORM
   dropped it to 320. Root cause: `.tol-qf-contact a` is a `64px 1fr` grid and the phone value
   "941-278-1578 · text us" is a ~214px token the 1fr cell (min-width:auto) refused to shrink,
   so it pushed the footer to 332. Same class as the contact-panel email fix. */
.tol-site .tol-qf-contact a{ min-width:0; }
.tol-site .tol-qf-contact a .val{ min-width:0; overflow-wrap:anywhere; }

/* Separate issue at 320: the sticky bar is position:fixed so its content overflow does NOT add
   document scroll, but "Start an Order" (193px) + hamburger pushed the hamburger to right:342 —
   ~22px off the 320 viewport, so it was clipped/half-tappable. Compact the CTA at <=380 (spacing
   before size) so logo + CTA + hamburger fit and the hamburger sits fully on-screen. Reverts to
   the normal CTA at >=381. */
@media (max-width:380px){
  #tol-sticky-bar .tol-sticky-inner{ gap:8px; padding-inline:12px; }
  #tol-sticky-bar .tol-sticky-actions{ gap:8px; min-width:0; }
  #tol-sticky-bar .tol-sticky-cta{ padding:8px 12px !important; font-size:.55rem !important; letter-spacing:.06em !important; }
}
/* >>> TOL 320 OVERFLOW FIX END <<< */

/* >>> TOL CARE REVEAL START <<< */
/* Refined, high-end reveals on Orchid Care (page 17). Instead of the blunt whole-row fade,
   the row's `.revealed` class (added by the site-wide reveal observer in orchid.js — no new
   JS/observer) orchestrates a subtle, staggered settle: the image fades + gently un-zooms while
   the number → eyebrow → heading → body cascade in. Guarded by html.tol-js (no-JS = all visible);
   reduced-motion neutralised at the end. */

/* soft placeholder tint so the container never flashes blank before its bg-image lazy-loads */
.page-id-17 .tol-editorial-row .tol-editorial-media{ background-color:#E9E2DA; }

/* the row itself is only the observer target now — keep it stable, animate its pieces */
.tol-js .page-id-17 .tol-editorial-row.tol-reveal{ opacity:1 !important; transform:none !important; }

/* initial hidden state of the animated pieces */
.tol-js .page-id-17 .tol-editorial-row .tol-editorial-media{
  opacity:0; transform:scale(1.045); transform-origin:center;
  transition:opacity 1.1s var(--ease), transform 1.4s var(--ease); will-change:opacity,transform; }
.tol-js .page-id-17 .tol-editorial-row .tol-editorial-copy::before,
.tol-js .page-id-17 .tol-editorial-row .tol-editorial-copy > .elementor-widget{
  opacity:0; transform:translateY(16px);
  transition:opacity .85s var(--ease), transform .85s var(--ease); will-change:opacity,transform; }

/* revealed: settle in, gently staggered (image with the number, then the copy cascades) */
.page-id-17 .tol-editorial-row.revealed .tol-editorial-media{ opacity:1; transform:none; }
.page-id-17 .tol-editorial-row.revealed .tol-editorial-copy::before{ opacity:.5; transform:none; transition-delay:.10s; }
.page-id-17 .tol-editorial-row.revealed .tol-editorial-copy > .elementor-widget:nth-of-type(1){ opacity:1; transform:none; transition-delay:.20s; }
.page-id-17 .tol-editorial-row.revealed .tol-editorial-copy > .elementor-widget:nth-of-type(2){ opacity:1; transform:none; transition-delay:.30s; }
.page-id-17 .tol-editorial-row.revealed .tol-editorial-copy > .elementor-widget:nth-of-type(3){ opacity:1; transform:none; transition-delay:.40s; }

/* reduced motion: nothing hidden, no movement (number keeps its .5 ghost opacity) */
@media (prefers-reduced-motion:reduce){
  .tol-js .page-id-17 .tol-editorial-row .tol-editorial-media,
  .tol-js .page-id-17 .tol-editorial-row .tol-editorial-copy > .elementor-widget{
    opacity:1 !important; transform:none !important; transition:none !important; }
  .tol-js .page-id-17 .tol-editorial-row .tol-editorial-copy::before{ opacity:.5 !important; transform:none !important; transition:none !important; }
}
/* >>> TOL CARE REVEAL END <<< */

/* >>> TOL SERVICES POPUP START <<< */
/* Home services bento (page 14): each tile opens a native Elementor popup (617-620) via
   data-popup + TOL SERVICES POPUP JS. This block = the clickable affordance on the tiles
   + brand chrome for the popup modal (.tol-svc-popup content + the Elementor dialog shell),
   responsive sizing, internal scroll, always-reachable close, and reduced-motion. */

/* tile affordance — whole tile is the trigger (hover-zoom already handled by .tol-card) */
.tol-site .tol-bento .tol-card[data-popup]{ cursor:pointer; }
.tol-site .tol-bento .tol-card[data-popup]:focus-visible{ outline:3px solid #9E2D63; outline-offset:3px; }

/* popup shell — scope overrides to modals that hold OUR content only */
.elementor-popup-modal:has(.tol-svc-popup) .dialog-widget-content{
  max-width:min(600px,92vw) !important; width:min(600px,92vw) !important;
  max-height:90vh; overflow:hidden; border-radius:8px;
  box-shadow:0 40px 90px -40px rgba(43,20,35,.55); }
.elementor-popup-modal:has(.tol-svc-popup) .dialog-message{
  max-height:90vh; overflow-y:auto; -webkit-overflow-scrolling:touch; }

/* content */
.tol-svc-popup{ background:var(--porcelain,#F6F2EC); padding:clamp(22px,3.5vw,40px); }
.tol-svc-popup .tol-svc-popup-img img{ width:100%; height:auto; max-height:300px; object-fit:cover;
  border-radius:6px; display:block; margin:0 0 22px; }
.tol-svc-popup .tol-svc-eyebrow, .tol-svc-popup .tol-svc-eyebrow .elementor-heading-title{
  color:#9E2D63; font-family:var(--font-body,"freight-sans-pro",system-ui,sans-serif);
  font-size:.72rem; letter-spacing:.24em; text-transform:uppercase; font-weight:600; margin:0 0 10px; }
.tol-svc-popup .tol-svc-title, .tol-svc-popup .tol-svc-title .elementor-heading-title{
  color:#6E1248; font-family:"freight-big-pro", Georgia, serif;
  font-weight:400; font-size:clamp(1.6rem,3.4vw,2.1rem); line-height:1.12; margin:0 0 14px; }
.tol-svc-popup .tol-svc-body, .tol-svc-popup .tol-svc-body p{ color:var(--ink,#2B2520);
  font-family:var(--font-body,"freight-sans-pro",system-ui,sans-serif); font-size:1rem; line-height:1.62; margin:0; }

/* close button — always reachable, branded */
.elementor-popup-modal:has(.tol-svc-popup) .dialog-close-button{
  color:var(--fuchsia,#6E1248); opacity:.9; font-size:22px; top:10px; right:12px; z-index:5; }
.elementor-popup-modal:has(.tol-svc-popup) .dialog-close-button:hover{ opacity:1; }

/* reduced motion — neutralize entrance/exit + hover on the tiles */
@media (prefers-reduced-motion: reduce){
  .elementor-popup-modal:has(.tol-svc-popup) .animated,
  .elementor-popup-modal:has(.tol-svc-popup) .dialog-widget-content{ animation:none !important; transition:none !important; }
}
/* small phones — tighter box + image */
@media (max-width:480px){
  .elementor-popup-modal:has(.tol-svc-popup) .dialog-widget-content{ max-width:94vw !important; width:94vw !important; }
  .tol-svc-popup .tol-svc-popup-img img{ max-height:210px; margin-bottom:16px; }
}
/* >>> TOL SERVICES POPUP END <<< */

/* >>> TOL FOOTER FORM REQ START <<< */
/* Footer contact form (template 63, band `.tol-footer-contact-band`): mark the 3 required
   fields (Name, Email, Message) with a clear petal asterisk + a legend line. Scoped to the
   footer band so the Home quick-contact form (`.tol-quickform`, not this band) is untouched.
   Style only - no field/required/label/order change. The band is the light bg-veil, so light
   and dark render identically (no dark-mode restyle on this band). */
.tol-site .tol-footer-contact-band .elementor-field-group.elementor-field-required > .elementor-field-label{ white-space:normal; }
.tol-site .tol-footer-contact-band .elementor-field-group.elementor-field-required > .elementor-field-label::after{
  content:"\00a0*"; color:#9E2D63; font-weight:700; }
/* legend at the top of the form (first flex item in the fields wrapper) */
.tol-site .tol-footer-contact-band .elementor-form .elementor-form-fields-wrapper::before{
  content:"Fields marked with * are required.";
  order:-1; flex-basis:100%; width:100%;
  font-family:var(--font-body,"freight-sans-pro",system-ui,sans-serif);
  font-size:.72rem; letter-spacing:.02em; line-height:1.4; color:var(--ash,#6E665E);
  margin:0 0 14px; }
/* >>> TOL FOOTER FORM REQ END <<< */

/* >>> TOL MENU COVER START <<< */
/* Mobile off-canvas menu: (1) a dim scrim behind the 86vw panel so the see-through tap-strip
   reads as "tap to close", not the live header/hero; (2) iOS safe-area (notch / Dynamic Island)
   inset so the close X + first item clear the status bar and are never top-clipped. The panel
   keeps its deliberate 86vw (Defect 4b tap-strip) + z-index 99999. Scrim = 99998 (above header
   1000, sticky 1200, Iris launcher 950 / Iris panel 99900, scroll-top 900). */
#tol-nav-scrim{
  position:fixed; inset:0; z-index:99998;
  background:rgba(15,7,12,.92);          /* near-opaque so the plum header/hero reads as fully behind, not a live half-view */
  opacity:0; visibility:hidden; pointer-events:none;
  transition:opacity var(--t-base,.4s) var(--ease,ease); }
body.tol-nav-open #tol-nav-scrim{ opacity:1; visibility:visible; pointer-events:auto; }
@media (prefers-reduced-motion: reduce){ #tol-nav-scrim{ transition:none; } }

/* iOS safe-area: push the panel content + close X below the notch so nothing is top-clipped.
   No-notch browsers have env()=0, so these fall back to the existing 84px / 40px / 22px. */
body.tol-nav-open #tol-mobile-nav{
  padding-top:calc(84px + env(safe-area-inset-top, 0px)) !important;
  padding-bottom:calc(40px + env(safe-area-inset-bottom, 0px)) !important; }
body.tol-nav-open #tol-mobile-nav button.tol-nav-close{
  top:calc(22px + env(safe-area-inset-top, 0px)) !important; }
/* >>> TOL MENU COVER END <<< */

/* >>> TOL 404 START <<< */
/* Branded Error-404 (Elementor Theme Builder id 68, type error-404). The GLOBAL header +
   footer render via the location system; this styles the body. Restrained type-on-porcelain,
   centered, brand palette. HTTP 404 is unaffected (WP sets the status; only layout changed). */
.tol-site .tol-404{ background:var(--porcelain,#F6F2EC); text-align:center; }
/* Neutralise Elementor's boxed container so the content column can truly centre. */
.tol-site .tol-404 > .elementor-container{ max-width:100% !important; }
.tol-site .tol-404 .elementor-column,
.tol-site .tol-404 .elementor-column > .elementor-column-wrap{ width:100% !important; }
/* the content lives in the column's .elementor-widget-wrap: a 620px centred column,
   flex-stacked + text-centred so eyebrow, headline, line, button, and links share one axis. */
.tol-site .tol-404 .elementor-widget-wrap{
  max-width:620px; margin-inline:auto; text-align:center;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  min-height:clamp(360px,50vh,600px);
  padding-block:clamp(72px,11vw,150px); padding-inline:clamp(20px,5vw,40px); }
.tol-site .tol-404 .elementor-widget-wrap > .elementor-element{ width:auto !important; max-width:100%; }
/* eyebrow "404" (reuses the site .tol-eyebrow; centred divider) */
.tol-site .tol-404 .tol-404-eyebrow{ margin-inline:auto; }
.tol-site .tol-404 .tol-404-eyebrow .elementor-heading-title{ color:#9E2D63; }
.tol-site .tol-404 .tol-404-eyebrow::after{ margin-left:auto; margin-right:auto; }
/* headline */
.tol-site .tol-404 .tol-404-title .elementor-heading-title,
.tol-site .tol-404 .tol-404-title{ color:var(--fuchsia,#6E1248); font-family:"freight-big-pro",Georgia,serif;
  font-weight:400; font-size:clamp(2.4rem,6.5vw,4rem); line-height:1.04; margin:14px 0 16px; }
/* line */
.tol-site .tol-404 .tol-404-text, .tol-site .tol-404 .tol-404-text p{ color:var(--ash,#6E665E);
  font-family:"freight-sans-pro",system-ui,-apple-system,sans-serif; font-size:1.1rem; line-height:1.6; margin:0 auto 32px; max-width:32ch; }
/* primary button = the site .tol-btn-primary (blush -> fuchsia on hover) */
.tol-site .tol-404 .tol-404-btn .elementor-button{ background:var(--blush,#C2477E) !important; color:#fff !important;
  border:0 !important; border-radius:0 !important; padding:16px 36px !important; box-shadow:none !important;
  font-family:"freight-sans-pro",system-ui,sans-serif; font-size:.82rem; font-weight:600; letter-spacing:.18em; text-transform:uppercase; transition:background .25s; }
.tol-site .tol-404 .tol-404-btn .elementor-button:hover{ background:var(--fuchsia,#6E1248) !important; }
/* helper links row */
.tol-site .tol-404 .tol-404-links{ margin-top:28px; }
.tol-site .tol-404 .tol-404-links p{ margin:0; font-family:"freight-sans-pro",system-ui,sans-serif;
  font-size:.88rem; letter-spacing:.01em; color:var(--ash,#6E665E); line-height:1.9; }
.tol-site .tol-404 .tol-404-links a{ color:var(--fuchsia,#6E1248); text-decoration:none; border-bottom:1px solid rgba(110,18,72,.3); padding-bottom:1px; white-space:nowrap; }
.tol-site .tol-404 .tol-404-links a:hover{ color:var(--blush,#C2477E); border-color:var(--blush,#C2477E); }
@media (max-width:400px){ .tol-site .tol-404 .tol-404-links p{ font-size:.82rem; } }
/* >>> TOL 404 END <<< */

/* >>> TOL FOOTER FORM CONSENT + RECAPTCHA START <<< */
/* Footer band form (template 63, fcform) brought to parity with the contact form
   (ctformw): a REQUIRED consent/acceptance row + reCAPTCHA v3. Same acceptance treatment
   as the contact form (checkbox left, sentence right, the redundant "Consent" field label
   hidden) plus a petal asterisk so consent joins the Name/Email/Message required pattern
   under the band's legend. The reCAPTCHA v3 field group is hidden so its empty injected
   container never adds a gap/column to the band (display:none keeps the token input in the
   DOM, so v3 still validates); the floating badge is already hidden site-wide
   (.grecaptcha-badge), and the Google disclosure <p.tol-recaptcha-note> inherits the global
   note style. Band is the light bg-veil, so light + dark render identically. */
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance{
  margin-top:22px; padding-top:20px; border-top:1px solid rgba(43,37,32,.12); }
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance > .elementor-field-label{ display:none !important; }
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance .elementor-field-subgroup{ display:block; }
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance .elementor-field-option{
  display:flex; align-items:flex-start; gap:12px; }
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance input[type=checkbox]{
  width:17px; height:17px; margin:3px 0 0; flex:0 0 auto; accent-color:#9E2D63; }
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance label{
  display:inline; margin:0; text-transform:none; letter-spacing:0; font-weight:400;
  font-size:.78rem; line-height:1.55; color:var(--ash,#6E665E); }
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance .elementor-field-option label::after{
  content:"\00a0*"; color:#9E2D63; font-weight:700; }
.tol-site .tol-footer-contact-band .elementor-field-type-acceptance a{ color:#9E2D63; text-decoration:underline; }
/* reCAPTCHA v3: hide the empty injected field group (token input stays in the DOM) */
.tol-site .tol-footer-contact-band .elementor-field-type-recaptcha_v3,
.tol-site .tol-footer-contact-band .elementor-field-group-recaptcha_v3{ display:none !important; }
/* keep the html-field disclosure flush; note text uses the global .tol-recaptcha-note style */
.tol-site .tol-footer-contact-band .elementor-field-type-html{ padding:0; margin-top:2px; }
.tol-site .tol-footer-contact-band .tol-recaptcha-note{ margin:14px auto 0; }
/* >>> TOL FOOTER FORM CONSENT + RECAPTCHA END <<< */

/* >>> TOL SEARCH START <<< */
/* Search results page (Elementor Theme Builder search template 67). Brings the Classic
   archive-posts skin on-brand: centered plum serif header, a reachable search form, on-brand
   result cards, and a brand-voice no-results state. Scoped to body.search so nothing else is
   touched; the band is the site porcelain bg (light + dark render identically). */
body.search .tol-ar-head{ text-align:center; padding-top:clamp(40px,6vw,84px); }
body.search .tol-ar-head .elementor-heading-title,
body.search .tol-ar-head h1,body.search .tol-ar-head h2{ text-align:center;
  font-family:var(--tol-display,"freight-big-pro",Georgia,serif); color:var(--fuchsia,#6E1248); font-weight:300; }
/* reachable search form */
.tol-search-form{ max-width:560px; margin:22px auto 4px; }
.tol-search-form .tol-search-form-inner{ display:flex; align-items:stretch; background:#fff;
  border:1px solid rgba(43,37,32,.16); border-radius:999px; overflow:hidden; }
.tol-search-form input[type=search]{ flex:1 1 auto; min-width:0; border:0; background:transparent;
  padding:14px 22px; font-family:var(--body); font-size:1rem; color:var(--ink,#2B2520); outline:none; }
.tol-search-form input[type=search]::placeholder{ color:color-mix(in srgb, var(--ash,#6E665E) 70%, #fff); }
.tol-site .tol-search-form button{ background:var(--blush,#C2477E) !important; color:#fff !important;
  border:0 !important; border-radius:0 !important; padding:0 26px !important; cursor:pointer;
  font-family:var(--body); font-weight:600; letter-spacing:.16em; text-transform:uppercase; font-size:.72rem;
  transition:background .25s; }
.tol-site .tol-search-form button:hover{ background:var(--fuchsia,#6E1248) !important; }
/* result grid + cards */
body.search .elementor-posts.elementor-grid{ display:grid !important; grid-template-columns:repeat(3,1fr);
  gap:clamp(18px,2.4vw,30px); }
body.search .elementor-posts .elementor-post{ background:#fff; border:1px solid rgba(43,37,32,.10);
  border-radius:var(--radius-soft,4px); overflow:hidden; box-shadow:0 1px 2px rgba(43,37,32,.04);
  transition:transform .25s, box-shadow .25s; display:flex; flex-direction:column; margin:0; }
body.search .elementor-posts .elementor-post:hover{ transform:translateY(-3px); box-shadow:0 14px 30px rgba(43,37,32,.10); }
body.search .elementor-post__thumbnail{ aspect-ratio:3/2; overflow:hidden; margin:0; }
body.search .elementor-post__thumbnail img{ width:100%; height:100%; object-fit:cover; }
body.search .elementor-post__text{ padding:20px 22px 24px; flex:1 1 auto; display:flex; flex-direction:column; }
body.search .elementor-post__title{ margin:0 0 8px; }
body.search .elementor-post__title a{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif);
  font-size:1.3rem; line-height:1.25; color:var(--ink,#2B2520); font-weight:400; text-decoration:none; }
body.search .elementor-post__title a:hover{ color:var(--fuchsia,#6E1248); }
body.search .elementor-post__meta-data{ font-family:var(--body); font-size:.72rem; letter-spacing:.06em;
  text-transform:uppercase; color:var(--ash,#6E665E); margin:0 0 8px; }
body.search .elementor-post__excerpt p{ font-family:var(--body); font-size:.92rem; line-height:1.6;
  color:var(--ash,#6E665E); margin:0; }
body.search .elementor-post__read-more{ font-family:var(--body); font-size:.72rem; letter-spacing:.16em;
  text-transform:uppercase; color:var(--fuchsia,#6E1248); font-weight:600; text-decoration:none;
  margin-top:14px; align-self:flex-start; }
body.search .elementor-post__read-more:hover{ color:var(--blush,#C2477E); }
/* pagination */
body.search .elementor-pagination{ text-align:center; margin-top:38px; }
body.search .elementor-pagination .page-numbers{ color:var(--ink,#2B2520); padding:6px 12px; text-decoration:none; }
body.search .elementor-pagination .current{ color:var(--fuchsia,#6E1248); font-weight:700; }
/* no-results: hide Elementor default, show the branded block only on body.search-no-results */
body.search .elementor-widget-archive-posts .elementor-posts-nothing-found, body.search-no-results .elementor-posts-container .elementor-posts-nothing-found{ display:none !important; }
.tol-search-noresults{ display:none; }
body.search-no-results .tol-search-noresults{ display:block; }
.tol-search-noresults-inner{ text-align:center; max-width:600px; margin:10px auto 0; padding:8px 20px; }
.tol-search-noresults-inner h2{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif);
  color:var(--fuchsia,#6E1248); font-weight:300; font-size:clamp(1.5rem,3.2vw,2.1rem); margin:0 0 12px; }
.tol-search-noresults-inner p{ font-family:var(--body); color:var(--ash,#6E665E); font-size:1rem;
  line-height:1.65; margin:0 0 22px; }
/* responsive */
@media (max-width:1024px){ body.search .elementor-posts.elementor-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ body.search .elementor-posts.elementor-grid{ grid-template-columns:1fr; } }
.tol-search-title{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif); color:var(--fuchsia,#6E1248); font-weight:300; text-align:center; font-size:clamp(1.7rem,3.6vw,2.6rem); line-height:1.15; margin:6px auto 0; max-width:22ch; }
/* >>> TOL SEARCH END <<< */

/* >>> TOL INSTAGRAM START <<< */
/* "From our Instagram" curated grid (shortcode [tol_instagram]) on Home + Gallery, above
   the footer. On-brand: porcelain band, plum serif heading, petal eyebrow, square tiles
   with a soft plum hover overlay + IG glyph, Follow CTA. Light band = light+dark identical. */
.tol-ig{ padding-block:clamp(56px,7vw,104px); background:var(--porcelain,#F6F2EC); }
.tol-ig-inner{ max-width:1280px; margin-inline:auto; padding-inline:clamp(20px,4vw,64px); }
.tol-ig-head{ text-align:center; max-width:640px; margin:0 auto clamp(28px,3.4vw,44px); }
.tol-ig-head .tol-eyebrow{ margin-inline:auto; }
.tol-ig-title{ font-family:var(--tol-display,"freight-big-pro",Georgia,serif); color:var(--fuchsia,#6E1248);
  font-weight:300; font-size:clamp(1.9rem,4vw,2.9rem); line-height:1.12; margin:6px 0 12px; }
.tol-ig-sub{ font-family:var(--body); color:var(--ash,#6E665E); font-size:1rem; line-height:1.65; margin:0; }
.tol-ig-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:clamp(8px,1vw,16px); }
.tol-ig-tile{ position:relative; display:block; aspect-ratio:1/1; overflow:hidden; border-radius:var(--radius-soft,4px);
  background:#E9E2DA; box-shadow:0 1px 2px rgba(43,37,32,.05); }
.tol-ig-tile img{ width:100%; height:100%; object-fit:cover; display:block; transition:transform .5s cubic-bezier(.2,.7,.2,1); }
.tol-ig-tile:hover img,.tol-ig-tile:focus-visible img{ transform:scale(1.07); }
.tol-ig-ov{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(180deg, rgba(110,18,72,.0), rgba(110,18,72,.55)); opacity:0; transition:opacity .35s var(--ease,ease); }
.tol-ig-tile:hover .tol-ig-ov,.tol-ig-tile:focus-visible .tol-ig-ov{ opacity:1; }
.tol-ig-ov svg{ width:34px; height:34px; color:#fff; filter:drop-shadow(0 1px 3px rgba(0,0,0,.35)); }
.tol-ig-tile:focus-visible{ outline:2px solid var(--blush,#C2477E); outline-offset:2px; }
.tol-ig-cta-row{ text-align:center; margin-top:clamp(26px,3vw,40px); }
.tol-site .tol-ig-cta{ display:inline-flex; align-items:center; gap:10px; }
.tol-site .tol-ig-cta svg{ width:18px; height:18px; }
@media (max-width:1024px){ .tol-ig-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:480px){ .tol-ig-grid{ grid-template-columns:repeat(3,1fr); gap:6px; } }
@media (prefers-reduced-motion: reduce){ .tol-ig-tile img{ transition:none; } }
/* >>> TOL INSTAGRAM END <<< */
/* tol-ig-title kit-proof: Elementor kit h2 repaints to ink; force plum serif heading */
body.tol-site .tol-ig-title{ color:var(--fuchsia,#6E1248) !important; }

/* >>> TOL INSTAGRAM SB START <<< */
/* Style the Smash Balloon grid inside our .tol-ig section to match the curated look:
   square tiles, soft rounded corners, subtle plum hover, brand spacing. Free tier links
   tiles to Instagram (new tab); the on-site lightbox is Pro (flagged to Aaron). */
.tol-ig-sb{ margin:0 auto; }
.tol-ig-sb #sb_instagram{ padding:0 !important; margin:0 auto !important; }
.tol-ig-sb #sb_instagram .sbi_item{ padding:clamp(4px,0.7vw,9px) !important; }
.tol-ig-sb #sb_instagram .sbi_photo,
.tol-ig-sb #sb_instagram .sbi_photo_wrap{ border-radius:var(--radius-soft,4px) !important; overflow:hidden; }
.tol-ig-sb #sb_instagram .sbi_photo{ position:relative; display:block; background:#E9E2DA;
  box-shadow:0 1px 2px rgba(43,37,32,.05); transition:transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .3s; }
.tol-ig-sb #sb_instagram .sbi_photo:hover{ transform:translateY(-3px) scale(1.01); box-shadow:0 14px 30px rgba(43,37,32,.12); }
/* plum tint on hover to echo the curated tiles */
.tol-ig-sb #sb_instagram .sbi_photo::after{ content:""; position:absolute; inset:0; border-radius:inherit;
  background:linear-gradient(180deg, rgba(110,18,72,0), rgba(110,18,72,.42)); opacity:0; transition:opacity .35s ease; pointer-events:none; }
.tol-ig-sb #sb_instagram .sbi_photo:hover::after{ opacity:1; }
/* video/reel play button on brand */
.tol-ig-sb #sb_instagram .sbi_playbtn{ opacity:.92; }
/* hide Smash Balloon's own header/footer/follow if any slip through (we supply our own) */
.tol-ig-sb #sb_instagram .sbi_header, .tol-ig-sb #sb_instagram #sbi_load, .tol-ig-sb #sb_instagram .sbi_follow_btn{ display:none !important; }
@media (max-width:480px){ .tol-ig-sb #sb_instagram .sbi_item{ padding:4px !important; } }
/* >>> TOL INSTAGRAM SB END <<< */
/* safety: cap the Smash Balloon grid to 6 tiles if the feed returns more */
.tol-ig-sb #sb_instagram .sbi_item:nth-child(n+7){ display:none !important; }
