/* =========================================================
 * Wine Tours Adelaide — exact port of cellar-insider-vault/src/index.css
 * Keep variables and component classes 1:1 with the source so
 * Elementor HTML widgets using the same Tailwind classes render identically.
 * ========================================================= */

:root {
    --background: 40 33% 98%;
    --foreground: 20 10% 15%;

    --card: 40 30% 97%;
    --card-foreground: 20 10% 15%;

    --popover: 0 0% 100%;
    --popover-foreground: 20 10% 15%;

    --primary: 32 45% 38%;
    --primary-foreground: 40 33% 98%;

    --secondary: 40 20% 93%;
    --secondary-foreground: 20 10% 25%;

    --muted: 40 15% 94%;
    --muted-foreground: 20 5% 50%;

    --accent: 32 30% 90%;
    --accent-foreground: 32 45% 28%;

    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 210 40% 98%;

    --border: 35 20% 88%;
    --input: 35 20% 88%;
    --ring: 32 45% 38%;

    --radius: 0.375rem;

    --gold: 38 60% 52%;
    --gold-light: 38 50% 92%;
    --cream: 40 33% 96%;
    --cream-dark: 35 20% 90%;
    --wine: 350 40% 30%;
    --wine-light: 350 30% 94%;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
}

/* Hello Elementor strips body margin etc.; mirror cellar base styles */
html { scroll-behavior: smooth; }

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); }

/* Component utility classes from index.css @layer components — translated to vanilla CSS
 * (Tailwind Play CDN doesn't process @layer/@apply, so we expand the @apply rules manually.) */

.section-padding {
    padding: 3rem 1.5rem;
}
@media (min-width: 768px) {
    .section-padding { padding: 3.5rem 3rem; }
}
@media (min-width: 1024px) {
    .section-padding { padding: 4rem 6rem; }
}

.editorial-heading {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -0.025em;
}
@media (min-width: 768px) { .editorial-heading { font-size: 3rem; } }
@media (min-width: 1024px) { .editorial-heading { font-size: 3.75rem; } }

.editorial-subheading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 400;
    color: hsl(var(--muted-foreground));
}
@media (min-width: 768px) { .editorial-subheading { font-size: 1.875rem; } }

.body-text {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.625;
    font-weight: 300;
    color: hsl(var(--muted-foreground));
}
@media (min-width: 768px) { .body-text { font-size: 1.125rem; } }

.gold-divider {
    width: 4rem;
    height: 1px;
    margin-left: auto;
    margin-right: auto;
    background: hsl(var(--gold));
}

.image-cinematic {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

/* Animations from cellar */
@keyframes wta-fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}
@keyframes wta-slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes wta-float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    25% { transform: translateY(-15px) translateX(5px); opacity: 0.6; }
    50% { transform: translateY(-25px) translateX(-3px); opacity: 0.4; }
    75% { transform: translateY(-10px) translateX(8px); opacity: 0.5; }
}
.animate-fade-in { animation: wta-fadeIn 0.8s ease-out forwards; }
.animate-slide-up { animation: wta-slideUp 0.8s ease-out forwards; }

/* =========================================================
 * Theme builder header — transparent over hero on home page, solid otherwise
 * Mirrors SiteHeader.tsx logic via CSS + a tiny scroll JS toggling `.is-scrolled`.
 * ========================================================= */

