/* ============================================================
   HASTPA.COM - COMPREHENSIVE RESPONSIVE CSS
   Device classes (fluid ranges, no dead zones):
     1. Desktop 4K  : 1441px - 2560px+   (@media min-width: 1441px)
     2. Laptop L    : 1025px - 1440px    (@media 1025-1440)
     3. Laptop      : 769px  - 1024px    (@media 769-1024)
     4. Tablet      : 426px  - 768px     (@media 426-768)
     5. Mobile L    : 376px  - 425px     (@media 376-425)
     6. Mobile M    : 321px  - 375px     (@media 321-375)
     7. Mobile S    : <= 320px           (@media max-width: 320px)
   Every range is fluid: elements scale between the range edges.
   ALL sections subdivide each class into 4 equal parts (1/4 of the
   class delta per part), so values stay continuous at every part and
   class boundary. Continuous values interpolate per part; stepped or
   constant values are emitted per part with per-part values. Mobile S
   is a constant floor repeated in its 4 parts. Discrete layout states
   (grid templates, stacking, positioning) stay as class-range queries.
   Banners have no fixed heights: they grow from their content plus
   symmetric top/bottom padding - 100px 4K -> 40px MS on both page
   banners and the home banner (sections 5/6).
   Loaded after style.css and custom.css so overrides win.
   ============================================================ */

/* ============================================================
   1. GLOBAL SAFETY NET
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Guard: the mobile drawer is position:fixed inside header#navbar.
   Any filter/backdrop-filter on the header would turn it into the
   containing block for the drawer and clip it to the navbar strip. */
#navbar {
  filter: none !important;
  backdrop-filter: none !important;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

img, video, embed, object, svg {
  max-width: 100%;
  height: auto;
}

iframe {
  border: 0;
  max-width: 100%;
}

h1, h2, h3, h4, h5, h6, p, li, span, a, button, input, textarea, select {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* ============================================================

/* ============================================================
   2. CONTAINER WIDTHS (fluid per device class)
   Tailwind's default container caps are replaced by comfortable
   content widths for every device class.
   ============================================================ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
/* Tablet 426-768 : fluid, full width with padding */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* 4K (4 parts) */
@media (min-width: 1441px) and (max-width: 1720px) {
  .container {
    max-width: 1440px !important;
  }
  html {
    font-size: 16px !important;
  }
}
@media (min-width: 1721px) and (max-width: 2000px) {
  .container {
    max-width: 1520px !important;
  }
  html {
    font-size: 16.5px !important;
  }
}
@media (min-width: 2001px) and (max-width: 2280px) {
  .container {
    max-width: 1600px !important;
  }
  html {
    font-size: 17px !important;
  }
}
@media (min-width: 2281px) {
  .container {
    max-width: 1720px !important;
  }
  html {
    font-size: 18px !important;
  }
}

/* LL (4 parts) */
@media (min-width: 1025px) and (max-width: 1128px) {
  .container {
    max-width: 1280px !important;
  }
}
@media (min-width: 1129px) and (max-width: 1232px) {
  .container {
    max-width: 1280px !important;
  }
}
@media (min-width: 1233px) and (max-width: 1336px) {
  .container {
    max-width: 1280px !important;
  }
}
@media (min-width: 1337px) and (max-width: 1440px) {
  .container {
    max-width: 1280px !important;
  }
}

/* L (4 parts) */
@media (min-width: 769px) and (max-width: 832px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 833px) and (max-width: 896px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 897px) and (max-width: 960px) {
  .container {
    max-width: 960px !important;
  }
}
@media (min-width: 961px) and (max-width: 1024px) {
  .container {
    max-width: 960px !important;
  }
}

/* T (4 parts) */
@media (min-width: 426px) and (max-width: 511px) {
  .container {
    max-width: 100% !important;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  .container {
    max-width: 100% !important;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  .container {
    max-width: 100% !important;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  .container {
    max-width: 100% !important;
  }
}

/* ============================================================
   3. TYPOGRAPHY - FLUID SCALING PER DEVICE CLASS
   FLUID FORMULA (applies at every 1px of viewport width):
     value = BASE + RATIO x DELTA
     - Banner heights grow as width shrinks:
         calc(BASE + ((W_MAX - 100vw) / (W_MAX - W_MIN)) * DELTA)
     - Content sizes shrink as width shrinks:
         calc(BASE + ((100vw - W_MIN) / (W_MAX - W_MIN)) * DELTA)
   Every formula is continuous across class boundaries, so the
   banner changes by exactly 1px per 1px of screen-width change.
   ============================================================ */
/* Desktop 4K (1441px+) */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* page-hero h1 sizing moved to hastpa-fluid-banners.css (fluid, no @media) */
/* class-level vw-fluid headings (already fluid per 1px) */
@media (min-width: 1441px) {
  .section-title {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem) !important;
  }
  .footer-cta h2 {
    font-size: clamp(1.5rem, 2vw, 2.4rem) !important;
  }
}
@media (min-width: 1025px) and (max-width: 1440px) {
  .section-title {
    font-size: clamp(1.55rem, 2.75vw, 2.1rem) !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .section-title {
    font-size: clamp(1.45rem, 3vw, 1.85rem) !important;
  }
}
@media (min-width: 426px) and (max-width: 768px) {
  .section-title {
    font-size: clamp(1.4rem, 4vw, 1.75rem) !important;
  }
}
@media (min-width: 376px) and (max-width: 425px) {
  .section-title {
    font-size: clamp(1.3rem, 7vw, 1.55rem) !important;
  }
}
@media (min-width: 321px) and (max-width: 375px) {
  .section-title {
    font-size: clamp(1.2rem, 7vw, 1.4rem) !important;
  }
}
/* Mobile S (<=320) - constant floor, 4 parts */
@media (max-width: 80px) {
  .section-title {
    font-size: 1.15rem !important;
  }
  .page-hero .content h1 {
    font-size: 40px !important;
    line-height: 0.92;
  }
  .page-hero .content .breadcrumb {
    font-size: 0.62rem !important;
    padding: 0.55rem 0.7rem !important;
  }
}
@media (min-width: 81px) and (max-width: 160px) {
  .section-title {
    font-size: 1.15rem !important;
  }
  .page-hero .content h1 {
    font-size: 40px !important;
    line-height: 0.92;
  }
  .page-hero .content .breadcrumb {
    font-size: 0.62rem !important;
    padding: 0.55rem 0.7rem !important;
  }
}
@media (min-width: 161px) and (max-width: 240px) {
  .section-title {
    font-size: 1.15rem !important;
  }
  .page-hero .content h1 {
    font-size: 40px !important;
    line-height: 0.92;
  }
  .page-hero .content .breadcrumb {
    font-size: 0.62rem !important;
    padding: 0.55rem 0.7rem !important;
  }
}
@media (min-width: 241px) and (max-width: 320px) {
  .section-title {
    font-size: 1.15rem !important;
  }
  .page-hero .content h1 {
    font-size: 40px !important;
    line-height: 0.92;
  }
  .page-hero .content .breadcrumb {
    font-size: 0.62rem !important;
    padding: 0.55rem 0.7rem !important;
  }
}

/* Mobile-wide heading and card-title size refinements */
@media (max-width: 425px) {
  .text-xl { font-size: 1.15rem !important; }
  .text-lg { font-size: 1.05rem !important; }
  .text-2xl { font-size: 1.3rem !important; }
  .text-3xl { font-size: 1.6rem !important; }
  .text-4xl { font-size: 1.9rem !important; }
  .text-5xl { font-size: 2.5rem !important; }
  .text-6xl { font-size: 2.85rem !important; }
  .stat-number, .counter-num {
    font-size: clamp(1.75rem, 8vw, 2.4rem) !important;
  }
}

/* ============================================================

/* ============================================================
   4. NAVBAR - adjust per device class
   ============================================================ */
/* Desktop 4K (1441px+) */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* 4K (4 parts) */
@media (min-width: 1441px) and (max-width: 1720px) {
  #navbar-logo {
    height: 44px !important;
  }
  #navbar .container nav {
    font-size: 12.48px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 11.2px !important;
    padding-left: 11.2px !important;
  }
}
@media (min-width: 1721px) and (max-width: 2000px) {
  #navbar-logo {
    height: 45px !important;
  }
  #navbar .container nav {
    font-size: 12.56px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 11.6px !important;
    padding-left: 11.6px !important;
  }
}
@media (min-width: 2001px) and (max-width: 2280px) {
  #navbar-logo {
    height: 46px !important;
  }
  #navbar .container nav {
    font-size: 12.64px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }
}
@media (min-width: 2281px) {
  #navbar-logo {
    height: 47px !important;
  }
  #navbar .container nav {
    font-size: 12.72px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 12.4px !important;
    padding-left: 12.4px !important;
  }
}

