

h1:empty, h2:empty, h3:empty, h4:empty, h5:empty, h6:empty,
.lede:empty, p.lede:empty,
.eyebrow:empty, .kicker:empty, .kick:empty,
strong:empty, em:empty,
label:empty,
.trust-item:empty, .badge:empty { display: none !important; }


img[src=""], img:not([src]) { display: none !important; }

img.brand-logo { background: #fff; padding: 4px 10px; border-radius: 8px; box-sizing: content-box; }

img.brand-logo { object-fit: contain; width: auto; max-width: 200px; max-height: 44px; }

h1, h2, h3, h4, h5, h6, p, .lede, .eyebrow, .kicker, blockquote, figcaption {
  overflow-wrap: break-word; word-break: break-word;
}
html, body { overflow-x: clip; max-width: 100%; }
:root {
  --bg: #0F0F10; --fg: #F4F1EE;
  --primary: #A6655A; --secondary: #C98B7E;
  --accent: #C98B7E; --muted: #F3EDE6;
  
  --on-muted: #000000;
  --radius: 8px;
  --gap: 24px;
  
  --t-h1-size: clamp(36px, 5vw, 68px);
  --t-hero-h1-size: clamp(42px, 5.5vw, 76px); 
  --t-h2-size: clamp(28px, 4vw, 46px);
  --t-h3-size: clamp(20px, 2.5vw, 26px);
  
  --t-h4-size: clamp(17px, 1.6vw, 20px);
  --t-h5-size: clamp(15px, 1.3vw, 17px);
  --t-h6-size: clamp(13px, 1.1vw, 15px);
  --t-heading-weight: 700;
  --t-heading-leading: 1.08;
  --t-lede-size: clamp(17px, 1.5vw, 21px);
  
  --t-body-size: clamp(15px, 1.05vw, 17px);
  --t-eyebrow-size: 13px;
  --t-eyebrow-weight: 600;
  --t-eyebrow-tracking: 0.12em;
  --t-section-pad-y: 84px;
  --t-hero-pad-y: 116px;
  
  --t-space-1: 4px;
  --t-space-2: 8px;
  --t-space-3: 12px;
  --t-space-4: 16px;
  --t-space-5: 24px;
  --t-space-6: 32px;
  --t-space-7: 48px;
  --t-space-8: 80px;
  
  --t-content-narrow: 760px;
  --t-content-max: 1100px;
  --t-content-wide: 1280px;
  --t-gutter: 24px;
  
  --t-bg: #0F0F10; --t-fg: #F4F1EE;
  --t-fg-muted: #949291;
  
  --t-border: color-mix(in srgb, #F4F1EE 9%, #0F0F10);
  --t-surface: color-mix(in srgb, #F4F1EE 4%, #0F0F10);
  
  --color-surface: var(--t-surface);
  --t-primary: #A6655A;
  
  --t-accent: #C98B7E;
  --t-primary-soft: color-mix(in srgb, #A6655A 12%, #0F0F10);
  
  --t-tint: color-mix(in srgb, #A6655A 8%, #0F0F10);
  --t-tint-border: color-mix(in srgb, #A6655A 16%, #0F0F10);
  --t-primary-hover: color-mix(in srgb, #A6655A 82%, #000);
  --t-on-primary: #000000;
  --t-on-fg: #000000;            
  --t-on-accent: #000000; 
  --t-primary-ink: #b37c73;  
  --t-accent-ink: #C98B7E;  
  --t-primary-ink-on-dark: #8d564d;  
  --t-accent-ink-on-dark: #8d6158;  
  
  --t-on-img: #FFFFFF;
  
  --t-primary-on-img: #b37c73;
  --t-accent-on-img: #C98B7E;
  
  --t-dark: #d4d1cf;
  --t-on-dark: #000000;         
  
  --img-scrim: #0b0b0d;
  --img-scrim-opacity: .62;
  --theme-font-heading: 'Bricolage Grotesque', system-ui, sans-serif;
  --theme-font-body: 'Inter', system-ui, sans-serif;
  
  --t-radius: var(--radius);
  --t-radius-sm: var(--radius);
  --t-radius-lg: var(--radius);
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg); color: var(--fg); font-family: 'Inter', system-ui, sans-serif; line-height: 1.55; }
h1, h2, h3, h4 { font-family: 'Bricolage Grotesque', system-ui, sans-serif; color: var(--fg); font-weight: var(--t-heading-weight, 700); line-height: var(--t-heading-leading, 1.1); margin: 0 0 0.4em; }
h1 { font-size: var(--t-h1-size); line-height: 1.04; letter-spacing: -0.02em; }
h2 { font-size: var(--t-h2-size); letter-spacing: -0.01em; }
h3 { font-size: var(--t-h3-size); }

.site { display: flex; flex-direction: column; gap: 0; padding: 0; }
.section { padding: var(--t-section-pad-y, 84px) var(--t-gutter, 24px); max-width: var(--t-content-max, 1100px); margin: 0 auto; width: 100%; }
.site-nav { display: flex; align-items: center; gap: 32px; padding: 16px 32px; max-width: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
.site-nav .nav-brand { font-weight: 700; font-size: 18px; color: inherit; text-decoration: none; font-family: inherit; }
.site-nav .nav-brand img { height: 28px; width: auto; display: block; }
.site-nav .nav-links { display: flex; align-items: center; gap: 24px; flex: 1; flex-wrap: wrap; }
.site-nav .nav-links a { color: inherit; text-decoration: none; font-size: 15px; opacity: 0.85; }
.site-nav .nav-links a:hover { opacity: 1; }

.site-nav .nav-item { position: relative; }
.site-nav .nav-drop-trigger { display: inline-flex; align-items: center; gap: 4px; color: inherit; text-decoration: none; font-size: 15px; opacity: 0.85; background: none; border: 0; font-family: inherit; cursor: pointer; }
.site-nav .nav-drop-trigger:hover { opacity: 1; }
.site-nav .nav-drop-caret { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid currentColor; opacity: 0.6; }
.site-nav .nav-drop-panel { display: none; position: absolute; top: 100%; left: 0; margin-top: 8px; padding: 20px; gap: 24px; background: var(--t-surface, #fff); border: 1px solid var(--t-border, #e5e7eb); border-radius: var(--radius, 12px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); z-index: 40; }
.site-nav .nav-item:hover .nav-drop-panel, .site-nav .nav-item:focus-within .nav-drop-panel { display: flex; }
.site-nav .nav-drop-col { display: flex; flex-direction: column; gap: 6px; min-width: 140px; }
.site-nav .nav-drop-heading { margin: 0; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.55; }
.site-nav .nav-drop-col a { color: inherit; text-decoration: none; font-size: 14px; opacity: 0.85; }
.site-nav .nav-drop-col a:hover { opacity: 1; }
.site-nav .nav-cta { padding: 8px 16px; font-size: 14px; }

.site-nav .hdr-toggle { display: none; align-items: center; justify-content: center; width: 40px; height: 40px; border: 1px solid var(--t-border, #e5e7eb); border-radius: var(--radius, 8px); background: transparent; color: var(--fg); cursor: pointer; margin-left: auto; }
.site-nav .hdr-toggle:hover { background: var(--t-surface, #f3f4f6); }
@media (max-width: 720px) {
  .site-nav { padding: 12px 16px; gap: 12px; flex-wrap: wrap; }
  .site-nav .nav-brand { order: 1; }
  .site-nav .hdr-toggle { order: 2; display: inline-flex; }
  
  .site-nav .nav-links { order: 3; display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 4px; font-size: 14px; }
  .site-nav .nav-links.open { display: flex; }
  .site-nav .nav-cta { order: 4; display: none; }
  .site-nav .nav-links.open ~ .nav-cta { display: inline-flex; margin-top: 4px; }
  
  .site-nav .nav-item { width: 100%; }
  .site-nav .nav-drop-trigger { pointer-events: none; font-weight: 700; width: 100%; }
  .site-nav .nav-drop-caret { display: none; }
  .site-nav .nav-drop-panel { display: flex !important; position: static; flex-direction: column; box-shadow: none; border: 0; background: transparent; padding: 2px 0 6px 12px; margin: 0; min-width: 0; gap: 10px; }
}
.hero-eyebrow { text-transform: uppercase; letter-spacing: 0.15em; font-size: 13px; font-weight: 600; opacity: 0.9; margin: 0 0 12px; }
.section.hero.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: stretch; padding-top: var(--t-hero-pad-y, 116px); padding-bottom: var(--t-hero-pad-y, 116px); }

.section.hero.hero-split .hero-text { align-self: center; }
.section.hero.hero-split .hero-img { height: 100%; min-height: 340px; aspect-ratio: auto; }
@media (max-width: 720px) { .section.hero.hero-split { grid-template-columns: 1fr; align-items: center; } .section.hero.hero-split .hero-img { height: auto; min-height: 0; aspect-ratio: 4/3; } }
.section.hero.hero-centered { text-align: center; padding: var(--t-hero-pad-y, 116px) 24px var(--t-section-pad-y, 84px); max-width: 920px; }
.section.hero.hero-centered h1 { font-size: var(--t-hero-h1-size); line-height: 1.0; letter-spacing: -0.03em; }
.section.hero.hero-centered .lede { font-size: var(--t-lede-size); max-width: 640px; margin: 20px auto 32px; opacity: 0.9; }
.section.hero.hero-bg { background-color: var(--muted); background-size: cover; background-position: center; padding: 140px 32px; color: white; max-width: none; border-radius: 0; }
.section.hero.hero-bg h1 { color: white; text-shadow: 0 4px 16px rgba(0,0,0,0.7), 0 1px 2px rgba(0,0,0,0.8); }
.section.hero.hero-bg .lede { color: rgba(255,255,255,0.95); text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.section.hero.hero-bg .hero-text { max-width: 1100px; margin: 0 auto; background: rgba(0,0,0,0.35); padding: 32px 36px; border-radius: 12px; backdrop-filter: blur(6px); }
.section.hero.hero-bg .hero-eyebrow { color: rgba(255,255,255,0.9); text-shadow: 0 1px 4px rgba(0,0,0,0.6); }
.section.hero.hero-bg .btn { background: white; color: black; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.section.hero.hero-centered .hero-btns { justify-content: center; }
.hero-img { width: 100%; aspect-ratio: 4/3; border-radius: var(--radius); background: linear-gradient(135deg, var(--secondary), var(--primary), var(--accent)); display: block; object-fit: cover; }
.section-cta { margin-top: 20px; text-align: center; }
.btn { display: inline-block; padding: 14px 28px; border-radius: var(--radius); background: var(--primary); color: var(--t-on-primary, var(--bg)); text-decoration: none; font-weight: 600; font-size: 16px; line-height: 1.2; transition: transform 0.15s ease; }
.btn:hover { transform: translateY(-1px); }
.btn.primary { background: var(--accent); }
.btn.ghost, .btn.secondary { background: transparent; color: var(--fg); border: 1px solid var(--t-border, rgba(0,0,0,0.15)); }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }

@media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }
.card { background: var(--t-surface); border: 1px solid var(--t-border); padding: 28px; border-radius: var(--radius); color: var(--fg); }
.card h3 { color: var(--fg); }
.card p { color: color-mix(in srgb, var(--fg) 70%, var(--bg)); }
.card-icon { width: 44px; height: 44px; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; margin: 0 0 16px; color: var(--accent); background: color-mix(in srgb, var(--accent) 14%, var(--bg)); }
.card-icon svg { width: 22px; height: 22px; display: block; }

.grid.grid-has-photos .card { padding: 0; overflow: hidden; }
.grid.grid-has-photos .card .card-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.grid.grid-has-photos .card h3, .grid.grid-has-photos .card p { padding: 0 20px; }
.grid.grid-has-photos .card h3 { margin: 16px 0 8px; }
.grid.grid-has-photos .card p { margin: 0 0 20px; }
.icon-list-icon svg { width: 24px; height: 24px; display: block; color: var(--primary); }

.section.image figure { margin: 0; text-align: center; }
.section.image figure img { max-width: 100%; max-height: 480px; height: auto; width: auto; display: inline-block; border-radius: var(--radius); object-fit: contain; }
.section.image figure figcaption { margin-top: 12px; opacity: 0.7; font-size: 14px; }

.gallery img { max-width: 100%; height: auto; border-radius: var(--radius); }
.split-img { max-width: 100%; max-height: 400px; height: auto; width: auto; border-radius: var(--radius); }
.testimonials blockquote { background: var(--muted); padding: 24px; border-radius: var(--radius); margin: 0 0 16px; }
.testimonials blockquote p { font-style: italic; margin: 0 0 8px; }

[class*="review"] blockquote, .review-quote, [class*="testimonial"] blockquote, .spotlight .quote, .quote blockquote {
  display: -webkit-box; -webkit-line-clamp: 9; -webkit-box-orient: vertical; overflow: hidden;
}
.testimonials footer { font-size: 13px; opacity: 0.8; }
.faq-row { padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-row dt { font-weight: 600; margin-bottom: 4px; }
.faq-row dd { margin: 0; opacity: 0.85; }
.contact-form { display: grid; gap: 12px; max-width: 520px; }
.field { display: grid; gap: 6px; }
.field span { font-size: 13px; opacity: 0.7; }
.field input, .field textarea, .field select { padding: 10px 12px; border: 1px solid var(--muted); border-radius: var(--radius); background: var(--bg); color: var(--fg); font: inherit; }
.field.check { display: flex; align-items: center; gap: 8px; }
.field.file-field input[type="file"] { cursor: pointer; }
.field.file-field .file-status { font-size: 12.5px; opacity: 0.85; }

.form-success { padding: 16px 18px; border-radius: var(--radius); background: var(--muted); color: var(--fg); font-size: 15px; line-height: 1.5; max-width: 520px; }
.form-error { margin-top: 4px; padding: 10px 12px; border-radius: var(--radius); background: var(--muted); color: var(--fg); font-size: 13.5px; line-height: 1.4; }
.form-error:empty { display: none; }
.cta { text-align: center; background: var(--accent); color: var(--t-on-accent); border-radius: var(--radius); padding: clamp(48px, 6vw, 72px) 32px; }
.cta h2 { color: var(--t-on-accent); }
.cta p { color: var(--t-on-accent); opacity: 0.96; }
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .cta-buttons .btn { background: var(--t-on-accent); color: var(--accent); }
.footer { text-align: center; padding: 32px 24px; font-size: 14px; opacity: 0.85; }

[class*="lib-footers"] .footer, [class*="lib-footers"].footer { text-align: left; }

[class*="lib-custom-"] .footer, [class*="lib-custom-"].footer { text-align: left; opacity: 1; }
.footer-copy { margin: 0 0 16px; }
.footer-inline { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px; }
.footer-inline a { color: inherit; opacity: 0.85; }
.footer-inline a:hover { opacity: 1; }

.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px 24px; max-width: 880px; margin: 0 auto; text-align: left; }
.footer-grid a { color: inherit; opacity: 0.85; text-decoration: none; padding: 4px 0; }
.footer-grid a:hover { opacity: 1; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
.heading { padding: 16px 24px; }
.prose { padding: 8px 24px; }

.prose a { color: var(--accent, inherit); text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }
.prose a:hover { opacity: 0.8; }
.gallery { display: grid; gap: 8px; padding: 0 24px; }

[class*="lib-gallery"] .gallery, [class*="lib-gallery"].gallery,
[class*="lib-custom-"] .gallery, [class*="lib-custom-"].gallery { display: block; gap: normal; }
.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery.cols-3 { grid-template-columns: repeat(3, 1fr); }
.gallery.cols-4 { grid-template-columns: repeat(4, 1fr); }
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); display: block; }
.gallery .gallery-item { padding: 0; background: transparent; border: 0; cursor: zoom-in; position: relative; overflow: hidden; border-radius: var(--radius); display: block; transition: transform 0.18s ease, box-shadow 0.18s ease; }
.gallery .gallery-item:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.gallery .gallery-item:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; }
.gallery .gallery-caption { position: absolute; left: 0; right: 0; bottom: 0; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.6)); color: white; padding: 12px 14px 10px; font-size: 13px; line-height: 1.3; opacity: 0; transition: opacity 0.18s ease; }
.gallery .gallery-item:hover .gallery-caption, .gallery .gallery-item:focus-visible .gallery-caption { opacity: 1; }
@media (max-width: 720px) { .gallery .gallery-caption { opacity: 1; } }
.placeholder { background: linear-gradient(135deg, var(--secondary), var(--primary)); }


.logo-wall { text-align: center; }
.logo-wall-heading { text-transform: uppercase; letter-spacing: 0.12em; font-size: 13px; font-weight: 600; opacity: 0.8; margin: 0 0 28px; }
.logo-wall-grid { display: grid; gap: 32px 56px; align-items: center; justify-items: center; }
.logo-wall-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.logo-wall-grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.logo-wall-grid.cols-6 { grid-template-columns: repeat(6, 1fr); }
.logo-wall-grid img { max-height: 36px; width: auto; opacity: 0.7; filter: grayscale(0.4); transition: opacity 0.2s, filter 0.2s; }
.logo-wall-grid a:hover img, .logo-wall-grid img:hover { opacity: 1; filter: grayscale(0); }
@media (max-width: 720px) { .logo-wall-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 24px; } }


.stats-band { text-align: center; background: var(--fg); color: var(--t-on-fg); border-radius: var(--radius); padding: clamp(40px, 5vw, 60px) 32px; }
.stats-heading { font-size: clamp(20px, 3vw, 28px); margin: 0 0 32px; }
.stats-grid { display: grid; gap: 40px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.stats-grid .stat-value { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.05; color: var(--t-on-fg); margin-bottom: 8px; }
.stats-grid .stat-label { font-size: 15px; opacity: 0.92; line-height: 1.4; }
.stats-grid .stat-sub { font-size: 13px; opacity: 0.78; margin-top: 4px; }


.split-feature { display: flex; flex-direction: column; gap: 80px; }
.split-heading { text-align: center; margin: 0 0 16px; }
.split-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-row .split-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; object-position: center 20%; border-radius: var(--radius); }
.split-row .split-text h3 { margin: 0 0 12px; font-size: clamp(22px, 3vw, 32px); }
.split-row .split-text p { margin: 0 0 16px; opacity: 0.85; line-height: 1.6; }
@media (max-width: 720px) {
  .split-row { grid-template-columns: 1fr; gap: 20px; }
  .split-row.split-left, .split-row.split-right {  }
}

.split-feature-grid { gap: 32px; }
.split-grid { display: grid; gap: 20px; }
.split-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.split-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.split-card { padding: 24px; background: var(--muted); border-radius: var(--radius); color: var(--on-muted); }
.split-card h3 { margin: 0 0 8px; font-size: 20px; color: var(--on-muted); }
.split-card p { margin: 0; opacity: 0.85; line-height: 1.5; color: var(--on-muted); }
.split-card-img { max-width: 100%; height: 140px; object-fit: cover; border-radius: 8px; margin-bottom: 12px; }
.split-card-icon { width: 36px; height: 36px; margin-bottom: 12px; color: var(--accent); }
.split-card-icon svg { width: 100%; height: 100%; display: block; }
.is-copied .split-card { background: transparent; color: inherit; border: 1px solid rgba(0,0,0,0.08); }
.is-copied .split-card h3, .is-copied .split-card p { color: inherit; }
@media (max-width: 720px) { .split-grid.cols-2, .split-grid.cols-3 { grid-template-columns: 1fr; } }


.bento-grid { max-width: 1100px; }
.bento-heading { text-align: center; margin: 0 0 32px; }
.bento-cells { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.bento-cell { background: var(--muted); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; --bento-accent: var(--primary); }
.bento-cell.span-1 { grid-column: span 2; }
.bento-cell.span-2 { grid-column: span 3; }
.bento-cell.span-3 { grid-column: span 6; }
.bento-cell h3 { margin: 0 0 8px; color: var(--bento-accent); }
.bento-cell p { margin: 0; opacity: 0.85; }
.bento-img { width: 100%; max-height: 200px; object-fit: cover; border-radius: var(--radius); margin-bottom: 16px; }
@media (max-width: 720px) { .bento-cells { grid-template-columns: 1fr; } .bento-cell.span-1, .bento-cell.span-2, .bento-cell.span-3 { grid-column: span 1; } }


.process-steps h2 { text-align: center; margin: 0 0 32px; }
.process-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 32px; counter-reset: step; }
.process-step { display: grid; grid-template-columns: 72px 1fr; gap: 24px; align-items: flex-start; }
.process-num { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: var(--primary); color: var(--bg); font-size: 22px; font-weight: 700; }
.process-text h3 { margin: 0 0 8px; font-size: clamp(20px, 2.5vw, 24px); }
.process-text p { margin: 0; opacity: 0.85; line-height: 1.6; }


.announcement-bar { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 10px 20px; background: var(--primary); color: var(--bg); font-size: 14px; max-width: none; margin: 0; border-radius: 0; }
.ann-msg { line-height: 1.4; }
.ann-cta { color: inherit; text-decoration: underline; font-weight: 600; }
.ann-dismiss { background: transparent; border: 0; color: inherit; font-size: 20px; line-height: 1; cursor: pointer; opacity: 0.7; padding: 0 4px; }
.ann-dismiss:hover { opacity: 1; }


.section.marquee { overflow: hidden; padding: 0; margin: 0; max-width: none; border-radius: 0; background: var(--primary); color: var(--bg); box-shadow: inset 0 1px 0 color-mix(in srgb, var(--bg) 32%, transparent), inset 0 -1px 0 color-mix(in srgb, var(--bg) 32%, transparent); }
.section.marquee.mq-tone-accent { background: var(--accent); color: var(--fg); }
.section.marquee.mq-tone-fg { background: var(--fg); color: var(--bg); }
.section.marquee.mq-tone-bg { background: var(--bg); color: var(--fg); box-shadow: inset 0 1px 0 color-mix(in srgb, var(--fg) 16%, transparent), inset 0 -1px 0 color-mix(in srgb, var(--fg) 16%, transparent); }
.section.marquee .mq-track { display: flex; width: max-content; white-space: nowrap; animation: sfs-marquee var(--mq-speed, 24s) linear infinite; will-change: transform; }
.section.marquee:hover .mq-track { animation-play-state: paused; }
.section.marquee .mq-run { display: flex; align-items: center; padding: 0.7rem 0; font-family: var(--theme-font-heading, inherit); font-weight: 700; font-size: clamp(0.9rem, 1.5vw, 1.1rem); letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.2; }
.section.marquee .mq-item { padding: 0 1.1rem; }
.section.marquee .mq-sep { opacity: 0.55; }
@keyframes sfs-marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .section.marquee .mq-track { animation: none; width: auto; white-space: normal; justify-content: center; }
  .section.marquee .mq-run { flex-wrap: wrap; justify-content: center; row-gap: 0.4rem; }
  .section.marquee .mq-run[aria-hidden] { display: none; }
  .section.marquee .mq-run .mq-sep:last-child { display: none; }
}


.icon-list h2 { text-align: center; margin: 0 0 24px; }
.icon-list-grid { list-style: none; padding: 0; margin: 0; display: grid; gap: 20px; }
.icon-list-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.icon-list-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.icon-list-grid li { display: flex; gap: 16px; align-items: flex-start; }
.icon-list-icon { flex-shrink: 0; font-size: 20px; line-height: 1.2; color: var(--primary); width: 32px; }
.icon-list-label { font-weight: 600; line-height: 1.4; }
.icon-list-desc { font-size: 14px; opacity: 0.75; margin-top: 4px; line-height: 1.5; }
@media (max-width: 720px) {
  .icon-list-grid.cols-2, .icon-list-grid.cols-3 { grid-template-columns: 1fr; }
}
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.pricing-tier { background: var(--muted); color: var(--on-muted); padding: 28px 22px; border-radius: var(--radius); display: flex; flex-direction: column; gap: 14px; }
.pricing-tier.highlight { background: var(--accent); color: var(--t-on-accent); transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.pricing-tier h3 { color: inherit; margin: 0; }
.pricing-tier .price { font-size: 28px; font-weight: 700; }
.pricing-tier .price .period { font-size: 13px; font-weight: 400; opacity: 0.75; }
.pricing-tier ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; }
.pricing-tier ul li { padding-left: 22px; position: relative; font-size: 14px; }
.pricing-tier ul li::before { content: "✓"; position: absolute; left: 0; opacity: 0.9; }
.pricing-tier .btn { margin-top: auto; text-align: center; }
.comparison-table { padding: 40px 24px; }
.comparison-table .lead { text-align: center; max-width: 640px; margin: 0 auto 24px; opacity: 0.8; }
.comparison-table .compare-wrap { overflow-x: auto; }
.comparison-table table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comparison-table th, .comparison-table td { padding: 14px 16px; border-bottom: 1px solid rgba(0,0,0,0.08); text-align: center; }
.comparison-table thead th { background: var(--muted); color: var(--on-muted); font-weight: 600; }
.comparison-table thead th.highlight { background: var(--primary); color: var(--t-on-primary); }
.comparison-table tbody th.feature-col { text-align: left; font-weight: 500; }
.comparison-table .sublabel { font-size: 12px; font-weight: 400; opacity: 0.7; margin-top: 4px; }
.comparison-table td.highlight { background: rgba(var(--primary-rgb, 0,0,0), 0.04); }
.comparison-table .check { color: #2da44e; font-weight: 700; }
.comparison-table .cross { opacity: 0.4; }
.email-capture { text-align: center; }
.email-capture-form { display: flex; gap: 8px; max-width: 480px; margin: 16px auto 0; flex-wrap: wrap; justify-content: center; }
.email-capture-form .ec-input { flex: 1 1 220px; }
.email-capture-form input[type=email] { width: 100%; padding: 12px 14px; border: 1px solid var(--muted); border-radius: var(--radius); background: var(--bg); color: var(--fg); font: inherit; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }


.section.video { text-align: center; }
.section.video .video-embed { width: 100%; max-width: 960px; aspect-ratio: 16/9; border: 0; border-radius: var(--radius); display: block; margin: 0 auto; }
.section.video .video-caption { margin-top: 12px; font-size: 14px; opacity: 0.75; }
.section.map .map-wrap { aspect-ratio: 16/9; border-radius: var(--radius); overflow: hidden; }
.section.map .map-wrap iframe { width: 100%; height: 100%; border: 0; }
.section.map .map-address { margin-top: 14px; font-size: 14px; }
.section.map .map-address a { color: inherit; text-decoration: underline; }
.section.map .map-directions { margin-top: 14px; }
.section.map .map-empty { max-width: 520px; margin: 0 auto; padding: 32px; border: 1px dashed var(--muted); border-radius: var(--radius); opacity: 0.85; }
.section.map .map-empty p { margin: 0 0 8px; }
.section.map .map-empty p:last-child { margin-bottom: 0; font-size: 14px; opacity: 0.85; }


.section.booking { text-align: center; }
.section.booking .booking-wrap { width: 100%; max-width: 920px; margin: 24px auto 0; aspect-ratio: 3/4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--muted); }
.section.booking .booking-wrap iframe { width: 100%; height: 100%; border: 0; background: var(--bg); }
.section.booking .booking-empty { max-width: 520px; margin: 24px auto 0; padding: 32px; border: 1px dashed var(--muted); border-radius: var(--radius); opacity: 0.85; }
@media (min-width: 720px) { .section.booking .booking-wrap { aspect-ratio: 16/10; } }


.section.payment { text-align: center; }
.section.payment .payment-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 16px; }
.section.payment .payment-btn { display: inline-flex; align-items: center; gap: 8px; background: var(--color-primary, var(--primary)); color: var(--color-on-primary, var(--t-on-primary, #fff)); border-radius: var(--t-radius, 6px); padding: 14px 28px; font-weight: 600; font-size: 16px; text-decoration: none; transition: opacity .15s; }
.section.payment .payment-btn:hover { opacity: .88; }
.section.payment .payment-lock svg { width: 16px; height: 16px; vertical-align: middle; }
.section.payment .payment-note { margin: 0; font-size: 13px; color: var(--t-fg-muted, #888); }
.section.payment .payment-powered { margin: 0; font-size: 11px; color: var(--t-fg-muted, #888); opacity: .7; }
.section.payment .payment-empty { max-width: 520px; margin: 16px auto 0; padding: 32px; border: 1px dashed var(--muted, #d4d4d4); border-radius: var(--t-radius, 6px); opacity: .85; }
.section.payment .payment-empty p { margin: 0 0 8px; }
.section.payment .payment-empty p:last-child { margin-bottom: 0; font-size: 14px; opacity: .85; }


.section.booking-native { max-width: 640px; margin-left: auto; margin-right: auto; }
.section.booking-native .bk-heading { text-align: center; margin-bottom: 24px; }
.section.booking-native .bk-state { text-align: center; color: var(--t-fg-muted, #888); min-height: 1.5em; }
.section.booking-native .bk-err { max-width: 560px; margin: 8px auto; padding: 10px 14px; background: rgba(220,38,38,.08); border: 1px solid rgba(220,38,38,.25); border-radius: var(--t-radius,6px); color: #b91c1c; font-size: 14px; text-align: center; }
.section.booking-native .bk-unavail { max-width: 520px; margin: 0 auto; padding: 32px; border: 1px dashed var(--t-muted,#ccc); border-radius: var(--t-radius,6px); text-align: center; opacity: 0.8; }
.section.booking-native .bk-types { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 24px; }
.section.booking-native .bk-type-pill { display: flex; flex-direction: column; align-items: center; padding: 12px 18px; border: 2px solid var(--t-border,var(--t-muted,#ccc)); border-radius: var(--t-radius,6px); background: transparent; cursor: pointer; transition: border-color .15s,background .15s; min-width: 120px; text-align: center; }
.section.booking-native .bk-type-pill:hover,.section.booking-native .bk-type-pill:focus-visible { border-color: var(--t-primary); outline: 2px solid var(--t-primary); outline-offset: 2px; }
.section.booking-native .bk-type-pill.selected { border-color: var(--t-primary); background: color-mix(in srgb,var(--t-primary) 10%,transparent); }
.section.booking-native .bk-type-name { font-weight: 600; font-size: 15px; }
.section.booking-native .bk-type-meta { font-size: 12px; color: var(--t-fg-muted,#888); margin-top: 2px; }
.section.booking-native .bk-dates { overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 4px; margin-bottom: 16px; }
.section.booking-native .bk-date-strip { display: flex; gap: 8px; padding: 4px 2px; }
.section.booking-native .bk-date-btn { flex: 0 0 auto; display: flex; flex-direction: column; align-items: center; gap: 2px; padding: 10px 14px; border: 2px solid var(--t-border,var(--t-muted,#ccc)); border-radius: var(--t-radius,6px); background: transparent; cursor: pointer; transition: border-color .15s; min-width: 60px; }
.section.booking-native .bk-date-btn:hover,.section.booking-native .bk-date-btn:focus-visible { border-color: var(--t-primary); outline: 2px solid var(--t-primary); outline-offset: 2px; }
.section.booking-native .bk-date-btn.selected { border-color: var(--t-primary); background: color-mix(in srgb,var(--t-primary) 10%,transparent); }
.section.booking-native .bk-date-dow { font-size: 11px; text-transform: uppercase; letter-spacing: .05em; color: var(--t-fg-muted,#888); }
.section.booking-native .bk-date-num { font-size: 18px; font-weight: 700; line-height: 1.1; }
.section.booking-native .bk-slots { margin-bottom: 16px; }
.section.booking-native .bk-slots-loading,.section.booking-native .bk-slots-empty { text-align: center; color: var(--t-fg-muted,#888); padding: 12px 0; }
.section.booking-native .bk-slots-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(100px,1fr)); gap: 8px; }
.section.booking-native .bk-slot-btn { padding: 10px 8px; border: 2px solid var(--t-border,var(--t-muted,#ccc)); border-radius: var(--t-radius,6px); background: transparent; cursor: pointer; font-size: 14px; transition: border-color .15s,background .15s; }
.section.booking-native .bk-slot-btn:hover,.section.booking-native .bk-slot-btn:focus-visible { border-color: var(--t-primary); outline: 2px solid var(--t-primary); outline-offset: 2px; }
.section.booking-native .bk-slot-btn.selected { border-color: var(--t-primary); background: color-mix(in srgb,var(--t-primary) 10%,transparent); }
.section.booking-native .bk-form { background: var(--t-surface,rgba(0,0,0,.04)); border: 1px solid var(--t-border,var(--t-muted,#ccc)); border-radius: var(--t-radius,6px); padding: 24px; margin-top: 8px; }
.section.booking-native .bk-form-label { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.section.booking-native .bk-form-when { font-size: 14px; color: var(--t-fg-muted,#888); margin-bottom: 16px; }
.section.booking-native .bk-fields { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.section.booking-native .bk-label { display: flex; flex-direction: column; gap: 4px; font-size: 14px; font-weight: 500; }
.section.booking-native .bk-input { padding: 9px 12px; border: 1px solid var(--t-border,var(--t-muted,#ccc)); border-radius: calc(var(--t-radius,6px) / 1.5); background: var(--t-bg,#fff); font-size: 15px; width: 100%; box-sizing: border-box; }
.section.booking-native .bk-input:focus { outline: 2px solid var(--t-primary); outline-offset: 0; border-color: var(--t-primary); }
.section.booking-native .bk-textarea { resize: vertical; min-height: 72px; }
.section.booking-native .bk-req { color: var(--t-primary); margin-left: 2px; }
.section.booking-native .bk-optional { font-weight: 400; color: var(--t-fg-muted,#888); font-size: 12px; }
.section.booking-native .bk-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.section.booking-native .bk-submit { width: 100%; padding: 13px; background: var(--t-primary); color: #fff; border: none; border-radius: var(--t-radius,6px); font-size: 16px; font-weight: 600; cursor: pointer; transition: opacity .15s; }
.section.booking-native .bk-submit:hover:not(:disabled) { opacity: .9; }
.section.booking-native .bk-submit:disabled { opacity: .55; cursor: not-allowed; }
.section.booking-native .bk-success { text-align: center; padding: 32px 16px; }
.section.booking-native .bk-success-icon { font-size: 48px; color: var(--t-primary); line-height: 1; margin-bottom: 12px; }
.section.booking-native .bk-success-msg { font-size: 18px; font-weight: 600; }
@media (max-width: 480px) { .section.booking-native .bk-slots-grid { grid-template-columns: repeat(auto-fill,minmax(84px,1fr)); } }


.section.menu-section .menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
@media (max-width: 720px) { .section.menu-section .menu-grid { grid-template-columns: 1fr; gap: 28px; } }
.menu-category-name { font-size: clamp(20px, 2.6vw, 28px); margin: 0 0 4px; letter-spacing: 0.04em; text-transform: uppercase; border-bottom: 2px solid var(--primary); padding-bottom: 8px; }
.menu-category-desc { margin: 6px 0 14px; opacity: 0.75; font-size: 14px; font-style: italic; }
.menu-items { list-style: none; margin: 0; padding: 0; }
.menu-item { padding: 12px 0; border-bottom: 1px dotted rgba(0,0,0,0.12); }
.menu-item:last-child { border-bottom: 0; }
.menu-item-row { display: flex; align-items: baseline; gap: 8px; font-weight: 600; }
.menu-item-name { flex: 0 1 auto; }
.menu-item-dots { flex: 1 1 auto; height: 1px; border-bottom: 1px dotted rgba(0,0,0,0.25); transform: translateY(-4px); min-width: 16px; }
.menu-item-price { flex: 0 0 auto; font-variant-numeric: tabular-nums; color: var(--primary); font-weight: 700; }
.menu-item-desc { margin: 4px 0 0; font-size: 13px; opacity: 0.75; line-height: 1.45; }
.menu-item-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px; }
.menu-tag { display: inline-block; padding: 2px 8px; font-size: 11px; border-radius: 999px; background: var(--muted); color: var(--on-muted); letter-spacing: 0.06em; text-transform: uppercase; }


.section.reviews-section .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.section.reviews-section .reviews-scroller { display: flex; gap: 16px; overflow-x: auto; padding: 4px 4px 16px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.section.reviews-section .reviews-scroller .review-card { flex: 0 0 80%; max-width: 320px; scroll-snap-align: start; }
.review-card { background: var(--muted-bg, rgba(0,0,0,0.03)); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); padding: 20px 18px; display: flex; flex-direction: column; gap: 10px; }
.review-stars { color: #f5a524; font-size: 16px; letter-spacing: 2px; }
.review-quote { margin: 0; font-style: italic; font-size: 15px; line-height: 1.55; quotes: none; }
.review-quote::before { content: "“"; opacity: 0.4; margin-right: 2px; }
.review-quote::after { content: "”"; opacity: 0.4; margin-left: 2px; }
.review-footer { display: flex; align-items: center; gap: 10px; margin-top: auto; font-size: 13px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; }
.review-avatar-fallback { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--bg); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.review-author-block { flex: 1 1 auto; }
.review-author { font-weight: 600; }
.review-date { font-size: 12px; opacity: 0.65; }
.review-verified { font-size: 11px; padding: 2px 8px; border-radius: 999px; background: #16a34a; color: white; letter-spacing: 0.04em; }

.section.reviews-section .reviews-summary { margin: 0 0 18px; font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.section.reviews-section .reviews-attribution { margin-top: 18px; font-size: 12px; opacity: 0.7; }
.section.reviews-section .reviews-attribution a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.review-readon { font-size: 12px; font-weight: 600; color: var(--primary); text-decoration: none; }
.review-readon:hover { text-decoration: underline; }

.section.reviews-section.reviews-empty { text-align: center; }
.reviews-connect-card { max-width: 480px; margin: 0 auto; padding: 28px 24px; border: 2px dashed var(--muted, rgba(0,0,0,0.18)); border-radius: var(--radius); background: var(--muted-bg, rgba(0,0,0,0.03)); }
.reviews-connect-title { font-weight: 800; font-size: 1.1rem; margin-bottom: 8px; }
.reviews-connect-body { margin: 0 0 10px; font-size: 14px; opacity: 0.8; line-height: 1.5; }
.reviews-connect-hint { margin: 0; font-size: 13px; opacity: 0.7; }


.section.blog-index .blog-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.blog-card { background: var(--muted-bg, rgba(0,0,0,0.03)); border: 1px solid rgba(0,0,0,0.08); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform 0.18s, box-shadow 0.18s; }
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.12); }
.blog-card-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--secondary), var(--primary)); background-size: cover; background-position: center; }
.blog-card-body { padding: 16px 18px; display: flex; flex-direction: column; gap: 8px; }
.blog-card-title { margin: 0; font-size: 18px; line-height: 1.3; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--primary); }
.blog-card-excerpt { margin: 0; font-size: 14px; opacity: 0.8; line-height: 1.5; flex: 1 1 auto; }
.blog-card-meta { font-size: 12px; opacity: 0.65; }
.section.blog-index .blog-list { display: flex; flex-direction: column; gap: 12px; }
.section.blog-index .blog-list .blog-card { flex-direction: row; align-items: stretch; }
.section.blog-index .blog-list .blog-card-thumb { flex: 0 0 200px; aspect-ratio: auto; }
@media (max-width: 720px) { .section.blog-index .blog-list .blog-card { flex-direction: column; } .section.blog-index .blog-list .blog-card-thumb { flex: 0 0 auto; aspect-ratio: 16/9; } }
.section.blog-index .blog-empty { opacity: 0.65; padding: 32px 20px; text-align: center; border: 1px dashed var(--muted); border-radius: var(--radius); }


.section.html-embed { text-align: center; }
.section.html-embed h2 { text-align: left; margin: 0 0 16px; }
.section.html-embed .html-embed-frame { max-width: 100%; border-radius: var(--radius); }


body.is-copied .card,
body.is-copied .testimonials blockquote,
body.is-copied .cta,
body.is-copied .stats-band,
body.is-copied .pricing-tier { background: transparent; color: inherit; }
body.is-copied .card { border: 1px solid rgba(0,0,0,0.08); }
body.is-copied .card h3, body.is-copied .card p { color: inherit; }

body.is-copied .cta, body.is-copied .stats-band { border-radius: 0; padding: var(--t-section-pad-y, 84px) 24px; }
body.is-copied .cta h2, body.is-copied .cta p { color: inherit; opacity: 1; }
body.is-copied .cta .cta-buttons .btn { background: var(--primary); color: var(--t-on-primary); }
body.is-copied .card-icon { background: transparent; }
body.is-copied .stats-grid .stat-value { color: var(--primary); }
body.is-copied .pricing-tier h3 { color: inherit; }
body.is-copied .pricing-tier.highlight { background: var(--primary); color: var(--bg); }
body.is-copied .section[style*="--heading-color"] h1,
body.is-copied .section[style*="--heading-color"] h2,
body.is-copied .section[style*="--heading-color"] h3 { color: var(--heading-color); }


.section.align-left   { text-align: left; }
.section.align-center { text-align: center; }
.section.align-right  { text-align: right; }
.section.align-justify { text-align: justify; }

.btn { display: inline-flex; align-items: center; gap: 0.45em; transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, opacity 0.18s ease; }
.btn .btn-icon { display: inline-flex; align-items: center; justify-content: center; line-height: 0; }
.btn .btn-icon svg { width: 1em; height: 1em; }
.btn-size-small { padding: 6px 14px; font-size: 14px; }
.btn-size-medium { padding: 10px 20px; font-size: 16px; }
.btn-size-large { padding: 14px 28px; font-size: 18px; }

.btn-pill { border-radius: var(--radius); }
.btn-outline { background: transparent; color: var(--btn-fg, currentColor); border: 2px solid currentColor; }
.btn-outline.primary { background: transparent; }
.btn-ghost { background: transparent; border: 0; color: currentColor; }
.btn-link { background: transparent; border: 0; color: var(--accent, currentColor); padding: 0; text-decoration: underline; }

.btn-hover-lift:hover  { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,0.18); }
.btn-hover-glow:hover  { box-shadow: 0 0 18px currentColor; }
.btn-hover-fade:hover  { opacity: 0.78; }
.btn-hover-slide:hover .btn-icon-right { transform: translateX(3px); }
.btn-hover-slide:hover .btn-icon-left  { transform: translateX(-3px); }
.btn .btn-icon { transition: transform 0.18s ease; }

@media (max-width: 719px) { .btn-fwmobile { width: 100%; justify-content: center; } }

.btn-shadow-small  { box-shadow: 0 1px 3px rgba(0,0,0,0.12); }
.btn-shadow-medium { box-shadow: 0 4px 10px rgba(0,0,0,0.18); }
.btn-shadow-large  { box-shadow: 0 10px 24px rgba(0,0,0,0.24); }

.section.image .w-image-img { display: block; max-width: 100%; transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease; }
.section.image figure { margin: 0; }

.w-image-radius-small  .w-image-img { border-radius: 6px; }
.w-image-radius-medium .w-image-img { border-radius: 14px; }
.w-image-radius-large  .w-image-img { border-radius: 28px; }
.w-image-radius-round  .w-image-img { border-radius: 50%; }
.w-image-radius-pill   .w-image-img { border-radius: 999px; }

.w-image-mask-circle  .w-image-img { clip-path: circle(50%); }
.w-image-mask-rounded .w-image-img { border-radius: 28px; }
.w-image-mask-blob    .w-image-img { clip-path: path("M421 64c83 27 128 121 96 207-32 86-128 132-211 95C223 329 154 256 168 169 182 82 338 36 421 64Z"); }

.section.image.w-image-hover-zoom .w-image-img:hover { transform: scale(1.04); }
.section.image.w-image-hover-lift .w-image-img:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.22); }
.section.image.w-image-hover-fade .w-image-img:hover { opacity: 0.78; }
.section.image.w-image-hover-tint .w-image-img:hover { filter: brightness(0.7) saturate(1.3) hue-rotate(-10deg); }

.w-image-shadow-small  .w-image-img { box-shadow: 0 1px 4px rgba(0,0,0,0.14); }
.w-image-shadow-medium .w-image-img { box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.w-image-shadow-large  .w-image-img { box-shadow: 0 14px 32px rgba(0,0,0,0.24); }

.w-image-filter-grayscale .w-image-img { filter: grayscale(100%); }
.w-image-filter-sepia     .w-image-img { filter: sepia(80%); }
.w-image-filter-bright    .w-image-img { filter: brightness(1.18) contrast(1.05); }
.w-image-filter-dim       .w-image-img { filter: brightness(0.78); }
.w-image-filter-warm      .w-image-img { filter: sepia(20%) saturate(1.3) hue-rotate(-12deg); }
.w-image-filter-cool      .w-image-img { filter: saturate(1.15) hue-rotate(15deg) brightness(1.05); }

.section.video .w-video-frame { position: relative; width: 100%; overflow: hidden; }
.section.video .w-video-frame > iframe,
.section.video .w-video-frame > video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.w-video-ar-16x9 .w-video-frame { aspect-ratio: 16/9; }
.w-video-ar-4x3  .w-video-frame { aspect-ratio: 4/3; }
.w-video-ar-1x1  .w-video-frame { aspect-ratio: 1/1; }
.w-video-ar-21x9 .w-video-frame { aspect-ratio: 21/9; }
.w-video-radius-small  .w-video-frame { border-radius: 8px; }
.w-video-radius-medium .w-video-frame { border-radius: 16px; }
.w-video-radius-large  .w-video-frame { border-radius: 28px; }
.w-video-shadow-small  .w-video-frame { box-shadow: 0 2px 8px rgba(0,0,0,0.14); }
.w-video-shadow-medium .w-video-frame { box-shadow: 0 8px 22px rgba(0,0,0,0.20); }
.w-video-shadow-large  .w-video-frame { box-shadow: 0 16px 38px rgba(0,0,0,0.26); }

.w-image-border-thin   .w-image-img { border: 1px solid var(--w-image-border-color, var(--accent, #3b82f6)); }
.w-image-border-medium .w-image-img { border: 3px solid var(--w-image-border-color, var(--accent, #3b82f6)); }
.w-image-border-thick  .w-image-img { border: 6px solid var(--w-image-border-color, var(--accent, #3b82f6)); }
.w-video-border-thin   .w-video-frame { border: 1px solid var(--w-video-border-color, var(--accent, #3b82f6)); }
.w-video-border-medium .w-video-frame { border: 3px solid var(--w-video-border-color, var(--accent, #3b82f6)); }
.w-video-border-thick  .w-video-frame { border: 6px solid var(--w-video-border-color, var(--accent, #3b82f6)); }

.section.carousel { position: relative; }
.section.carousel .w-carousel-track { position: relative; overflow: hidden; }
.section.carousel .w-carousel-slide { position: relative; }
.section.carousel .w-carousel-img { display: block; width: 100%; height: 100%; object-fit: cover; }

.w-carousel-ar-16x9 .w-carousel-track { aspect-ratio: 16/9; }
.w-carousel-ar-4x3  .w-carousel-track { aspect-ratio: 4/3; }
.w-carousel-ar-1x1  .w-carousel-track { aspect-ratio: 1/1; }
.w-carousel-ar-21x9 .w-carousel-track { aspect-ratio: 21/9; }
.w-carousel-ar-16x9 .w-carousel-slide,
.w-carousel-ar-4x3  .w-carousel-slide,
.w-carousel-ar-1x1  .w-carousel-slide,
.w-carousel-ar-21x9 .w-carousel-slide { position: absolute; inset: 0; }

.w-carousel-trans-fade .w-carousel-slide { opacity: 0; transition: opacity 0.45s ease; pointer-events: none; }
.w-carousel-trans-fade .w-carousel-slide:not([hidden]) { opacity: 1; pointer-events: auto; }
.w-carousel-trans-fade .w-carousel-slide[hidden] { display: block !important; visibility: hidden; }

.w-carousel-trans-slide .w-carousel-slide { transition: transform 0.4s ease; }

.section.carousel .w-carousel-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 20px; background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65)); color: #fff; }
.section.carousel .w-carousel-heading { margin: 0 0 4px; font-size: 22px; font-weight: 700; }
.section.carousel .w-carousel-cta { display: inline-block; padding: 6px 14px; background: var(--accent, #3b82f6); color: #fff; border-radius: 6px; font-size: 14px; }

.section.carousel .w-carousel-link { display: block; color: inherit; text-decoration: none; }

.w-carousel-radius-small  { border-radius: 8px; overflow: hidden; }
.w-carousel-radius-medium { border-radius: 16px; overflow: hidden; }
.w-carousel-radius-large  { border-radius: 28px; overflow: hidden; }
.w-carousel-shadow-small  { box-shadow: 0 2px 8px rgba(0,0,0,0.14); }
.w-carousel-shadow-medium { box-shadow: 0 8px 22px rgba(0,0,0,0.20); }
.w-carousel-shadow-large  { box-shadow: 0 16px 38px rgba(0,0,0,0.26); }
.w-carousel-border-thin   { border: 1px solid var(--w-carousel-border-color, var(--accent, #3b82f6)); }
.w-carousel-border-medium { border: 3px solid var(--w-carousel-border-color, var(--accent, #3b82f6)); }
.w-carousel-border-thick  { border: 6px solid var(--w-carousel-border-color, var(--accent, #3b82f6)); }

.section.video.w-video-hover-lift .w-video-frame { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.section.video.w-video-hover-lift:hover .w-video-frame { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,0.22); }
.section.video.w-video-hover-fade .w-video-frame { transition: opacity 0.25s ease; }
.section.video.w-video-hover-fade:hover .w-video-frame { opacity: 0.85; }

.section.tabs { padding: var(--t-section-pad-y, 48px) 24px; }
.w-tabs-heading { font-family: var(--t-font-heading, inherit); font-size: clamp(1.375rem, 3vw, 2rem); margin: 0 0 24px; text-align: center; color: var(--t-fg, inherit); }
.w-tabs-bar { display: flex; flex-wrap: wrap; gap: 4px; border-bottom: 1px solid var(--t-border, #e5e7eb); margin: 0 0 24px; }
.w-tabs-tab { appearance: none; border: 0; background: transparent; cursor: pointer; padding: 12px 20px; font-size: 0.95rem; font-weight: 600; font-family: inherit; color: var(--t-fg-muted, #666); border-radius: var(--radius, 8px) var(--radius, 8px) 0 0; transition: background 0.15s ease, color 0.15s ease; }
.w-tabs-tab:hover { color: var(--t-fg, #111); background: var(--t-surface, #f9fafb); }
.w-tabs-tab[aria-selected="true"] { background: var(--t-primary, #2563eb); color: var(--t-on-primary, #fff); }
.w-tabs-tab:focus-visible { outline: 2px solid var(--t-primary, #2563eb); outline-offset: 2px; }
.w-tabs-panels { max-width: 720px; margin: 0 auto; }
.w-tabs-panel { color: var(--t-fg, inherit); line-height: 1.6; }
@media (max-width: 480px) {
  .w-tabs-bar { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: thin; border-bottom: 1px solid var(--t-border, #e5e7eb); }
  .w-tabs-tab { flex: 0 0 auto; white-space: nowrap; }
}

.section.accordion { padding: var(--t-section-pad-y, 48px) 24px; }
.w-accordion-heading { font-family: var(--t-font-heading, inherit); font-size: clamp(1.375rem, 3vw, 2rem); margin: 0 0 24px; text-align: center; color: var(--t-fg, inherit); }
.w-accordion-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.w-accordion-row { border: 1px solid var(--t-border, #e5e7eb); border-radius: var(--radius, 8px); padding: 0 20px; background: var(--t-surface, #f9fafb); }
.w-accordion-title { cursor: pointer; list-style: none; padding: 16px 28px 16px 0; font-weight: 600; color: var(--t-fg, inherit); position: relative; }
.w-accordion-title::-webkit-details-marker { display: none; }
.w-accordion-title::after { content: ""; position: absolute; right: 2px; top: 50%; width: 9px; height: 9px; border-right: 2px solid var(--t-primary, currentColor); border-bottom: 2px solid var(--t-primary, currentColor); transform: translateY(-70%) rotate(45deg); transition: transform 0.2s ease; }
.w-accordion-row[open] .w-accordion-title::after { transform: translateY(-30%) rotate(-135deg); }
.w-accordion-title:focus-visible { outline: 2px solid var(--t-primary, #2563eb); outline-offset: 2px; }
.w-accordion-body { padding: 0 0 18px; color: var(--t-fg-muted, #666); line-height: 1.6; }

.hero.hero-h-medium        { min-height: 540px; }
.hero.hero-h-large         { min-height: 720px; }
.hero.hero-h-full-viewport { min-height: 100vh; }

.hero.hero-valign-top      { display: flex; flex-direction: column; justify-content: flex-start; }
.hero.hero-valign-middle   { display: flex; flex-direction: column; justify-content: center; }
.hero.hero-valign-bottom   { display: flex; flex-direction: column; justify-content: flex-end; }

.hero.hero-has-video       { position: relative; overflow: hidden; }
.hero .hero-bg-video       { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; pointer-events: none; }
.hero .hero-bg-overlay     { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.hero.hero-has-video .hero-text { position: relative; z-index: 2; }

@media (max-width: 719px)                            { .sfs-hide-mobile  { display: none !important; } }
@media (min-width: 720px) and (max-width: 1023px)    { .sfs-hide-tablet  { display: none !important; } }
@media (min-width: 1024px)                           { .sfs-hide-desktop { display: none !important; } }
.section.align-center .cta-buttons, .section.align-center .hero-text { justify-content: center; align-items: center; }
.section.align-right  .cta-buttons, .section.align-right  .hero-text { justify-content: flex-end; align-items: flex-end; }
.section.hero.align-center .hero-text, .section.hero.align-right .hero-text { display: flex; flex-direction: column; }
.section.size-small  h1, .section.size-small  h2 { font-size: clamp(20px, 2.5vw, 28px); }
.section.size-small  p { font-size: 13px; }
.section.size-medium h1 { font-size: clamp(28px, 4vw, 44px); }
.section.size-medium h2 { font-size: clamp(20px, 3vw, 32px); }
.section.size-large  h1 { font-size: clamp(40px, 6vw, 72px); }
.section.size-large  h2 { font-size: clamp(28px, 4.5vw, 52px); }
.section.size-large  p  { font-size: 18px; }
.section.size-xlarge h1 { font-size: clamp(56px, 8vw, 96px); line-height: 1.05; }
.section.size-xlarge h2 { font-size: clamp(40px, 6vw, 72px); }
.section.size-xlarge p  { font-size: 20px; }