.elementor-location-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 50;
    transition: background-color 0.5s, border-color 0.5s, box-shadow 0.5s;
    background-color: hsl(var(--background) / 0.95);
    border-bottom: 1px solid hsl(var(--border));
    -webkit-backdrop-filter: saturate(180%) blur(6px);
    backdrop-filter: saturate(180%) blur(6px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

/* On the home page, before scrolling, override to transparent */
body.is-home:not(.wta-scrolled) .elementor-location-header {
    background-color: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* When transparent: invert nav/logo colours via class hooks we can place on widgets */
body.is-home:not(.wta-scrolled) .wta-header-logo-dark { display: none; }
body.is-home.wta-scrolled .wta-header-logo-white,
body:not(.is-home) .wta-header-logo-white { display: none; }

body.is-home:not(.wta-scrolled) .wta-header-nav a {
    color: rgba(251, 249, 244, 0.85) !important;
}

/* Wordmark next to the logo */
.wta-header-brand { color: hsl(var(--foreground)); }
body.is-home:not(.wta-scrolled) .wta-header-brand { color: hsl(var(--primary-foreground)); }
body.is-home:not(.wta-scrolled) .wta-header-phone { color: rgba(251, 249, 244, 0.7) !important; }

/* Nav link hover always gold */
.wta-header-nav a:hover,
.wta-nav-link:hover { color: hsl(var(--gold)) !important; }

/* Hello Elementor leaves a top margin from the site-header. Compensate so fixed header overlaps content properly. */
body:not(.is-home) .site-content,
body:not(.is-home) .elementor-location-single,
body:not(.is-home) #content { padding-top: 80px; }
body.is-home #content,
body.is-home .site-content { padding-top: 0; }

/* Hide Hello Elementor's default site header — Elementor Pro theme builder template handles it */
.site-header.site-header--layout-default { display: none; }

/* =========================================================
 * Hero — cellar's bottom-gradient fade into the next section
 * (cellar uses: bottom h-32 bg-gradient-to-t from-background to-transparent)
 * ========================================================= */
#wta-hero, .wta-hero { position: relative !important; overflow: hidden; }
#wta-hero::after, .wta-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 128px;
    background: linear-gradient(to top, hsl(40, 33%, 98%) 0%, hsla(40, 33%, 98%, 0) 100%);
    pointer-events: none;
    z-index: 5;
}
#wta-hero > *, .wta-hero > * { position: relative; z-index: 6; }

/* Constrain hero CONTENT container to 70% on desktop (cellar feel) */
@media (min-width: 1024px) {
    #wta-hero .elementor-container {
        max-width: 70% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
@media (min-width: 768px) and (max-width: 1023px) {
    #wta-hero .elementor-container {
        max-width: 80% !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
/* Mobile: full width minus the section padding */
#wta-hero .elementor-container { width: 100%; }

/* =========================================================
 * HEADER — target columns via the section's id so we don't
 * depend on _css_classes being rendered onto the column.
 * ========================================================= */
#site-header-inner .elementor-container { flex-wrap: nowrap !important; align-items: center !important; }

/* Hide the white/dark logo based on scroll state */
.wta-header-logo-dark  { display: none; }
.wta-header-logo-white { display: none; }
body:not(.is-home) .wta-header-logo-dark { display: block; }
body.is-home.wta-scrolled .wta-header-logo-dark { display: block; }
body.is-home:not(.wta-scrolled) .wta-header-logo-white { display: block; }

/* Logo widget — strip excess padding, fixed size (matches cellar h-10 = 40px) */
.wta-header-logo-dark .elementor-widget-container,
.wta-header-logo-white .elementor-widget-container { padding: 0 !important; }
.wta-header-logo-dark img,
.wta-header-logo-white img { height: 44px !important; width: auto !important; max-width: none !important; display: block; }

/* LEFT column — flex its widgets inline */
#site-header-inner > .elementor-container > .elementor-column:nth-child(1) > .elementor-widget-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 12px;
    justify-content: flex-start;
}
#site-header-inner > .elementor-container > .elementor-column:nth-child(1) > .elementor-widget-wrap > .elementor-widget {
    width: auto !important;
    margin: 0 !important;
}

/* MIDDLE column — center nav (both the wrapper and the inner UL) */
#site-header-inner > .elementor-container > .elementor-column:nth-child(2),
#site-header-inner > .elementor-container > .elementor-column:nth-child(2) > .elementor-widget-wrap,
#site-header-inner > .elementor-container > .elementor-column:nth-child(2) > .elementor-widget-wrap > .elementor-widget {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}
.wta-header-nav .elementor-widget-container { width: 100%; }
.wta-header-nav nav.elementor-nav-menu--main { width: 100%; display: flex; justify-content: center; }
.wta-header-nav .elementor-nav-menu {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    margin: 0 auto !important;
}
.wta-header-nav .elementor-nav-menu > li > a {
    padding: 8px 0 !important;
    white-space: nowrap;
}
#site-header-inner,
#site-header-inner > .elementor-container,
#site-header-inner .wta-header-mid,
#site-header-inner .wta-header-mid > .elementor-widget-wrap,
#site-header-inner .wta-header-nav { overflow: visible !important; }

/* RIGHT column — phone + button inline, right aligned */
#site-header-inner > .elementor-container > .elementor-column:nth-child(3) > .elementor-widget-wrap {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 18px;
    justify-content: flex-end;
}
#site-header-inner > .elementor-container > .elementor-column:nth-child(3) > .elementor-widget-wrap > .elementor-widget {
    width: auto !important;
    margin: 0 !important;
}

/* Brand wordmark link */
.wta-header-brand .elementor-heading-title a { color: inherit; text-decoration: none; }
.wta-header-brand .elementor-heading-title { color: hsl(var(--foreground)); white-space: nowrap; }
body.is-home:not(.wta-scrolled) .wta-header-brand .elementor-heading-title,
body.is-home:not(.wta-scrolled) .wta-header-brand .elementor-heading-title a { color: hsl(var(--primary-foreground)) !important; }