/* LL (4 parts) */
@media (min-width: 1025px) and (max-width: 1128px) {
  #navbar-logo {
    height: 44px !important;
  }
  #navbar .container nav {
    font-size: 12.48px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 11.2px !important;
    padding-left: 11.2px !important;
  }
}
@media (min-width: 1129px) and (max-width: 1232px) {
  #navbar-logo {
    height: 44px !important;
  }
  #navbar .container nav {
    font-size: 12.48px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 11.2px !important;
    padding-left: 11.2px !important;
  }
}
@media (min-width: 1233px) and (max-width: 1336px) {
  #navbar-logo {
    height: 44px !important;
  }
  #navbar .container nav {
    font-size: 12.48px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 11.2px !important;
    padding-left: 11.2px !important;
  }
}
@media (min-width: 1337px) and (max-width: 1440px) {
  #navbar-logo {
    height: 44px !important;
  }
  #navbar .container nav {
    font-size: 12.48px !important;
  }
  #navbar .nav-link {
    padding-top: 8px !important;
    padding-right: 11.2px !important;
    padding-left: 11.2px !important;
  }
}

/* L (4 parts) */
@media (min-width: 769px) and (max-width: 832px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container nav {
    font-size: 10.4px !important;
  }
  #navbar .nav-link {
    padding-top: 7.2px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
}
@media (min-width: 833px) and (max-width: 896px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container nav {
    font-size: 10.4px !important;
  }
  #navbar .nav-link {
    padding-top: 7.2px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
}
@media (min-width: 897px) and (max-width: 960px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container nav {
    font-size: 10.4px !important;
  }
  #navbar .nav-link {
    padding-top: 7.2px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
}
@media (min-width: 961px) and (max-width: 1024px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container nav {
    font-size: 10.4px !important;
  }
  #navbar .nav-link {
    padding-top: 7.2px !important;
    padding-right: 8px !important;
    padding-left: 8px !important;
  }
}

/* T (4 parts) */
@media (min-width: 426px) and (max-width: 511px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 14.4px !important;
    padding-bottom: 14.4px !important;
  }
  #mobile-menu-btn {
    font-size: 24px !important;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 14.4px !important;
    padding-bottom: 14.4px !important;
  }
  #mobile-menu-btn {
    font-size: 24px !important;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 14.4px !important;
    padding-bottom: 14.4px !important;
  }
  #mobile-menu-btn {
    font-size: 24px !important;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 14.4px !important;
    padding-bottom: 14.4px !important;
  }
  #mobile-menu-btn {
    font-size: 24px !important;
  }
}

/* ML (4 parts) */
@media (min-width: 376px) and (max-width: 387px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 13.6px !important;
    padding-bottom: 13.6px !important;
  }
  #mobile-menu-btn {
    font-size: 22.4px !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 13.6px !important;
    padding-bottom: 13.6px !important;
  }
  #mobile-menu-btn {
    font-size: 22.4px !important;
  }
}
@media (min-width: 401px) and (max-width: 412px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 13.6px !important;
    padding-bottom: 13.6px !important;
  }
  #mobile-menu-btn {
    font-size: 22.4px !important;
  }
}
@media (min-width: 413px) and (max-width: 425px) {
  #navbar-logo {
    height: 36px !important;
  }
  #navbar .container {
    padding-top: 13.6px !important;
    padding-bottom: 13.6px !important;
  }
  #mobile-menu-btn {
    font-size: 22.4px !important;
  }
}

/* MM (4 parts) */
@media (min-width: 321px) and (max-width: 334px) {
  #navbar-logo {
    height: 32px !important;
  }
  #navbar .container {
    padding-top: 12.8px !important;
    padding-bottom: 12.8px !important;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  #navbar-logo {
    height: 32px !important;
  }
  #navbar .container {
    padding-top: 12.8px !important;
    padding-bottom: 12.8px !important;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  #navbar-logo {
    height: 32px !important;
  }
  #navbar .container {
    padding-top: 12.8px !important;
    padding-bottom: 12.8px !important;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  #navbar-logo {
    height: 32px !important;
  }
  #navbar .container {
    padding-top: 12.8px !important;
    padding-bottom: 12.8px !important;
  }
}

/* ============================================================
   4b. BANNER HEIGHT MODEL
   Banners have no fixed heights of their own: each banner grows
   from its inner content plus the symmetric top/bottom padding
   applied to the banner content in sections 5 and 6 (100px at
   Desktop 4K down to 40px at Mobile S, on both page banners and
   the home banner), so the banner always fits its text on every
   screen size. The content stays middle-centered via the flexbox.
   ============================================================ */

/* ============================================================

/* ============================================================
   5. PAGE HERO (inner pages) - fluid per device class
   The banner has no fixed height: it grows from its content plus
   the symmetric top/bottom padding (100px 4K -> 40px MS) applied
   to .page-hero .content, so it always fits its text. Content
   stays middle-centered (flexbox). Fonts/breadcrumb scale fluidly:
     - fonts/paddings : DECREASE as width decreases
   ============================================================ */