/* Phone icon-list — match cellar's "<Phone w-3 h-3 /> 0487 487 111" inline row */
.wta-header-phone .elementor-widget-container { padding: 0 !important; }
.wta-header-phone .elementor-icon-list-items {
    display: inline-flex !important;
    flex-wrap: nowrap;
    margin: 0 !important;
    padding: 0 !important;
}
.wta-header-phone .elementor-icon-list-item {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 0 !important;
    margin: 0 !important;
}
.wta-header-phone .elementor-icon-list-item > a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px;
    padding: 0 !important;
}
.wta-header-phone .elementor-icon-list-item:after,
.wta-header-phone .elementor-icon-list-item:before { display: none !important; }
.wta-header-phone .elementor-icon-list-icon {
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
}
.wta-header-phone .elementor-icon-list-icon svg,
.wta-header-phone .elementor-icon-list-icon i {
    width: 12px !important;
    height: 12px !important;
    font-size: 12px !important;
}
.wta-header-phone .elementor-icon-list-text {
    white-space: nowrap;
    font-size: 11px !important;
    letter-spacing: 0.02em;
    color: hsl(var(--muted-foreground));
}
body.is-home:not(.wta-scrolled) .wta-header-phone .elementor-icon-list-text,
body.is-home:not(.wta-scrolled) .wta-header-phone .elementor-icon-list-icon i,
body.is-home:not(.wta-scrolled) .wta-header-phone .elementor-icon-list-icon svg {
    color: rgba(251,249,244,0.75) !important;
    fill: rgba(251,249,244,0.75) !important;
}
.wta-header-phone:hover .elementor-icon-list-icon svg,
.wta-header-phone:hover .elementor-icon-list-icon i,
.wta-header-phone:hover .elementor-icon-list-text {
    color: hsl(var(--gold)) !important;
    fill: hsl(var(--gold)) !important;
}

/* Book Now button — keep it from stretching to column width */
.wta-header-book .elementor-button-wrapper { display: inline-block; }
.wta-header-book .elementor-button { white-space: nowrap; }

/* =========================================================
 * Pricing cards — mirror cellar TourPricingCard
 * Column is positioned relative so the badge can sit top-right.
 * ========================================================= */
.wta-pricing-card.elementor-column > .elementor-element-populated,
.wta-pricing-card.elementor-column .elementor-widget-wrap { position: relative; }

.wta-pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: inline-block;
    background: hsl(var(--gold));
    color: #FBF9F4 !important;
    padding: 5px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    line-height: 1;
    z-index: 5;
    border-radius: 2px;
    white-space: nowrap;
}

/* Timeline - Adelaide Hills (v3) */
body.elementor-page .elementor-element.elementor-widget.wta-tl-dot,
body .elementor-element.wta-tl-dot.wta-tl-dot {
  width: 48px !important;
  max-width: 48px !important;
  min-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  border-radius: 50% !important;
  border: 2px solid #c9a84c !important;
  background: #ffffff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  flex: 0 0 48px !important;
  position: relative;
  z-index: 2;
}
body .elementor-element.wta-tl-dot .elementor-heading-title {
  line-height: 1 !important;
  margin: 0 !important;
  width: 100% !important;
  text-align: center !important;
  font-size: 18px !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600 !important;
  color: #c9a84c !important;
}

/* Vertical timeline line — single line through dot column */
body .elementor-column.wta-tl-list > .elementor-widget-wrap {
  position: relative;
}
body .elementor-column.wta-tl-list > .elementor-widget-wrap::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 1px;
  background: #c9a84c;
  opacity: 0.4;
  z-index: 1;
}

/* Dot column padding so number doesn't kiss heading */
body .elementor-column.wta-tl-list .elementor-inner-section > .elementor-container > .elementor-column:last-child > .elementor-widget-wrap {
  padding-left: 8px;
}

/* Star rating widget - Unicode fallback (Elementor's widget-star-rating.css is not enqueued) */
body .elementor-star-rating {
  font-family: Arial, Helvetica, sans-serif !important;
  display: inline-block;
  letter-spacing: 2px;
  line-height: 1;
}
body .elementor-star-rating i {
  font-style: normal !important;
  display: inline-block !important;
  position: relative !important;
}
body .elementor-star-rating i::before {
  content: "\2605" !important;
  display: inline-block !important;
  position: static !important;
  width: auto !important;
}
body .elementor-star-rating .elementor-star-empty::before {
  content: "\2606" !important;
}

/* =========================================================
 * MOBILE RESPONSIVE FIX  (≤1024px)
 * Hamburger menu + always-visible SOLID light header.
 * Uses explicit hex colours (no CSS-var/alpha) so it paints
 * reliably on all mobile browsers.
 * Added 2026-06 — Wine Tours Adelaide go-live mobile fix.
 * ========================================================= */
@media (max-width: 1024px) {

  /* --- Header: force SOLID cream background on every state (incl. home/unscrolled) --- */
  body .elementor-location-header,
  body.is-home .elementor-location-header,
  body.is-home:not(.wta-scrolled) .elementor-location-header,
  body.is-home.wta-scrolled .elementor-location-header {
    background-color: #FBF9F4 !important;
    background: #FBF9F4 !important;
    border-bottom: 1px solid #ECE6DB !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
  }

  /* Kill the dark background-overlay on the header section (was tinting the cream header dark) */
  body .elementor-location-header .elementor-background-overlay,
  body.is-home .elementor-location-header .elementor-background-overlay,
  body.is-home:not(.wta-scrolled) .elementor-location-header .elementor-background-overlay {
    opacity: 0 !important;
    background: transparent !important;
    background-image: none !important;
    display: none !important;
  }

  /* Kill ANY dark background on the header section + inner columns/widgets
     (section has a dark gradient bg-image, a child column has solid #2A2622) */
  body .elementor-location-header .elementor-section,
  body .elementor-location-header .elementor-column,
  body .elementor-location-header .elementor-widget-wrap,
  body .elementor-location-header [class*="elementor-element-"],
  body .elementor-location-header .elementor-motion-effects-container,
  body .elementor-location-header .elementor-motion-effects-layer {
    background-color: transparent !important;
    background-image: none !important;
  }

  /* Always dark logo + dark brand text on mobile (visible on cream) */
  body .wta-header-logo-dark,
  body.is-home:not(.wta-scrolled) .wta-header-logo-dark { display: block !important; }
  body .wta-header-logo-white,
  body.is-home:not(.wta-scrolled) .wta-header-logo-white { display: none !important; }
  body .wta-header-brand .elementor-heading-title,
  body .wta-header-brand .elementor-heading-title a,
  body.is-home:not(.wta-scrolled) .wta-header-brand .elementor-heading-title,
  body.is-home:not(.wta-scrolled) .wta-header-brand .elementor-heading-title a {
    color: #2A2622 !important;
  }

  /* --- Header layout: logo left, hamburger right; hide desktop nav + phone/CTA cols --- */
  #site-header-inner { min-height: 64px !important; padding-left: 20px !important; padding-right: 10px !important; }
  #site-header-inner .elementor-container { flex-wrap: nowrap !important; justify-content: space-between !important; align-items: center !important; }
  #site-header-inner > .elementor-container > .elementor-column.wta-header-mid,
  #site-header-inner > .elementor-container > .elementor-column.wta-header-right,
  #site-header-inner > .elementor-container > .elementor-column:nth-child(2),
  #site-header-inner > .elementor-container > .elementor-column:nth-child(3) { display: none !important; }
  #site-header-inner > .elementor-container > .elementor-column:nth-child(1) { width: auto !important; flex: 1 1 auto !important; max-width: none !important; }

  body:not(.is-home) #content,
  body:not(.is-home) .site-content,
  body:not(.is-home) .elementor-location-single { padding-top: 64px !important; }

  /* --- Hamburger toggle (button injected by header.js) — solid DARK bars on cream header --- */
  .wta-mobile-toggle {
    display: inline-flex !important; align-items: center; justify-content: center;
    width: 46px; height: 46px; padding: 0; margin-left: auto;
    background: transparent !important; border: 0; cursor: pointer; z-index: 60;
  }
  .wta-mobile-toggle span,
  .wta-mobile-toggle span::before,
  .wta-mobile-toggle span::after {
    content: ''; display: block; width: 26px; height: 3px; background: #2A2622 !important;
    transition: .3s; border-radius: 2px;
  }
  .wta-mobile-toggle span { position: relative; }
  .wta-mobile-toggle span::before { position: absolute; top: -8px; left: 0; }
  .wta-mobile-toggle span::after  { position: absolute; top: 8px;  left: 0; }
  body.wta-menu-open .wta-mobile-toggle span { background: transparent !important; }
  body.wta-menu-open .wta-mobile-toggle span::before { top: 0; transform: rotate(45deg); }
  body.wta-menu-open .wta-mobile-toggle span::after  { top: 0; transform: rotate(-45deg); }

  /* --- Slide-down mobile menu panel (injected by header.js) --- */
  .wta-mobile-menu {
    position: fixed; top: 64px; left: 0; right: 0; z-index: 55;
    background: #FBF9F4 !important; border-bottom: 1px solid #ECE6DB;
    box-shadow: 0 10px 28px rgba(0,0,0,0.14);
    max-height: calc(100vh - 64px); overflow-y: auto;
    transform: translateY(-14px); opacity: 0; visibility: hidden; transition: .25s ease;
  }
  body.wta-menu-open .wta-mobile-menu { transform: translateY(0); opacity: 1; visibility: visible; }
  .wta-mobile-menu a {
    display: block; padding: 15px 24px; text-decoration: none;
    font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 500;
    letter-spacing: 1.5px; text-transform: uppercase; color: #2A2622 !important;
    border-bottom: 1px solid #ECE6DB;
  }
  .wta-mobile-menu a:hover { color: #B98C4A !important; background: #F3EEE3; }
  .wta-mobile-menu .wta-mobile-phone { color: #6B655C !important; font-size: 13px; letter-spacing: 1px; }
  .wta-mobile-menu .wta-mobile-book {
    background: #D4A24A !important; color: #2A2622 !important; text-align: center;
    font-weight: 600; border-bottom: 0; margin: 8px 0 0;
  }

  /* --- Timeline: keep dot + content side-by-side so the vertical line stays
         in the dot gutter and does NOT run through the text on mobile --- */
  .wta-tl-list .elementor-inner-section > .elementor-container { flex-wrap: nowrap !important; }
  .wta-tl-list .elementor-inner-section > .elementor-container > .elementor-column:first-child {
    width: 48px !important; max-width: 48px !important; flex: 0 0 48px !important;
  }
  .wta-tl-list .elementor-inner-section > .elementor-container > .elementor-column:last-child {
    width: auto !important; flex: 1 1 auto !important; max-width: none !important;
  }

  /* --- Hero & heading overflow fixes --- */
  #wta-hero .elementor-container, .wta-hero .elementor-container { max-width: 100% !important; }
  #wta-hero .elementor-heading-title, .wta-hero .elementor-heading-title { white-space: normal !important; }
  h1, h2, h3, .elementor-heading-title { overflow-wrap: break-word; word-wrap: break-word; }
  .editorial-heading { font-size: 2rem !important; line-height: 1.15 !important; }
  img { max-width: 100%; height: auto; }
}

/* Hide the injected mobile controls on desktop */
@media (min-width: 1025px) {
  .wta-mobile-toggle, .wta-mobile-menu { display: none !important; }
}

/* ====== Hero/banner MOBILE fix (overflow + height + centering) 2026-06-10 ====== */
@media (max-width: 767px) {
  /* Banner section: smaller, tighter padding */
  .elementor-10 .elementor-element.elementor-element-5c990ae {
    padding: 48px 16px 48px 16px !important;
    min-height: auto !important;
    background-position: center center !important;
  }
  /* H1: kill fixed 818px width + huge 302px top margin -> fits screen */
  .elementor-10 .elementor-element.elementor-element-251851d {
    width: 100% !important;
    max-width: 100% !important;
    --container-widget-width: 100% !important;
    margin: 24px auto 0 auto !important;
    text-align: center !important;
  }
  .elementor-10 .elementor-element.elementor-element-251851d .elementor-heading-title {
    font-size: clamp(26px, 8.5vw, 38px) !important;
    line-height: 1.15 !important;
    word-break: break-word;
    overflow-wrap: break-word;
    padding: 0 6px;
  }
  /* Gold subtitle: shrink letter-spacing so it doesn't overflow */
  .elementor-10 .elementor-element.elementor-element-a64f000 .elementor-heading-title {
    font-size: 13px !important;
    letter-spacing: 4px !important;
  }
  /* Logo image: centered + smaller */
  .elementor-10 .elementor-element.elementor-element-925be5f {
    text-align: center !important;
  }
  .elementor-10 .elementor-element.elementor-element-925be5f img {
    width: 140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  /* Column: even side margins so content is centered */
  .elementor-10 .elementor-element.elementor-element-14044f2 > .elementor-element-populated {
    margin: 0 !important;
  }
}
@media (max-width: 480px) {
  .elementor-10 .elementor-element.elementor-element-251851d .elementor-heading-title {
    font-size: clamp(22px, 8vw, 32px) !important;
  }
  .elementor-10 .elementor-element.elementor-element-5c990ae {
    padding: 36px 14px 36px 14px !important;
  }
}