/* Desktop 4K (1441-2560): page banner content padding 100px top/bottom */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* 4K - page hero: min-height, h1, breadcrumb, content v-padding (4 fluid parts) */
@media (min-width: 1441px) and (max-width: 1720px) {
  .page-hero {
    min-height: 0 !important;
  }
  .page-hero .content {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .page-hero .content h1 {
    font-size: clamp(84px, calc(84px + ((100vw - 1441px) / 279px) * 7px), 91px) !important;
  }
  .page-hero .content .breadcrumb {
    font-size: clamp(12.5px, calc(12.5px + ((100vw - 1441px) / 279px) * 0.125px), 12.625px) !important;
    padding-top: clamp(13.5px, calc(13.5px + ((1720px - 100vw) / 279px) * 0.5px), 14px) !important;
    padding-bottom: clamp(13.5px, calc(13.5px + ((1720px - 100vw) / 279px) * 0.5px), 14px) !important;
    padding-left: clamp(17px, calc(17px + ((100vw - 1441px) / 279px) * 0.5px), 17.5px) !important;
    padding-right: clamp(17px, calc(17px + ((100vw - 1441px) / 279px) * 0.5px), 17.5px) !important;
  }
}
@media (min-width: 1721px) and (max-width: 2000px) {
  .page-hero {
    min-height: 0 !important;
  }
  .page-hero .content {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .page-hero .content h1 {
    font-size: clamp(91px, calc(91px + ((100vw - 1721px) / 279px) * 7px), 98px) !important;
  }
  .page-hero .content .breadcrumb {
    font-size: clamp(12.625px, calc(12.625px + ((100vw - 1721px) / 279px) * 0.125px), 12.75px) !important;
    padding-top: clamp(13px, calc(13px + ((2000px - 100vw) / 279px) * 0.5px), 13.5px) !important;
    padding-bottom: clamp(13px, calc(13px + ((2000px - 100vw) / 279px) * 0.5px), 13.5px) !important;
    padding-left: clamp(17.5px, calc(17.5px + ((100vw - 1721px) / 279px) * 0.5px), 18px) !important;
    padding-right: clamp(17.5px, calc(17.5px + ((100vw - 1721px) / 279px) * 0.5px), 18px) !important;
  }
}
@media (min-width: 2001px) and (max-width: 2280px) {
  .page-hero {
    min-height: 0 !important;
  }
  .page-hero .content {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .page-hero .content h1 {
    font-size: clamp(98px, calc(98px + ((100vw - 2001px) / 279px) * 7px), 105px) !important;
  }
  .page-hero .content .breadcrumb {
    font-size: clamp(12.75px, calc(12.75px + ((100vw - 2001px) / 279px) * 0.125px), 12.875px) !important;
    padding-top: clamp(12.5px, calc(12.5px + ((2280px - 100vw) / 279px) * 0.5px), 13px) !important;
    padding-bottom: clamp(12.5px, calc(12.5px + ((2280px - 100vw) / 279px) * 0.5px), 13px) !important;
    padding-left: clamp(18px, calc(18px + ((100vw - 2001px) / 279px) * 0.5px), 18.5px) !important;
    padding-right: clamp(18px, calc(18px + ((100vw - 2001px) / 279px) * 0.5px), 18.5px) !important;
  }
}
@media (min-width: 2281px) {
  .page-hero {
    min-height: 0 !important;
  }
  .page-hero .content {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .page-hero .content h1 {
    font-size: clamp(105px, calc(105px + ((100vw - 2281px) / 279px) * 7px), 112px) !important;
  }
  .page-hero .content .breadcrumb {
    font-size: clamp(12.875px, calc(12.875px + ((100vw - 2281px) / 279px) * 0.125px), 13px) !important;
    padding-top: clamp(12px, calc(12px + ((2560px - 100vw) / 279px) * 0.5px), 12.5px) !important;
    padding-bottom: clamp(12px, calc(12px + ((2560px - 100vw) / 279px) * 0.5px), 12.5px) !important;
    padding-left: clamp(18.5px, calc(18.5px + ((100vw - 2281px) / 279px) * 0.5px), 19px) !important;
    padding-right: clamp(18.5px, calc(18.5px + ((100vw - 2281px) / 279px) * 0.5px), 19px) !important;
  }
}
/* LL - page hero: min-height, h1, breadcrumb, content v-padding (4 fluid parts) */
@media (min-width: 1025px) and (max-width: 1128px) {
  .page-hero {
    min-height: 0 !important;
  }
  .page-hero .content {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .page-hero .content h1 {
    font-size: clamp(70px, calc(70px + ((100vw - 1025px) / 103px) * 3.5px), 73.5px) !important;
  }
  .page-hero .content .breadcrumb {
    font-size: clamp(12px, calc(12px + ((100vw - 1025px) / 103px) * 0.125px), 12.125px) !important;
    padding-top: clamp(11.875px, calc(11.875px + ((1128px - 100vw) / 103px) * 0.125px), 12px) !important;
    padding-bottom: clamp(11.875px, calc(11.875px + ((1128px - 100vw) / 103px) * 0.125px), 12px) !important;
    padding-left: clamp(16px, calc(16px + ((100vw - 1025px) / 103px) * 0.25px), 16.25px) !important;
    padding-right: clamp(16px, calc(16px + ((100vw - 1025px) / 103px) * 0.25px), 16.25px) !important;
  }
}
@media (min-width: 1129px) and (max-width: 1232px) {
  .page-hero {
    min-height: 0 !important;
  }
  .page-hero .content {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .page-hero .content h1 {
    font-size: clamp(73.5px, calc(73.5px + ((100vw - 1129px) / 103px) * 3.5px), 77px) !important;
  }
  .page-hero .content .breadcrumb {
    font-size: clamp(12.125px, calc(12.125px + ((100vw - 1129px) / 103px) * 0.125px), 12.25px) !important;
    padding-top: clamp(11.75px, calc(11.75px + ((1232px - 100vw) / 103px) * 0.125px), 11.875px) !important;
    padding-bottom: clamp(11.75px, calc(11.75px + ((1232px - 100vw) / 103px) * 0.125px), 11.875px) !important;
    padding-left: clamp(16.25px, calc(16.25px + ((100vw - 1129px) / 103px) * 0.25px), 16.5px) !important;
    padding-right: clamp(16.25px, calc(16.25px + ((100vw - 1129px) / 103px) * 0.25px), 16.5px) !important;
  }
}
@media (min-width: 1233px) and (max-width: 1336px) {
  .page-hero {
    min-height: 0 !important;
  }
  .page-hero .content {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .page-hero .content h1 {
/* section removed: banner sizing moved to hastpa-fluid-banners.css (fluid, no @media) */
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(116px, calc(116px + ((100vw - 2281px) / 279px) * 8px), 124px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(12.5px, calc(12.5px + ((100vw - 2281px) / 279px) * 0.5px), 13px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(22px, calc(22px + ((100vw - 2281px) / 279px) * 1px), 23px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(15.75px, calc(15.75px + ((100vw - 2281px) / 279px) * 0.25px), 16px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(15.25px, calc(15.25px + ((100vw - 2281px) / 279px) * 0.75px), 16px) !important;
  }
}

/* LL - home hero slider (4 fluid parts) */
@media (min-width: 1025px) and (max-width: 1128px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(78px, calc(78px + ((100vw - 1025px) / 103px) * 3.5px), 81.5px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10.5px, calc(10.5px + ((100vw - 1025px) / 103px) * 0.125px), 10.625px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(17px, calc(17px + ((100vw - 1025px) / 103px) * 0.5px), 17.5px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14.5px, calc(14.5px + ((100vw - 1025px) / 103px) * 0.125px), 14.625px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(12px, calc(12px + ((100vw - 1025px) / 103px) * 0.25px), 12.25px) !important;
  }
}
@media (min-width: 1129px) and (max-width: 1232px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(81.5px, calc(81.5px + ((100vw - 1129px) / 103px) * 3.5px), 85px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10.625px, calc(10.625px + ((100vw - 1129px) / 103px) * 0.125px), 10.75px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(17.5px, calc(17.5px + ((100vw - 1129px) / 103px) * 0.5px), 18px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14.625px, calc(14.625px + ((100vw - 1129px) / 103px) * 0.125px), 14.75px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(12.25px, calc(12.25px + ((100vw - 1129px) / 103px) * 0.25px), 12.5px) !important;
  }
}
@media (min-width: 1233px) and (max-width: 1336px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(85px, calc(85px + ((100vw - 1233px) / 103px) * 3.5px), 88.5px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10.75px, calc(10.75px + ((100vw - 1233px) / 103px) * 0.125px), 10.875px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(18px, calc(18px + ((100vw - 1233px) / 103px) * 0.5px), 18.5px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14.75px, calc(14.75px + ((100vw - 1233px) / 103px) * 0.125px), 14.875px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(12.5px, calc(12.5px + ((100vw - 1233px) / 103px) * 0.25px), 12.75px) !important;
  }
}
@media (min-width: 1337px) and (max-width: 1440px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(88.5px, calc(88.5px + ((100vw - 1337px) / 103px) * 3.5px), 92px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10.875px, calc(10.875px + ((100vw - 1337px) / 103px) * 0.125px), 11px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(18.5px, calc(18.5px + ((100vw - 1337px) / 103px) * 0.5px), 19px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14.875px, calc(14.875px + ((100vw - 1337px) / 103px) * 0.125px), 15px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(12.75px, calc(12.75px + ((100vw - 1337px) / 103px) * 0.25px), 13px) !important;
  }
}

/* L - home hero slider (4 fluid parts) */
@media (min-width: 769px) and (max-width: 832px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(68px, calc(68px + ((100vw - 769px) / 63px) * 2.5px), 70.5px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10px, calc(10px + ((100vw - 769px) / 63px) * 0.125px), 10.125px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(15.5px, calc(15.5px + ((100vw - 769px) / 63px) * 0.375px), 15.875px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14px, calc(14px + ((100vw - 769px) / 63px) * 0.125px), 14.125px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(11px, calc(11px + ((100vw - 769px) / 63px) * 0.25px), 11.25px) !important;
  }
}
@media (min-width: 833px) and (max-width: 896px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(70.5px, calc(70.5px + ((100vw - 833px) / 63px) * 2.5px), 73px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10.125px, calc(10.125px + ((100vw - 833px) / 63px) * 0.125px), 10.25px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(15.875px, calc(15.875px + ((100vw - 833px) / 63px) * 0.375px), 16.25px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14.125px, calc(14.125px + ((100vw - 833px) / 63px) * 0.125px), 14.25px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(11.25px, calc(11.25px + ((100vw - 833px) / 63px) * 0.25px), 11.5px) !important;
  }
}
@media (min-width: 897px) and (max-width: 960px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(73px, calc(73px + ((100vw - 897px) / 63px) * 2.5px), 75.5px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10.25px, calc(10.25px + ((100vw - 897px) / 63px) * 0.125px), 10.375px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(16.25px, calc(16.25px + ((100vw - 897px) / 63px) * 0.375px), 16.625px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14.25px, calc(14.25px + ((100vw - 897px) / 63px) * 0.125px), 14.375px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(11.5px, calc(11.5px + ((100vw - 897px) / 63px) * 0.25px), 11.75px) !important;
  }
}
@media (min-width: 961px) and (max-width: 1024px) {
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(75.5px, calc(75.5px + ((100vw - 961px) / 63px) * 2.5px), 78px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(10.375px, calc(10.375px + ((100vw - 961px) / 63px) * 0.125px), 10.5px) !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(16.625px, calc(16.625px + ((100vw - 961px) / 63px) * 0.375px), 17px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(14.375px, calc(14.375px + ((100vw - 961px) / 63px) * 0.125px), 14.5px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(11.75px, calc(11.75px + ((100vw - 961px) / 63px) * 0.25px), 12px) !important;
  }
}

/* T - home hero slider (4 fluid parts) */
@media (min-width: 426px) and (max-width: 511px) {
  .hero-slider .bg,
  .hero-slider .home-slide-bg {
    background-attachment: scroll !important;
  }
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(56px, calc(56px + ((100vw - 426px) / 85px) * 3px), 59px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(9.5px, calc(9.5px + ((100vw - 426px) / 85px) * 0.125px), 9.625px) !important;
    white-space: normal !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(14px, calc(14px + ((100vw - 426px) / 85px) * 0.375px), 14.375px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(13.5px, calc(13.5px + ((100vw - 426px) / 85px) * 0.125px), 13.625px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(10px, calc(10px + ((100vw - 426px) / 85px) * 0.25px), 10.25px) !important;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  .hero-slider .bg,
  .hero-slider .home-slide-bg {
    background-attachment: scroll !important;
  }
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(59px, calc(59px + ((100vw - 512px) / 84px) * 3px), 62px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(9.625px, calc(9.625px + ((100vw - 512px) / 84px) * 0.125px), 9.75px) !important;
    white-space: normal !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(14.375px, calc(14.375px + ((100vw - 512px) / 84px) * 0.375px), 14.75px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(13.625px, calc(13.625px + ((100vw - 512px) / 84px) * 0.125px), 13.75px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(10.25px, calc(10.25px + ((100vw - 512px) / 84px) * 0.25px), 10.5px) !important;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  .hero-slider .bg,
  .hero-slider .home-slide-bg {
    background-attachment: scroll !important;
  }
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(62px, calc(62px + ((100vw - 597px) / 85px) * 3px), 65px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(9.75px, calc(9.75px + ((100vw - 597px) / 85px) * 0.125px), 9.875px) !important;
    white-space: normal !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(14.75px, calc(14.75px + ((100vw - 597px) / 85px) * 0.375px), 15.125px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(13.75px, calc(13.75px + ((100vw - 597px) / 85px) * 0.125px), 13.875px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(10.5px, calc(10.5px + ((100vw - 597px) / 85px) * 0.25px), 10.75px) !important;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  .hero-slider .bg,
  .hero-slider .home-slide-bg {
    background-attachment: scroll !important;
  }
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 70px !important;
    padding-bottom: 70px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(65px, calc(65px + ((100vw - 683px) / 85px) * 3px), 68px) !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(9.875px, calc(9.875px + ((100vw - 683px) / 85px) * 0.125px), 10px) !important;
    white-space: normal !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(15.125px, calc(15.125px + ((100vw - 683px) / 85px) * 0.375px), 15.5px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(13.875px, calc(13.875px + ((100vw - 683px) / 85px) * 0.125px), 14px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(10.75px, calc(10.75px + ((100vw - 683px) / 85px) * 0.25px), 11px) !important;
  }
}

/* ML - home hero slider (4 fluid parts) */
@media (min-width: 376px) and (max-width: 387px) {
  .hero-slider .bg,
  .hero-slider .home-slide-bg {
    background-attachment: scroll !important;
  }
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(50px, calc(50px + ((100vw - 376px) / 11px) * 1.5px), 51.5px) !important;
    white-space: normal !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(9px, calc(9px + ((100vw - 376px) / 11px) * 0.125px), 9.125px) !important;
    white-space: normal !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(13px, calc(13px + ((100vw - 376px) / 11px) * 0.25px), 13.25px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(13px, calc(13px + ((100vw - 376px) / 11px) * 0.125px), 13.125px) !important;
  }
  .home-hero .hero-buttons {
    gap: clamp(9px, calc(9px + ((100vw - 376px) / 11px) * 0.25px), 9.25px) !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  .hero-slider .bg,
  .hero-slider .home-slide-bg {
    background-attachment: scroll !important;
  }
  .hero-slider,
  .home-hero {
    min-height: 0 !important;
  }
  .hero-slider .content,
  .home-hero .content {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  .hero-slider .content h1,
  .home-hero .content h1 {
    font-size: clamp(51.5px, calc(51.5px + ((100vw - 388px) / 12px) * 1.5px), 53px) !important;
    white-space: normal !important;
  }
  .home-hero .hero-kicker {
    font-size: clamp(9.125px, calc(9.125px + ((100vw - 388px) / 12px) * 0.125px), 9.25px) !important;
    white-space: normal !important;
  }
  .hero-slider .content .hero-subtitle,
  .home-hero .hero-subtitle {
    font-size: clamp(13.25px, calc(13.25px + ((100vw - 388px) / 12px) * 0.25px), 13.5px) !important;
  }
  .hero-slider .content .hero-desc,
  .home-hero .content .hero-desc {
    font-size: clamp(13.125px, calc(13.125px + ((100vw - 388px) / 12px) * 0.125px), 13.25px) !important;
  }
/* section removed: banner sizing moved to hastpa-fluid-banners.css (fluid, no @media) */
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: clamp(11.875px, calc(11.875px + ((100vw - 413px) / 12px) * 0.125px), 12px) !important;
    padding-top: clamp(10.375px, calc(10.375px + ((100vw - 413px) / 12px) * 0.125px), 10.5px) !important;
    padding-bottom: clamp(10.375px, calc(10.375px + ((100vw - 413px) / 12px) * 0.125px), 10.5px) !important;
    padding-left: clamp(20.75px, calc(20.75px + ((100vw - 413px) / 12px) * 0.25px), 21px) !important;
    padding-right: clamp(20.75px, calc(20.75px + ((100vw - 413px) / 12px) * 0.25px), 21px) !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
/* MM - buttons (4 fluid parts) */
@media (min-width: 321px) and (max-width: 334px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: clamp(11px, calc(11px + ((100vw - 321px) / 13px) * 0.125px), 11.125px) !important;
    padding-top: clamp(9.5px, calc(9.5px + ((100vw - 321px) / 13px) * 0.125px), 9.625px) !important;
    padding-bottom: clamp(9.5px, calc(9.5px + ((100vw - 321px) / 13px) * 0.125px), 9.625px) !important;
    padding-left: clamp(19px, calc(19px + ((100vw - 321px) / 13px) * 0.25px), 19.25px) !important;
    padding-right: clamp(19px, calc(19px + ((100vw - 321px) / 13px) * 0.25px), 19.25px) !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: clamp(11.125px, calc(11.125px + ((100vw - 335px) / 12px) * 0.125px), 11.25px) !important;
    padding-top: clamp(9.625px, calc(9.625px + ((100vw - 335px) / 12px) * 0.125px), 9.75px) !important;
    padding-bottom: clamp(9.625px, calc(9.625px + ((100vw - 335px) / 12px) * 0.125px), 9.75px) !important;
    padding-left: clamp(19.25px, calc(19.25px + ((100vw - 335px) / 12px) * 0.25px), 19.5px) !important;
    padding-right: clamp(19.25px, calc(19.25px + ((100vw - 335px) / 12px) * 0.25px), 19.5px) !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: clamp(11.25px, calc(11.25px + ((100vw - 348px) / 13px) * 0.125px), 11.375px) !important;
    padding-top: clamp(9.75px, calc(9.75px + ((100vw - 348px) / 13px) * 0.125px), 9.875px) !important;
    padding-bottom: clamp(9.75px, calc(9.75px + ((100vw - 348px) / 13px) * 0.125px), 9.875px) !important;
    padding-left: clamp(19.5px, calc(19.5px + ((100vw - 348px) / 13px) * 0.25px), 19.75px) !important;
    padding-right: clamp(19.5px, calc(19.5px + ((100vw - 348px) / 13px) * 0.25px), 19.75px) !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: clamp(11.375px, calc(11.375px + ((100vw - 362px) / 13px) * 0.125px), 11.5px) !important;
    padding-top: clamp(9.875px, calc(9.875px + ((100vw - 362px) / 13px) * 0.125px), 10px) !important;
    padding-bottom: clamp(9.875px, calc(9.875px + ((100vw - 362px) / 13px) * 0.125px), 10px) !important;
    padding-left: clamp(19.75px, calc(19.75px + ((100vw - 362px) / 13px) * 0.25px), 20px) !important;
    padding-right: clamp(19.75px, calc(19.75px + ((100vw - 362px) / 13px) * 0.25px), 20px) !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
/* Mobile S (<=320) - constant floor, 4 parts */
@media (max-width: 80px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: 10.5px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 81px) and (max-width: 160px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: 10.5px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 161px) and (max-width: 240px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: 10.5px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}
@media (min-width: 241px) and (max-width: 320px) {
  .btn-red, .btn-primary, .btn-secondary, .btn-outline {
    font-size: 10.5px !important;
    padding-top: 9px !important;
    padding-bottom: 9px !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
    min-height: 44px;
  }
  .btn-red, .btn-primary, .btn-outline, .btn-secondary {
    display: flex !important;
    width: 100% !important;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

/* Inline text-style buttons never stretch */
.flagship-event-btn,
.signature-event-btn,
.offbeat-plan-btn,
.public-mention-action,
.read-more,
.blog-filter-chip,
.blog-share-btn {
  width: auto !important;
  display: inline-flex !important;
}

/* ============================================================

/* ============================================================
   10. FORMS - fields and inputs per device class
   ============================================================ */
/* Tablet and below: 16px inputs (prevents iOS zoom), comfortable tap targets */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* T (4 parts) */
@media (min-width: 426px) and (max-width: 511px) {
  .contact-form-panel {
    padding: 28px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  .contact-form-panel {
    padding: 27px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  .contact-form-panel {
    padding: 26px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  .contact-form-panel {
    padding: 25px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
}

/* ML (4 parts) */
@media (min-width: 376px) and (max-width: 387px) {
  .contact-form-panel {
    padding: 24px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.6px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  .contact-form-panel {
    padding: 24px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.6px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}
@media (min-width: 401px) and (max-width: 412px) {
  .contact-form-panel {
    padding: 24px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.6px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}
@media (min-width: 413px) and (max-width: 425px) {
  .contact-form-panel {
    padding: 24px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.6px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}

/* MM (4 parts) */
@media (min-width: 321px) and (max-width: 334px) {
  .contact-form-panel {
    padding: 21.6px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.12px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  .contact-form-panel {
    padding: 21.6px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.12px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  .contact-form-panel {
    padding: 21.6px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.12px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  .contact-form-panel {
    padding: 21.6px !important;
  }
  .contact-form input,
  .contact-form textarea,
  .contact-form select {
    font-size: 16px !important;
    padding: 12.8px 16px !important;
    margin-bottom: 14.4px !important;
  }
  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    font-size: 15.2px;
  }
  .contact-form button[type=submit] {
    font-size: 13.12px !important;
    padding: 12.8px 16px !important;
  }
  #search-overlay .max-w-2xl {
    margin-top: 72px !important;
  }
}

/* ============================================================
   11. FOOTER - per device class
   Newsletter subscribe button keeps a compact icon-only round
   look on desktop, then reveals its label only when stacked.
   ============================================================ */
.footer-newsletter-btn-label {
  display: none;
}
/* icon-only while the button shares a line with the email field; the label
   appears only when the form stacks (button on its own line, <= 700px) */
@media (max-width: 700px) {
  .footer-newsletter-btn-label {
    display: inline;
  }
}
/* Tablet (701-708): here the footer CTA is a row but the headline takes
   nearly all the width, squeezing the button so "Plan With Us" wraps
   to two lines; reduce its text so it fits on one line */
@media (min-width: 701px) and (max-width: 708px) {
  .footer-cta .btn-red {
    font-size: 0.6875rem !important;
    flex-shrink: 0 !important;
  }
}
.footer-newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
/* Laptop (769-1024) */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* 4K (4 parts) */
@media (min-width: 1441px) and (max-width: 1720px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 24px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 41.6px !important;
  }
  .footer-logo {
    height: 64px !important;
  }
  .footer-socials a {
    width: 46px !important;
    height: 46px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 1721px) and (max-width: 2000px) {
  .site-footer {
    padding-top: 58px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 24px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 41.6px !important;
  }
  .footer-logo {
    height: 64px !important;
  }
  .footer-socials a {
    width: 46px !important;
    height: 46px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 2001px) and (max-width: 2280px) {
  .site-footer {
    padding-top: 60px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 24px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 41.6px !important;
  }
  .footer-logo {
    height: 64px !important;
  }
  .footer-socials a {
    width: 46px !important;
    height: 46px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 2281px) {
  .site-footer {
    padding-top: 62px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 24px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 41.6px !important;
  }
  .footer-logo {
    height: 64px !important;
  }
  .footer-socials a {
    width: 46px !important;
    height: 46px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}

/* LL (4 parts) */
@media (min-width: 1025px) and (max-width: 1128px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 1129px) and (max-width: 1232px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 1233px) and (max-width: 1336px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 1337px) and (max-width: 1440px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}

/* L (4 parts) */
@media (min-width: 769px) and (max-width: 832px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 833px) and (max-width: 896px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 897px) and (max-width: 960px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}
@media (min-width: 961px) and (max-width: 1024px) {
  .site-footer {
    padding-top: 56px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 21.6px !important;
    margin-bottom: 48px !important;
  }
  .footer-grid {
    gap: 28px !important;
  }
  .footer-logo {
    height: 58px !important;
  }
  .footer-newsletter {
    margin-top: 48px !important;
    padding: 20px !important;
  }
  .footer-bottom {
    margin-top: 40px !important;
  }
}

/* T (4 parts) */
@media (min-width: 426px) and (max-width: 511px) {
  .site-footer {
    padding-top: 48px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 22.4px 20px !important;
    margin-bottom: 36px !important;
  }
  .footer-grid {
    gap: 32px !important;
  }
  .footer-logo {
    height: 46px !important;
  }
  .footer-socials a {
    width: 44px !important;
    height: 44px !important;
  }
  .footer-newsletter {
    margin-top: 36px !important;
    padding: 21.6px 17.6px !important;
  }
  .footer-newsletter-form input {
    height: 50px !important;
    font-size: 16px !important;
  }
  .footer-newsletter-form button {
    height: 48px !important;
  }
  .footer-bottom {
    margin-top: 36px !important;
    padding-top: 20px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  .site-footer {
    padding-top: 48px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 22.4px 20px !important;
    margin-bottom: 36px !important;
  }
  .footer-grid {
    gap: 32px !important;
  }
  .footer-logo {
    height: 46px !important;
  }
  .footer-socials a {
    width: 44px !important;
    height: 44px !important;
  }
  .footer-newsletter {
    margin-top: 36px !important;
    padding: 21.6px 17.6px !important;
  }
  .footer-newsletter-form input {
    height: 50px !important;
    font-size: 16px !important;
  }
  .footer-newsletter-form button {
    height: 48px !important;
  }
  .footer-bottom {
    margin-top: 36px !important;
    padding-top: 20px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  .site-footer {
    padding-top: 48px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 24px 28px !important;
    margin-bottom: 36px !important;
  }
  .footer-grid {
    gap: 36px 32px !important;
  }
  .footer-logo {
    height: 46px !important;
  }
  .footer-socials a {
    width: 44px !important;
    height: 44px !important;
  }
  .footer-newsletter {
    margin-top: 36px !important;
    padding: 20px 22.4px !important;
  }
  .footer-bottom {
    margin-top: 36px !important;
    padding-top: 20px !important;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  .site-footer {
    padding-top: 48px !important;
    padding-bottom: 32px !important;
  }
  .footer-cta {
    padding: 24px 28px !important;
    margin-bottom: 36px !important;
  }
  .footer-grid {
    gap: 36px 32px !important;
  }
  .footer-logo {
    height: 46px !important;
  }
  .footer-socials a {
    width: 44px !important;
    height: 44px !important;
  }
  .footer-newsletter {
    margin-top: 36px !important;
    padding: 20px 22.4px !important;
  }
  .footer-bottom {
    margin-top: 36px !important;
    padding-top: 20px !important;
  }
}

/* ML (4 parts) */
@media (min-width: 376px) and (max-width: 387px) {
  .site-footer {
    padding-top: 40px !important;
    padding-bottom: 24px !important;
  }
  .footer-cta {
    padding: 20px 17.6px !important;
    margin-bottom: 28px !important;
  }
  .footer-grid {
    gap: 27.2px !important;
  }
  .footer-logo {
    height: 42px !important;
  }
  .footer-newsletter {
    margin-top: 28px !important;
    padding: 20px 16px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 28px !important;
    font-size: 11.52px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  .site-footer {
    padding-top: 40px !important;
    padding-bottom: 24px !important;
  }
  .footer-cta {
    padding: 20px 17.6px !important;
    margin-bottom: 28px !important;
  }
  .footer-grid {
    gap: 27.2px !important;
  }
  .footer-logo {
    height: 42px !important;
  }
  .footer-newsletter {
    margin-top: 28px !important;
    padding: 20px 16px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 28px !important;
    font-size: 11.52px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 401px) and (max-width: 412px) {
  .site-footer {
    padding-top: 40px !important;
    padding-bottom: 24px !important;
  }
  .footer-cta {
    padding: 20px 17.6px !important;
    margin-bottom: 28px !important;
  }
  .footer-grid {
    gap: 27.2px !important;
  }
  .footer-logo {
    height: 42px !important;
  }
  .footer-newsletter {
    margin-top: 28px !important;
    padding: 20px 16px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 28px !important;
    font-size: 11.52px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 413px) and (max-width: 425px) {
  .site-footer {
    padding-top: 40px !important;
    padding-bottom: 24px !important;
  }
  .footer-cta {
    padding: 20px 17.6px !important;
    margin-bottom: 28px !important;
  }
  .footer-grid {
    gap: 27.2px !important;
  }
  .footer-logo {
    height: 42px !important;
  }
  .footer-newsletter {
    margin-top: 28px !important;
    padding: 20px 16px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 28px !important;
    font-size: 11.52px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}

/* MM (4 parts) */
@media (min-width: 321px) and (max-width: 334px) {
  .site-footer {
    padding-top: 36px !important;
    padding-bottom: 20px !important;
  }
  .footer-cta {
    padding: 18.4px 16px !important;
    margin-bottom: 25.6px !important;
  }
  .footer-cta h2 {
    font-size: 22.4px !important;
  }
  .footer-grid {
    gap: 26.4px !important;
  }
  .footer-logo {
    height: 40px !important;
  }
  .footer-socials a {
    width: 42px !important;
    height: 42px !important;
  }
  .footer-socials {
    gap: 9.6px !important;
  }
  .footer-newsletter {
    margin-top: 25.6px !important;
    padding: 18.4px 15.2px !important;
  }
  .footer-newsletter p {
    font-size: 13.76px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 25.6px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  .site-footer {
    padding-top: 36px !important;
    padding-bottom: 20px !important;
  }
  .footer-cta {
    padding: 18.4px 16px !important;
    margin-bottom: 25.6px !important;
  }
  .footer-cta h2 {
    font-size: 22.4px !important;
  }
  .footer-grid {
    gap: 26.4px !important;
  }
  .footer-logo {
    height: 40px !important;
  }
  .footer-socials a {
    width: 42px !important;
    height: 42px !important;
  }
  .footer-socials {
    gap: 9.6px !important;
  }
  .footer-newsletter {
    margin-top: 25.6px !important;
    padding: 18.4px 15.2px !important;
  }
  .footer-newsletter p {
    font-size: 13.76px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 25.6px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  .site-footer {
    padding-top: 36px !important;
    padding-bottom: 20px !important;
  }
  .footer-cta {
    padding: 18.4px 16px !important;
    margin-bottom: 25.6px !important;
  }
  .footer-cta h2 {
    font-size: 22.4px !important;
  }
  .footer-grid {
    gap: 26.4px !important;
  }
  .footer-logo {
    height: 40px !important;
  }
  .footer-socials a {
    width: 42px !important;
    height: 42px !important;
  }
  .footer-socials {
    gap: 9.6px !important;
  }
  .footer-newsletter {
    margin-top: 25.6px !important;
    padding: 18.4px 15.2px !important;
  }
  .footer-newsletter p {
    font-size: 13.76px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 25.6px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  .site-footer {
    padding-top: 36px !important;
    padding-bottom: 20px !important;
  }
  .footer-cta {
    padding: 18.4px 16px !important;
    margin-bottom: 25.6px !important;
  }
  .footer-cta h2 {
    font-size: 22.4px !important;
  }
  .footer-grid {
    gap: 26.4px !important;
  }
  .footer-logo {
    height: 40px !important;
  }
  .footer-socials a {
    width: 42px !important;
    height: 42px !important;
  }
  .footer-socials {
    gap: 9.6px !important;
  }
  .footer-newsletter {
    margin-top: 25.6px !important;
    padding: 18.4px 15.2px !important;
  }
  .footer-newsletter p {
    font-size: 13.76px !important;
  }
  .footer-newsletter-form input {
    height: 46px !important;
  }
  .footer-newsletter-form button {
    height: 46px !important;
  }
  .footer-bottom {
    margin-top: 25.6px !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
    font-size: 14.08px !important;
  }
}


/* FOOTER - discrete layout states (grid templates and stacking) */
@media (min-width: 769px) and (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: minmax(230px, 1.2fr) repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
  }
  .footer-brand {
    grid-column: 1 / -1 !important;
    padding-bottom: 1.6rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .footer-brand p {
    max-width: 560px;
  }
  .footer-newsletter {
    grid-template-columns: minmax(190px, 1fr) minmax(240px, 380px) !important;
  }
}
@media (max-width: 639px) {
  .footer-cta {
    flex-direction: column !important;
    align-items: stretch !important;
    text-align: center !important;
  }
  .footer-cta .btn-red {
    width: 100% !important;
    justify-content: center;
    margin-top: 0.25rem;
  }
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  .footer-brand {
    text-align: center !important;
  }
  .footer-logo {
    margin: 0 auto 1.1rem !important;
  }
  .footer-socials {
    justify-content: center !important;
  }
  .footer-newsletter {
    grid-template-columns: 1fr !important;
    text-align: center !important;
  }
  .footer-newsletter-form {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }
  .footer-newsletter-form input {
    width: 100% !important;
    text-align: center;
  }
  .footer-newsletter-form button {
    width: 100% !important;
    border-radius: 9999px !important;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    gap: 0.55rem;
  }
  .footer-newsletter-btn-label {
    display: inline;
  }
  .footer-bottom {
    flex-direction: column !important;
  }
  .footer-contact li {
    grid-template-columns: 18px 1fr !important;
  }
}

   12. ABOUT PAGE - Journey timeline becomes a left rail on
       tablet and mobile instead of a cramped center spine
   ============================================================ */
@media (max-width: 768px) {
  .journey-timeline .timeline-line {
    left: 0.6rem !important;
    transform: none !important;
  }
  .journey-timeline .timeline-dot {
    left: 0.6rem !important;
    transform: none !important;
    width: 1rem !important;
    height: 1rem !important;
  }
  .journey-timeline .timeline-item {
    flex-direction: row !important;
    gap: 0 !important;
  }
  .journey-timeline .timeline-item > div:first-child {
    width: 100% !important;
    padding-left: 1.75rem !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
  .journey-timeline .timeline-item > div:last-child {
    display: none !important;
  }
}

/* ============================================================

/* ============================================================
   13. TEAM CARDS - header avatar scaling on small screens
   ============================================================ */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* T (4 parts) */
@media (min-width: 426px) and (max-width: 511px) {
  .team-grid {
    gap: 24px !important;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  .team-grid {
    gap: 24px !important;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  .team-grid {
    gap: 24px !important;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  .team-grid {
    gap: 24px !important;
  }
}

/* ML (4 parts) */
@media (min-width: 376px) and (max-width: 387px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 60px !important;
    height: 60px !important;
  }
  .pl-28 {
    padding-left: 92px !important;
  }
  .team-grid {
    gap: 20px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 60px !important;
    height: 60px !important;
  }
  .pl-28 {
    padding-left: 92px !important;
  }
  .team-grid {
    gap: 20px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}
@media (min-width: 401px) and (max-width: 412px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 60px !important;
    height: 60px !important;
  }
  .pl-28 {
    padding-left: 92px !important;
  }
  .team-grid {
    gap: 20px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}
@media (min-width: 413px) and (max-width: 425px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 60px !important;
    height: 60px !important;
  }
  .pl-28 {
    padding-left: 92px !important;
  }
  .team-grid {
    gap: 20px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}

/* MM (4 parts) */
@media (min-width: 321px) and (max-width: 334px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 56px !important;
    height: 56px !important;
  }
  .pl-28 {
    padding-left: 84px !important;
  }
  .team-grid {
    gap: 18.4px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 56px !important;
    height: 56px !important;
  }
  .pl-28 {
    padding-left: 84px !important;
  }
  .team-grid {
    gap: 18.4px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 56px !important;
    height: 56px !important;
  }
  .pl-28 {
    padding-left: 84px !important;
  }
  .team-grid {
    gap: 18.4px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  .bg-brand-red .absolute.h-20.w-20 {
    width: 56px !important;
    height: 56px !important;
  }
  .pl-28 {
    padding-left: 84px !important;
  }
  .team-grid {
    gap: 18.4px !important;
  }
  .team-grid > div > .relative:first-child {
    border-radius: 16px 16px 0 0 !important;
  }
}

/* ============================================================
   14. IMAGES & EMBEDS - proportionate heights on small screens
   ============================================================ */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* T (4 parts) */
@media (min-width: 426px) and (max-width: 511px) {
  .h-\[420px\] {
    height: 352px !important;
  }
  .h-\[72px\] {
    width: 64px !important;
    height: 64px !important;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  .h-\[420px\] {
    height: 352px !important;
  }
  .h-\[72px\] {
    width: 64px !important;
    height: 64px !important;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  .h-\[420px\] {
    height: 352px !important;
  }
  .h-\[72px\] {
    width: 64px !important;
    height: 64px !important;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  .h-\[420px\] {
    height: 352px !important;
  }
  .h-\[72px\] {
    width: 64px !important;
    height: 64px !important;
  }
}

/* ML (4 parts) */
@media (min-width: 376px) and (max-width: 387px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}
@media (min-width: 401px) and (max-width: 412px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}
@media (min-width: 413px) and (max-width: 425px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}

/* MM (4 parts) */
@media (min-width: 321px) and (max-width: 334px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  .h-44 {
    height: 160px !important;
  }
  .h-48 {
    height: 168px !important;
  }
  .h-52 {
    height: 184px !important;
  }
  .h-56 {
    height: 192px !important;
  }
  .h-64 {
    height: 208px !important;
  }
  .h-72 {
    height: 240px !important;
  }
  .h-80 {
    height: 256px !important;
  }
  .h-96 {
    height: 288px !important;
  }
  .h-\[380px\] {
    height: 280px !important;
  }
  .h-\[420px\] {
    height: 288px !important;
  }
  .h-\[72px\] {
    height: 60px !important;
    width: 60px !important;
  }
}

/* ============================================================
   15. FLOATING BUTTONS - safe positioning on small screens
   ============================================================ */





/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* ML (4 parts) */
@media (min-width: 376px) and (max-width: 387px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}
@media (min-width: 401px) and (max-width: 412px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}
@media (min-width: 413px) and (max-width: 425px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}

/* MM (4 parts) */
@media (min-width: 321px) and (max-width: 334px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  #whatsapp-float,
  #scroll-to-top {
    width: 40px !important;
    height: 40px !important;
  }
  #whatsapp-float {
    font-size: 18.4px !important;
  }
}


/* FLOATING BUTTONS - tight-corner positioning on very small screens */
@media (max-width: 375px) {
  #whatsapp-float,
  #scroll-to-top {
    right: 0.75rem !important;
    bottom: 1rem !important;
  }
  body.back-to-top-visible #whatsapp-float {
    transform: translateX(-3.1rem) scale(1);
  }
  body.back-to-top-visible #whatsapp-float:hover {
    transform: translateX(-3.1rem) translateY(-2px) scale(1.04);
  }
}

/* ============================================================
   16. ERROR PAGES - oversized numerals and headings are
       clamped so 404/500 layouts never overflow tiny screens
   ============================================================


/* FLUID RULES BELOW ARE PER-PART: each class range is subdivided into
   four parts and the class's total delta is split equally across its parts,
   so values stay continuous at every part and class boundary. */

/* T (4 parts) */
@media (min-width: 426px) and (max-width: 511px) {
  .min-h-screen .text-8xl {
    font-size: 80px !important;
  }
  .min-h-screen h1 {
    font-size: 30px !important;
  }
}
@media (min-width: 512px) and (max-width: 596px) {
  .min-h-screen .text-8xl {
    font-size: 80px !important;
  }
  .min-h-screen h1 {
    font-size: 30px !important;
  }
}
@media (min-width: 597px) and (max-width: 682px) {
  .min-h-screen .text-8xl {
    font-size: 80px !important;
  }
  .min-h-screen h1 {
    font-size: 30px !important;
  }
}
@media (min-width: 683px) and (max-width: 768px) {
  .min-h-screen .text-8xl {
    font-size: 80px !important;
  }
  .min-h-screen h1 {
    font-size: 30px !important;
  }
}

/* ML (4 parts) */
@media (min-width: 376px) and (max-width: 387px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}
@media (min-width: 388px) and (max-width: 400px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}
@media (min-width: 401px) and (max-width: 412px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}
@media (min-width: 413px) and (max-width: 425px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}

/* MM (4 parts) */
@media (min-width: 321px) and (max-width: 334px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}
@media (min-width: 335px) and (max-width: 347px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}
@media (min-width: 348px) and (max-width: 361px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}
@media (min-width: 362px) and (max-width: 375px) {
  .min-h-screen .text-8xl {
    font-size: 64px !important;
  }
  .min-h-screen h1 {
    font-size: 24px !important;
  }
}

   17. GLOBAL OVERFLOW PREVENTION (belt & braces)
   ============================================================ */
#page, .site, .site-content, #content, .entry-content,
.elementor-section-wrap, main#main-content {
  overflow-x: hidden;
  max-width: 100vw;
}

@media (max-width: 768px) {
  .wpr-slider-content,
  .elementor-widget-container {
    overflow-x: hidden;
  }
}

/* ============================================================
   FLUID DESKTOP/LAPTOP NAVBAR OVERLAY
   Menus scale down continuously as the viewport narrows so the
   full link set always fits on every desktop/laptop width.
   Three continuous segments: small Laptop (769-1024), Laptop L
   (1025-1120, reduced to clear the search bar), 1121-1440.
   ============================================================ */
@media (min-width: 769px) and (max-width: 1440px) {
  #navbar .container nav {
    gap: 0.3em;
  }
  #navbar .nav-link {
    padding: 0.77em 0.85em !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #navbar .container nav {
    font-size: clamp(9px, 0.353vw + 6.29px, 9.9px) !important;
  }
}
@media (min-width: 1025px) and (max-width: 1120px) {
  #navbar .container nav {
    font-size: clamp(9.9px, 1.36vw - 4.04px, 11.19px) !important;
  }
}
@media (min-width: 1121px) and (max-width: 1440px) {
  #navbar .container nav {
    font-size: clamp(11.19px, 0.405vw + 6.65px, 12.48px) !important;
  }
}
@media (min-width: 1441px) {
  #navbar .nav-link {
    padding-bottom: 8px !important;
  }
}

/* Search icon visibility: hidden on mobile, shown as an icon on
   Laptop screens (769-1024), replaced by the full search box on
   larger screens (1025+). ID rules are needed because
   #search-toggle forces display:inline-flex for touch targets. */
@media (max-width: 768px) {
  #search-toggle {
    display: none !important;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  #search-toggle {
    display: inline-flex !important;
    font-size: 15px !important;
    padding: 8px !important;
    margin: -8px !important;
  }
}
@media (min-width: 1025px) {
  #search-toggle {
    display: none !important;
  }
}

/* ============================================================
   END OF HASTPA RESPONSIVE CSS
   ============================================================ */
