/* =============================================================
   Vyra — shared overrides on top of the Yogana template
   Loaded by: design1.html, about.html, services.html, services-online-yoga.html
   Order: after html/css/bootstrap.min.css and html/css/style.css
   ============================================================= */

/* ----- Vyra brand palette (sampled from updated logo)
   Green:  #1A8240  (was #5F7A33 olive) — vivid pine
   Orange: #E94E1B  (was #C97A3D amber) — vermillion ----- */
:root {
  --vyra-orange: #E94E1B;
  --vyra-orange-dark: #C8401A;
  --vyra-olive: #1A8240;          /* kept var name for ABI; value is now vivid green */
  --vyra-olive-dark: #146632;
  --vyra-ink: #2A2620;
  --vyra-cream: #FAF6EE;
  --vyra-cream-2: #F1E9D8;

  /* Coffee palette — typography */
  --coffee-deep: #3E2E1F;
  --coffee:      #5C4632;
  --coffee-muted:#7A6655;

  /* Typography */
  --font-display: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body:    "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-script:  "Alex Brush", "Cormorant Garamond", cursive;

  /* Template theme variables overridden with Vyra palette */
  --theme-color1: var(--vyra-orange);
  --theme-color2: var(--vyra-ink);
  --theme-color4: var(--vyra-olive);
  --theme-color5: var(--vyra-cream);
  --bg-theme-color1: var(--vyra-orange);
  --bg-theme-color2: var(--vyra-ink);
  --bg-theme-color4: var(--vyra-olive);
  --border-theme-color1: var(--vyra-orange);
  --border-theme-color2: var(--vyra-ink);
  --theme-color1-dark: var(--vyra-orange-dark);
  --theme-color1-rgb: 233, 78, 27;     /* new vermillion */
  --theme-color2-rgb: 42, 38, 32;
  --theme-color4-rgb: 26, 130, 64;     /* new vivid green */
  --theme-color5-rgb: 250, 246, 238;
  --sec-title-subtitle-color: var(--vyra-olive);

  /* Body font scale */
  --body-font-size: 20px;
  --body-font-weight: 500;
}

/* ----- Base typography ----- */
body {
  background: var(--vyra-cream);
  color: var(--coffee);
  font-family: var(--font-body);
  font-size: var(--body-font-size, 18px);
  font-weight: var(--body-font-weight, 500);
  line-height: 1.65;
}
p, .text, li, label, input, textarea, button, .auto-container, .footer-widget .text { font-family: var(--font-body); color: var(--coffee); }
.navigation li a, .topbar a { font-family: var(--font-body); }

h1, h2, h3, h4, h5, h6,
.sec-title h2, .sec-title h3, .sec-title .title,
.banner-section-eight .title,
.package-block-four .name,
.package-block-four .name a {
  font-family: var(--font-display);
  color: var(--coffee-deep);
  letter-spacing: -0.005em;
}

.sec-title .sub-title,
.banner-section-eight .sub-title {
  font-family: var(--font-script);
  color: var(--vyra-orange);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.1;
  display: inline-block;
  margin-bottom: 6px;
}
/* Hero subtitle reads as a script headline. Matches the template's deeper
   selector specificity ( .content-box .sub-title was overriding my old rule ). */
.banner-section-eight .content-box .sub-title,
.banner-section-eight .sub-title {
  font-size: clamp(28px, 3.2vw, 33px) !important;
  margin-bottom: 16px !important;
  line-height: 1.15 !important;
}
@media (max-width: 767px) {
  .sec-title .sub-title { font-size: clamp(20px, 5vw, 26px); }
  .banner-section-eight .content-box .sub-title,
  .banner-section-eight .sub-title {
    font-size: clamp(24px, 5.5vw, 30px) !important;
  }
}

/* (Hero is now a static .slide-item — no carousel-suppression CSS needed.) */

/* Fix z-index on hero image — the cream .round-shape disc was layering on
   top of the photo (it's position:absolute with no z-index, and the
   template's owl-carousel context used to manage stacking). Force the photo
   above the pulse ring. */
.banner-section-eight .image-column .image-box .image {
  isolation: isolate;
  position: relative;
}
.banner-section-eight .image-column .image-box .image .round-shape {
  z-index: 0;
}
.banner-section-eight .image-column .image-box .image img {
  position: relative;
  z-index: 1;
  opacity: 1 !important;
  transform: none !important;
}
/* Same defensive opacity/transform reset on the surrounding wrappers in case
   the template's .animate-* default state lingers. */
.banner-section-eight .slide-item .title-stroke-text,
.banner-section-eight .slide-item .sub-title,
.banner-section-eight .slide-item .title,
.banner-section-eight .slide-item .text,
.banner-section-eight .slide-item .btn-box {
  opacity: 1 !important;
  transform: none !important;
}

.title-stroke-text, .title-stroke-text2 {
  color: transparent;
  -webkit-text-stroke: 1px rgba(94, 70, 50, 0.08);
  opacity: 1;
}

/* ----- Buttons ----- */
.theme-btn.btn-style-one,
.theme-btn.btn-style-one:hover { background: var(--vyra-orange); border-color: var(--vyra-orange); color: #fff; }
.theme-btn.btn-style-one:hover { background: var(--vyra-orange-dark); border-color: var(--vyra-orange-dark); }
.theme-btn.btn-style-two { background: transparent; border: 1px solid var(--vyra-olive); color: var(--vyra-olive); }
.theme-btn.btn-style-two:hover { background: var(--vyra-olive); color: #fff; }

/* ----- Sticky glass header — position: fixed for guaranteed pin -----
   sticky was getting killed by the template's transforms / overflows on
   ancestors. fixed sidesteps all of that. We reserve top-padding on
   .page-wrapper so content doesn't slide under the header. */
html { overflow-x: hidden; }
body { overflow-x: hidden; }
.page-wrapper {
  overflow: visible !important;
  transform: none !important;
  perspective: none !important;
  filter: none !important;
  padding-top: 88px;              /* matches actual rendered header height */
}
@media (max-width: 991px) { .page-wrapper { padding-top: 76px; } }

.main-header {
  position: fixed !important;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
}
/* Solid one-color header — no transparency / no backdrop-filter
   (previous see-through made the section colour bleed through, which read as
   "two-tone" when scrolling past the green CTA). */
.main-header,
.main-header .header-lower {
  background: var(--vyra-cream) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(94, 70, 50, 0.10);
  box-shadow: 0 2px 24px -16px rgba(42, 38, 32, 0.08);
}
.main-header .navigation > li > a { color: var(--coffee-deep); }
.main-header .navigation > li.current > a,
.main-header .navigation > li:hover > a { color: var(--vyra-orange); }
.sticky-header .navigation > li > a { color: var(--coffee-deep); }

/* The template injects a separate .sticky-header element. Our .main-header is
   now position:fixed and self-sufficient — the template's element is dead weight
   and was creating a visible cream strip under the real header. Hide it always. */
.sticky-header,
.sticky-header.fixed-header,
.main-header .sticky-header { display: none !important; }

/* Header social icons */
.header-socials {
  display: inline-flex; gap: 10px; align-items: center;
  margin-right: 18px;
}
.header-socials a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(94, 70, 50, 0.20);
  border-radius: 50%;
  color: var(--coffee);
  background: rgba(255, 255, 255, 0.4);
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.header-socials a:hover {
  color: #fff; background: var(--vyra-orange); border-color: var(--vyra-orange);
  transform: translateY(-1px);
}
.header-socials a svg { width: 16px; height: 16px; }
@media (max-width: 767px) { .header-socials { display: none; } }

/* ----- Banner backdrops ----- */
.banner-section-eight { background: var(--vyra-cream); }
.banner-section-eight .sub-title { color: var(--vyra-olive); }
.banner-section-eight .title { color: var(--vyra-ink); }

/* ----- Yoga marquee (used in design1, optional on internal pages) ----- */
.yoga-marquee {
  --gap: clamp(2rem, 4vw, 4rem);
  display: flex; gap: var(--gap);
  overflow: hidden;
  padding-block: 32px;
  border-top: 1px solid rgba(94, 70, 50, 0.10);
  border-bottom: 1px solid rgba(94, 70, 50, 0.10);
  background: rgba(255, 255, 255, 0.4);
  position: relative;
}
.yoga-marquee__track {
  display: inline-flex; align-items: center; gap: var(--gap);
  flex-shrink: 0;
  animation: yoga-scroll 48s linear infinite;
}
.yoga-marquee:hover .yoga-marquee__track { animation-play-state: paused; }
.yoga-term {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 3rem);
  color: var(--vyra-olive-dark);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.yoga-star {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  color: var(--vyra-orange);
}
.yoga-portrait {
  width: clamp(56px, 6vw, 84px); height: clamp(56px, 6vw, 84px);
  border-radius: 50%; overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 4px 14px -8px rgba(42, 38, 32, 0.25);
  flex-shrink: 0; display: inline-block;
}
.yoga-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
@keyframes yoga-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - var(--gap))); }
}
@media (prefers-reduced-motion: reduce) {
  .yoga-marquee__track { animation: none; }
}

/* ----- Section backgrounds ----- */
.services-section13 { background: var(--vyra-cream); }
.about-section-eight { background: var(--vyra-cream); }
.about-section-eight .exp-box .title { color: var(--vyra-orange); }

/* ----- Programme video band ----- */
/* Featured programme — same layered look as the about-page "What we believe" */
.video-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  background-image: url(../../assets/images/resource/about12-1.jpg);
  background-size: cover;
  background-position: center;
}
.video-section .bg.bg-image { display: none !important; }
.video-section::before {
  content: ""; position: absolute; inset: 0;
  background: rgba(20, 102, 50, 0.82);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  z-index: 0;
}
.video-section::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(15, 80, 38, 0.45) 100%);
  z-index: 0;
  pointer-events: none;
}
.video-section .auto-container,
.video-section .container { position: relative; z-index: 1; }
.video-section .row { justify-content: center; }
.video-section .row > [class*="col-"] { flex: 0 0 100%; max-width: 880px; }
.video-section .sec-title { text-align: center; margin: 0 auto; }
.video-section .sec-title .sub-title {
  color: #F4DEB4 !important;
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(26px, 3.2vw, 40px);
  letter-spacing: 0;
  margin-bottom: 12px;
}
.video-section .sec-title h2 {
  color: #fff;
  text-align: center;
  max-width: 22ch;
  margin: 0 auto 20px;
  line-height: 1.08;
}
.video-section .sec-title .text,
.video-section .sec-title p {
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  max-width: 60ch;
  margin: 0 auto 36px;
  font-size: 17px;
  line-height: 1.65;
}
.video-section h4 { color: rgba(255,255,255,0.85); font-family: var(--font-script); font-size: clamp(22px, 2.6vw, 30px); margin: 0 14px 0 0; letter-spacing: 0; }
.video-section .info-box,
.video-section .sec-title .info-box {
  display: flex; flex-wrap: wrap;
  justify-content: center; align-items: center;
  gap: 18px 28px;
  margin-top: 8px;
}
.video-section .outer-box { display: inline-flex; align-items: center; gap: 14px; }
.video-section .play-now {
  background: var(--vyra-orange); color: #fff;
  width: 64px; height: 64px;
  box-shadow: 0 12px 32px -12px rgba(233, 78, 27, 0.6);
}
.video-section .theme-btn.btn-style-two {
  background: var(--vyra-orange);
  border: 1px solid var(--vyra-orange);
  color: #fff;
  box-shadow: 0 10px 28px -14px rgba(233, 78, 27, 0.55);
}
.video-section .theme-btn.btn-style-two:hover {
  background: var(--vyra-orange-dark);
  border-color: var(--vyra-orange-dark);
  color: #fff;
}

/* ----- Pillars / packages ----- */
.packages-section-four { background: var(--vyra-cream); }
.packages-section-four .row { align-items: stretch; }
.package-block-four { display: flex; }
.package-block-four .inner-box {
  background: #fff;
  border: 1px solid rgba(26, 130, 64, .15);
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  transition: background 320ms cubic-bezier(0.16, 1, 0.3, 1),
              border-color 320ms cubic-bezier(0.16, 1, 0.3, 1),
              transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.package-block-four .inner-box:hover {
  background: var(--vyra-olive);
  border-color: var(--vyra-olive);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px -20px rgba(26, 130, 64, 0.45);
}
.package-block-four .inner-box:hover .number,
.package-block-four .inner-box:hover .name a,
.package-block-four .inner-box:hover .text,
.package-block-four .inner-box:hover .btn-link,
.package-block-four .inner-box:hover .btn-link .btn-title,
.package-block-four .inner-box:hover .btn-link i { color: #fff; }
.package-block-four .content-box { flex: 1; display: flex; flex-direction: column; }
.package-block-four .content-box .text { flex: 1; }
.package-block-four .number {
  color: var(--vyra-orange);
  transition: color 320ms cubic-bezier(0.16, 1, 0.3, 1);
}
.package-block-four .name a { color: var(--vyra-ink); }
.package-block-four .btn-link { color: var(--vyra-olive); }

/* ----- Gallery / Testimonials / Blog ----- */
.gallery-section .gallery-block .icon { background: var(--vyra-orange); color: #fff; }
.testimonial-section.style-four { background: var(--vyra-cream); }
.testimonial-block .text { color: var(--vyra-ink); }
.testimonial-section.style-four .image-box,
.testimonial-section.style-four .image-box .image.client1,
.testimonial-section.style-four .image-box .image.client2,
.testimonial-section.style-four .image-box .image.client3,
.testimonial-section.style-four .image-box .image.client4,
.testimonial-section.style-four .image-box .image.client5 { display: none !important; }
.blog-section.style-two { background: var(--vyra-cream-2); }
.blog-block .categories a { color: var(--vyra-olive); }
.blog-block .title a:hover { color: var(--vyra-orange); }
.blog-block .image-box figure.image img,
.blog-block .inner-box:hover .image-box figure.image img {
  transform: none !important;
  transition: none !important;
}
.blog-block .image-box,
.blog-block .image-box figure.image { overflow: hidden; }

/* ----- Contact form ----- */
.contact-section-three .sec-title .sub-title { color: var(--vyra-olive); }
.contact-form-three input,
.contact-form-three textarea,
.contact-form-three select { border-color: rgba(26, 130, 64, .25); }
.contact-form-three input:focus,
.contact-form-three textarea:focus,
.contact-form-three select:focus { border-color: var(--vyra-orange); outline: none; }
.contact-form-three .vyra-phone-row {
  display: grid;
  grid-template-columns: minmax(130px, 180px) 1fr;
  gap: 10px;
}
.contact-form-three .vyra-phone-row select {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--coffee-deep);
  background: #fff;
  border: 1px solid rgba(26, 130, 64, .25);
  border-radius: 6px;
  padding: 12px 36px 12px 14px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%235C4632' stroke-width='1.6' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
@media (max-width: 599px) {
  .contact-form-three .vyra-phone-row { grid-template-columns: 1fr; }
}

/* Visible placeholders on the home contact form */
.contact-form-three input::placeholder,
.contact-form-three textarea::placeholder {
  color: rgba(94, 70, 50, 0.55) !important;
  opacity: 1 !important;
}

/* intl-tel-input fit on the home contact form */
.contact-form-three .iti { width: 100%; display: block; }
.contact-form-three .iti--separate-dial-code .iti__tel-input,
.contact-form-three input.iti__tel-input { padding-left: 96px !important; }

/* =============================================================
   INTERNAL PAGES — page-banner + sections + accents
   ============================================================= */

/* ----- Glass-orange page banner (vermillion frosted-glass) ----- */
.vyra-page-banner {
  position: relative;
  text-align: center;
  padding: clamp(28px, 5vw, 56px) 0 clamp(24px, 4vw, 40px);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%,  rgba(233, 78, 27, 0.18) 0%, rgba(233, 78, 27, 0.10) 35%, transparent 75%),
    radial-gradient(ellipse 90% 70% at 50% 100%, rgba(233, 78, 27, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, var(--vyra-cream) 0%, #FAEEE3 100%);
}
.vyra-page-banner::before {
  /* Glass blur sheet behind content */
  content: ""; position: absolute; inset: 0;
  backdrop-filter: blur(28px) saturate(140%);
  -webkit-backdrop-filter: blur(28px) saturate(140%);
  background: rgba(233, 78, 27, 0.04);
  z-index: 0;
}
.vyra-page-banner > .auto-container,
.vyra-page-banner > .container { position: relative; z-index: 2; }

/* Banner-edge botanicals */
.vyra-page-banner-leaf-l,
.vyra-page-banner-leaf-r {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: clamp(140px, 18vw, 240px);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
}
.vyra-page-banner-leaf-l { left: -40px;  transform: translateY(-50%) rotate(-12deg); }
.vyra-page-banner-leaf-r { right: -40px; transform: translateY(-50%) rotate(12deg); }
@media (max-width: 767px) { .vyra-page-banner-leaf-l, .vyra-page-banner-leaf-r { display: none; } }

.vyra-page-banner .eyebrow {
  font-family: var(--font-script);
  color: var(--vyra-orange);
  font-size: clamp(22px, 2.8vw, 32px);
  letter-spacing: 0;
  display: inline-block;
  margin-bottom: 8px;
}
.vyra-page-banner h1 {
  font-family: var(--font-display);
  color: var(--coffee-deep);
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.06;
  margin: 0 auto 20px;
  max-width: 18ch;
  letter-spacing: -0.005em;
}
.vyra-page-banner .lead {
  font-family: var(--font-body);
  color: var(--coffee);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
  max-width: 56ch;
  margin: 0 auto;
}

/* Section title block — centred, used across internal pages */
.vyra-section-title { text-align: center; max-width: 920px; margin: 0 auto 56px; }
.vyra-section-title .eyebrow {
  font-family: var(--font-script);
  color: var(--vyra-orange);
  font-size: clamp(22px, 2.4vw, 30px);
  display: inline-block;
  margin-bottom: 6px;
}
.vyra-section-title h2 {
  font-family: var(--font-display);
  color: var(--coffee-deep);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.1;
  margin: 0 auto 18px;
  max-width: 24ch;
  letter-spacing: -0.005em;
}
.vyra-section-title p {
  font-family: var(--font-body);
  color: var(--coffee);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.7;
  max-width: 62ch;
  margin: 0 auto;
}
.vyra-section-title.is-left { text-align: left; margin-inline: 0; }
.vyra-section-title.is-left h2 { margin-inline: 0; }
.vyra-section-title.is-left p  { margin-inline: 0; }

/* Generic Vyra section — very tight per repeated feedback */
.vyra-section {
  background: var(--vyra-cream);
  padding: clamp(24px, 3.5vw, 56px) 0;
  position: relative;
}
.vyra-section--soft { background: var(--vyra-cream-2); }
.vyra-section--paper { background: #fff; }

/* Yoga-bg + green glassmorphism CTA — proper glass per the example
   (backdrop-filter: blur(16px) saturate(180%) + translucent green rgba) */
.vyra-section--olive {
  position: relative; overflow: hidden;
  color: rgba(255, 255, 255, 0.95);
  padding: clamp(56px, 7vw, 96px) 0;     /* tighter than .vyra-section */
  background-image: url(../../assets/images/resource/about12-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.vyra-section--olive::before {
  /* The glass plate itself — translucent green, strong blur, hairline border */
  content: ""; position: absolute; inset: 0;
  background: rgba(26, 130, 64, 0.78);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none; z-index: 0;
}
.vyra-section--olive::after {
  /* Subtle amber accent glow centred on content */
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 50%, rgba(233, 78, 27, 0.14) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.vyra-section--olive .auto-container,
.vyra-section--olive .container { position: relative; z-index: 1; }
.vyra-section--olive h2,
.vyra-section--olive h3,
.vyra-section--olive p,
.vyra-section--olive .quote,
.vyra-section--olive .eyebrow { color: rgba(255,255,255,0.95); }
.vyra-section--olive .eyebrow { color: #F4DEB4; }

.vyra-narrow { max-width: 720px; margin-inline: auto; }
.vyra-narrow p { font-size: 19px; line-height: 1.75; color: var(--coffee); }
.vyra-narrow p + p { margin-top: 18px; }

/* Editorial pull-quote */
.vyra-pullquote {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.35;
  color: var(--vyra-olive-dark);
  text-align: center;
  max-width: 28ch;
  margin: clamp(32px, 5vw, 48px) auto;
  border: 0; padding: 0;
}
.vyra-section--olive .vyra-pullquote { color: #fff; }
.vyra-pullquote cite {
  display: block;
  font-style: normal; font-family: var(--font-script);
  font-size: clamp(20px, 2.4vw, 28px); color: var(--vyra-orange);
  margin-top: 12px;
}
.vyra-section--olive .vyra-pullquote cite { color: #F4DEB4; }

/* Founder block (about page) */
.vyra-founder-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.vyra-founder-portrait {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #fff;
  box-shadow: 0 6px 26px -16px rgba(42, 38, 32, 0.22);
}
.vyra-founder-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vyra-founder-copy h2 { margin-top: 8px; margin-bottom: 24px; max-width: 22ch; }
.vyra-founder-copy p + p { margin-top: 16px; }
.vyra-founder-copy .signature {
  margin-top: 28px;
  font-family: var(--font-script);
  font-size: clamp(28px, 3vw, 38px);
  color: var(--vyra-orange);
  line-height: 1;
}
@media (max-width: 767px) {
  .vyra-founder-grid { grid-template-columns: 1fr; }
  .vyra-founder-portrait { max-width: 420px; margin-inline: auto; }
}

/* 3-up practice / pillar cards */
.vyra-triptych {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.vyra-practice {
  background: #fff;
  border: 1px solid rgba(94, 70, 50, 0.10);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.vyra-practice:hover { transform: translateY(-3px); box-shadow: 0 14px 36px -18px rgba(42, 38, 32, 0.22); border-color: rgba(94, 70, 50, 0.18); }
.vyra-practice img.icon { width: 56px; height: 56px; margin-bottom: 24px; object-fit: contain; }
.vyra-practice h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 30px);
  color: var(--coffee-deep);
  margin: 0 0 14px;
  line-height: 1.15;
}
.vyra-practice p { font-size: 16px; line-height: 1.7; color: var(--coffee); flex: 1; }
@media (max-width: 991px) { .vyra-triptych { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* Services 9-card grid */
.vyra-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vyra-service-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(94, 70, 50, 0.10);
  border-radius: 18px;
  padding: 32px 28px 32px;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.vyra-service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 36px -18px rgba(42, 38, 32, 0.22); border-color: rgba(94, 70, 50, 0.18); }
.vyra-service-card.is-featured {
  background: var(--vyra-olive-dark); color: #F4EDDE;
  border-color: var(--vyra-olive-dark);
}
.vyra-service-card.is-featured h3,
.vyra-service-card.is-featured p { color: #F4EDDE; }
.vyra-service-card .number {
  font-family: var(--font-script);
  font-size: 26px; color: var(--vyra-orange);
  line-height: 1; margin-bottom: 14px;
}
.vyra-service-card.is-featured .number { color: #F4DEB4; }
.vyra-service-card img.icon { width: 56px; height: 56px; margin-bottom: 18px; object-fit: contain; }
.vyra-service-card.is-featured img.icon { filter: brightness(0) invert(1); }
.vyra-service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--coffee-deep);
  line-height: 1.18; margin: 0 0 10px;
}
.vyra-service-card p { font-size: 15px; line-height: 1.65; color: var(--coffee); flex: 1; }
.vyra-service-card .arrow {
  position: absolute; top: 22px; right: 22px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--vyra-ink); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease;
}
.vyra-service-card .arrow:hover { background: var(--vyra-orange); transform: rotate(-45deg); }
.vyra-service-card.is-featured .arrow { background: #F4DEB4; color: var(--vyra-ink); }
.vyra-service-card.is-featured .arrow:hover { background: var(--vyra-orange); color: #fff; }
.vyra-service-card .arrow svg { width: 14px; height: 14px; }
@media (max-width: 991px) { .vyra-services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .vyra-services-grid { grid-template-columns: 1fr; } }

/* Quick chooser band (Services page) */
.vyra-chooser {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
.vyra-chooser-form input, .vyra-chooser-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid rgba(94, 70, 50, 0.18);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-size: 16px; color: var(--coffee);
}
.vyra-chooser-form input:focus, .vyra-chooser-form textarea:focus { outline: none; border-color: var(--vyra-orange); }
@media (max-width: 767px) { .vyra-chooser { grid-template-columns: 1fr; } }

/* Benefits 2x2 grid (service-detail) */
.vyra-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.vyra-benefit {
  background: #fff;
  border: 1px solid rgba(94, 70, 50, 0.10);
  border-radius: 18px;
  padding: 32px;
}
.vyra-benefit img.icon { width: 48px; height: 48px; margin-bottom: 20px; object-fit: contain; }
.vyra-benefit h4 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px); color: var(--coffee-deep); margin: 0 0 10px; }
.vyra-benefit p { font-size: 16px; line-height: 1.7; color: var(--coffee); margin: 0; }
@media (max-width: 767px) { .vyra-benefits { grid-template-columns: 1fr; } }

/* Who-it's-for + checklist */
.vyra-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin: 0 auto; }
.vyra-list li {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(94, 70, 50, 0.10);
  list-style: none;
  font-family: var(--font-body);
  color: var(--coffee); font-size: 17px; line-height: 1.6;
}
.vyra-list li:last-child { border-bottom: 0; }
.vyra-list li .mark {
  flex-shrink: 0; width: 24px; height: 24px;
  color: var(--vyra-orange); display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; margin-top: 2px;
}

/* How it works — 3 numbered cards */
.vyra-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vyra-step {
  background: #fff;
  border: 1px solid rgba(94, 70, 50, 0.10);
  border-radius: 18px;
  padding: 36px 30px 32px;
  position: relative;
}
.vyra-step .step-num {
  font-family: var(--font-script);
  color: var(--vyra-orange);
  font-size: 38px; line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.vyra-step h4 { font-family: var(--font-display); font-size: clamp(20px, 2vw, 24px); color: var(--coffee-deep); margin: 0 0 10px; }
.vyra-step p { font-size: 16px; line-height: 1.7; color: var(--coffee); margin: 0; }
@media (max-width: 991px) { .vyra-steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* FAQ accordion */
.vyra-faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.vyra-faq {
  background: #fff;
  border: 1px solid rgba(94, 70, 50, 0.10);
  border-radius: 14px;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.vyra-faq[open] {
  background: var(--vyra-olive-dark);
  border-color: var(--vyra-olive-dark);
  color: #F4EDDE;
}
.vyra-faq[open] summary,
.vyra-faq[open] .vyra-faq-body p { color: #F4EDDE; }
.vyra-faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  font-family: var(--font-display); font-size: clamp(18px, 1.8vw, 22px);
  color: var(--coffee-deep);
}
.vyra-faq summary::-webkit-details-marker { display: none; }
.vyra-faq summary .toggle {
  flex-shrink: 0;
  width: 32px; height: 32px;
  background: var(--vyra-olive-dark); color: #fff;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .25s ease;
}
.vyra-faq[open] summary .toggle { background: #fff; color: var(--vyra-olive-dark); }
.vyra-faq .vyra-faq-body { padding: 0 24px 22px; }
.vyra-faq .vyra-faq-body p { font-size: 16px; line-height: 1.7; margin: 0; }

/* Final CTA band — neutral cream variant */
.vyra-cta-band {
  text-align: center;
  padding: clamp(56px, 8vw, 96px) 0;
}
.vyra-cta-band h2 { font-family: var(--font-display); font-size: clamp(28px, 3.6vw, 42px); color: var(--coffee-deep); margin: 0 0 16px; }
.vyra-cta-band p  { font-size: 17px; line-height: 1.7; color: var(--coffee); max-width: 52ch; margin: 0 auto 28px; }

/* =============================================================
   MINIMAL FOOTER (used by all pages)
   ============================================================= */

.vyra-minimal-footer {
  background: var(--vyra-cream);
  padding: clamp(48px, 7vw, 80px) 0 24px;
  color: var(--coffee);
}
.vyra-minimal-footer .auto-container {
  max-width: 1240px;
  padding-inline: clamp(20px, 3vw, 40px);
}
.vmf-top {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(36px, 5vw, 56px);
}
.vmf-logo img { height: 60px; width: auto; display: block; }
.vmf-nav {
  display: inline-flex; align-items: center; gap: clamp(20px, 2.4vw, 40px);
  flex-wrap: wrap;
}
.vmf-nav a {
  font-family: var(--font-body);
  font-size: 16px; color: var(--coffee);
  transition: color .2s ease;
}
.vmf-nav a:hover, .vmf-nav a.is-current { color: var(--vyra-orange); }

.vmf-mid {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.vmf-tagline p {
  font-family: var(--font-body);
  color: var(--coffee);
  font-size: 16px; line-height: 1.7; margin: 0;
}
.vmf-socials {
  display: inline-flex; gap: 14px; padding: 0; margin: 0; list-style: none;
}
.vmf-socials a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(94, 70, 50, 0.20);
  border-radius: 50%;
  color: var(--coffee);
  transition: color .25s ease, border-color .25s ease, background .25s ease, transform .25s ease;
}
.vmf-socials a:hover {
  color: #fff; background: var(--vyra-orange); border-color: var(--vyra-orange);
  transform: translateY(-1px);
}
.vmf-socials a svg { width: 16px; height: 16px; }

.vmf-rule {
  border: 0; height: 1px;
  background: rgba(94, 70, 50, 0.15);
  margin: 0 0 20px;
}
.vmf-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  font-size: 13px; color: var(--coffee-muted);
}
.vmf-legal { display: inline-flex; gap: clamp(16px, 2vw, 32px); flex-wrap: wrap; }
.vmf-legal a { color: var(--coffee-muted); transition: color .2s ease; }
.vmf-legal a:hover { color: var(--vyra-orange); }

@media (max-width: 767px) {
  .vmf-top { gap: 24px; }
  .vmf-mid { flex-direction: column; gap: 24px; }
  .vmf-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Centred variant */
.vyra-minimal-footer.is-center { text-align: center; }
.vyra-minimal-footer.is-center .auto-container { max-width: 780px; }
.vyra-minimal-footer.is-center .vmf-logo {
  display: inline-block;
  margin: 0 auto clamp(20px, 3vw, 32px);
}
.vyra-minimal-footer.is-center .vmf-logo img { height: 64px; }
.vyra-minimal-footer.is-center .vmf-tagline {
  margin: 0 auto clamp(20px, 3vw, 32px);
}
.vyra-minimal-footer.is-center .vmf-tagline p {
  text-align: center;
  color: var(--coffee);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 6px;
}
.vyra-minimal-footer.is-center .vmf-tagline-script {
  font-family: var(--font-script);
  font-size: clamp(24px, 3vw, 34px);
  color: var(--vyra-orange);
  line-height: 1.15;
  margin: 0 0 14px !important;
  letter-spacing: 0;
}
.vyra-minimal-footer.is-center .vmf-socials {
  justify-content: center;
  margin: 0 0 clamp(28px, 4vw, 40px);
}
.vyra-minimal-footer.is-center .vmf-nav {
  justify-content: center;
  gap: clamp(16px, 2.2vw, 32px);
  margin: 0 0 clamp(28px, 4vw, 40px);
  flex-wrap: wrap;
}
.vyra-minimal-footer.is-center .vmf-nav a { font-size: 15px; letter-spacing: 0.02em; }
.vyra-minimal-footer.is-center .vmf-rule { max-width: 460px; margin: 0 auto 20px; }
.vyra-minimal-footer.is-center .vmf-bottom {
  justify-content: center; flex-direction: column; gap: 10px;
}
.vyra-minimal-footer.is-center .vmf-legal { justify-content: center; }

/* Suppress the template's old footer leakage */
.main-footer .footer-bottom { display: none; }
.main-footer .widgets-section { display: none; }
.main-footer .user-links a,
.main-footer .contact-info a { color: #E9E2D2; }
.main-footer .user-links a:hover,
.main-footer .contact-info a:hover,
.main-footer .copyright-text a { color: var(--vyra-orange); }
.main-footer .social-icon a { color: #E9E2D2; }
.main-footer .social-icon a:hover { color: var(--vyra-orange); }
.main-footer .subscribe-form .theme-btn { background: var(--vyra-orange); border-color: var(--vyra-orange); }

/* ----- Logo sizing -----
   width: auto !important on every variant — without it, a global rule like
   `img { width: 100% }` squishes the logo on mobile. height controls the size. */
.logo img { max-height: 56px; height: auto; width: auto !important; }
.sticky-header .logo img { max-height: 44px; width: auto !important; }
.mobile-menu .nav-logo img { max-height: 48px; height: auto; width: auto !important; }
.main-footer .logo img { max-height: 48px; width: auto !important; filter: brightness(0) invert(1); opacity: .92; }

/* ----- Scroll-to-top ----- */
.scroll-to-top { background: var(--vyra-orange); color: #fff; }
.scroll-to-top:hover { background: var(--vyra-orange-dark); }

/* ----- Section-title figure (was icon1.png, now vyra-favicon.png) ----- */
.sec-title > figure.image { display: inline-block; margin: 0 auto 12px; }
.sec-title > figure.image img { width: 48px; height: 48px; object-fit: contain; }

/* ----- Preloader -----
   Two fixes:
   1) The favicon is ~850×850; the template caps its container at 110×110 with no
      background-size. Without `contain`, only the centre crop renders (looked like
      olive triangles = legs of the figure). Force contain.
   2) The template's preloader-hide is in script.js, which depends on a long chain
      of scripts. Internal pages don't load them all. CSS-only fallback: auto-fade
      the preloader to 0 after the page is parsed, then make it non-interactive.
      The template's JS still works on the home page; this just guarantees the
      preloader doesn't trap pages that don't run the full JS chain. */
.preloader { background-color: var(--vyra-cream); }
.preloader:after {
  background-image: url(../../assets/images/vyra-favicon.png) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}
.preloader:before { content: none !important; display: none !important; }

/* CSS-only auto-hide — kicks in ~600ms after page-load if no JS hides it */
.preloader {
  animation: vyra-preloader-hide 0s ease 0.6s forwards;
}
@keyframes vyra-preloader-hide {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

/* =============================================================
   ANIMATIONS + BOTANICALS + MAGIC UI (internal pages)
   Wired by assets/js/vyra-internal.js
   ============================================================= */

/* ----- Fixed sidebar botanical drift (hidden < 1024px) ----- */
.vyra-flora {
  position: fixed; pointer-events: none;
  z-index: 1; opacity: 0.55;
  will-change: transform;
}
.vyra-flora--l1 { left: -1vw;  top: 10vh;  width: 200px; animation: vf-orbit-a 42s linear infinite; }
.vyra-flora--l2 { left:  1vw;  top: 55vh;  width: 160px; animation: vf-orbit-b 56s linear infinite; opacity: 0.40; }
.vyra-flora--r1 { right: -1vw; top: 14vh;  width: 220px; animation: vf-orbit-c 48s linear infinite reverse; }
.vyra-flora--r2 { right:  1vw; top: 60vh;  width: 180px; animation: vf-orbit-d 62s linear infinite reverse; opacity: 0.40; }
@keyframes vf-orbit-a { 0% { transform: translate(0,0) rotate(0); } 25% { transform: translate(8px,-8px) rotate(2deg); } 50% { transform: translate(0,-16px) rotate(0); } 75% { transform: translate(-8px,-8px) rotate(-2deg); } 100% { transform: translate(0,0) rotate(0); } }
@keyframes vf-orbit-b { 0% { transform: translate(0,0) rotate(0); } 50% { transform: translate(0, 14px) rotate(-2deg); } 100% { transform: translate(0,0) rotate(0); } }
@keyframes vf-orbit-c { 0% { transform: translate(0,0) rotate(0); } 25% { transform: translate(-10px,-8px) rotate(-3deg); } 50% { transform: translate(0,-18px) rotate(0); } 75% { transform: translate(10px,-8px) rotate(3deg); } 100% { transform: translate(0,0) rotate(0); } }
@keyframes vf-orbit-d { 0% { transform: translate(0,0) rotate(0); } 50% { transform: translate(0, 18px) rotate(3deg); } 100% { transform: translate(0,0) rotate(0); } }
@media (max-width: 1023px) { .vyra-flora { display: none; } }

/* Per-section deco accents (template-pattern: divs with bg-image)
   Force position:absolute + pointer-events:none + z-index:0 so they NEVER
   participate in layout flow and never take "main html space". */
.vyra-deco, .vyra-section-deco {
  position: absolute !important;
  pointer-events: none !important;
  z-index: 0 !important;
  display: block;
}
.vyra-deco { opacity: 0.5; filter: saturate(0.9); }
@media (max-width: 767px) {
  .vyra-deco, .vyra-section-deco { display: none !important; }
}

/* Make sections positioned-relative so .vyra-deco anchors inside */
.vyra-section { z-index: 1; }
.vyra-section > .auto-container,
.vyra-section > .container { position: relative; z-index: 2; }

/* ----- Reveal classes — FULL NEUTER -----
   The template's html/css/style.css has its OWN .reveal class at line 1982 with
   `display:inline-flex; visibility:hidden; overflow:hidden` (it was for image
   masking, intended to be triggered by GSAP/wow.js which we no longer load).
   That was making our `.vyra-triptych.reveal` and `.vyra-cta-band.reveal` etc.
   invisible. Override every property aggressively. */
.reveal, .reveal-left, .reveal-right, .reveal-scale,
.reveal--d1, .reveal--d2, .reveal--d3, .reveal--d4 {
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
  overflow: visible !important;
  transform: none !important;
  transition: none !important;
  animation: none !important;
}
/* But .vyra-triptych needs to STAY display:grid not block */
.vyra-triptych.reveal,
.vyra-triptych.reveal-left,
.vyra-triptych.reveal-right,
.vyra-triptych.reveal-scale {
  display: grid !important;
}
.vyra-services-grid.reveal,
.vyra-benefits.reveal,
.vyra-steps.reveal {
  display: grid !important;
}
.vyra-faq-list.reveal,
.vyra-list.reveal {
  display: flex !important;
  flex-direction: column;
}

/* ----- MagicUI: shimmer button (on .theme-btn.btn-style-one) ----- */
.theme-btn.btn-style-one { position: relative; overflow: hidden; isolation: isolate; }
.theme-btn.btn-style-one::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(110deg,
    transparent 0%, transparent 40%,
    rgba(255, 255, 255, 0.45) 50%,
    transparent 60%, transparent 100%);
  transform: translateX(-100%);
  animation: vyra-btn-shimmer 3.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none; z-index: 1;
}
.theme-btn.btn-style-one .btn-title { position: relative; z-index: 2; }
@keyframes vyra-btn-shimmer {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* ----- MagicUI: magic-card cursor spotlight on service / benefit / practice cards ----- */
.vyra-service-card,
.vyra-benefit,
.vyra-practice,
.vyra-step,
.vyra-faq {
  isolation: isolate;
}
.vyra-service-card::before,
.vyra-benefit::before,
.vyra-practice::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle 280px at var(--mx, 50%) var(--my, 50%),
    rgba(233, 78, 27, 0.10), transparent 60%);
  opacity: 0;
  transition: opacity .35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; z-index: 1;
}
.vyra-service-card:hover::before,
.vyra-benefit:hover::before,
.vyra-practice:hover::before { opacity: 1; }
.vyra-service-card > *,
.vyra-benefit > *,
.vyra-practice > * { position: relative; z-index: 2; }

/* ----- MagicUI: shine border on key elements (founder portrait, feature image) ----- */
.vyra-shine { position: relative; isolation: isolate; border-radius: inherit; }
.vyra-shine::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: inherit; padding: 1px;
  background: conic-gradient(
    from var(--vsh-angle, 0deg),
    transparent 0deg, transparent 120deg,
    var(--vyra-orange) 170deg, var(--vyra-olive) 200deg,
    transparent 250deg, transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: vyra-shine-rot 9s linear infinite;
  pointer-events: none; z-index: 3;
}
@property --vsh-angle { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes vyra-shine-rot { to { --vsh-angle: 360deg; } }

/* ----- Footer fix: socials and nav each on their own row in the centred variant ----- */
.vyra-minimal-footer.is-center .vmf-socials,
.vyra-minimal-footer.is-center .vmf-nav {
  display: flex;        /* was inline-flex — forces block-level so they stack */
  width: 100%;
}
.vyra-minimal-footer.is-center .vmf-socials { justify-content: center; }
.vyra-minimal-footer.is-center .vmf-nav     { justify-content: center; }

/* ----- Section title block margin tight ----- */
.vyra-section .vyra-section-title { margin-bottom: clamp(20px, 3vw, 32px); }
.vyra-section .vyra-section-title h2 { max-width: 28ch; line-height: 1.12; }
.vyra-narrow p { font-size: 18px; line-height: 1.75; }
.vyra-cta-band {
  padding: clamp(32px, 4.5vw, 52px) 0;
  background: var(--vyra-cream);   /* explicit so previous section's bg doesn't bleed through */
  position: relative;               /* anchors any positioned children */
  z-index: 1;
}

/* Footer top-gap fix: bring footer flush against whatever section precedes it */
.vyra-minimal-footer { padding-top: clamp(28px, 4vw, 48px) !important; margin-top: 0; }

/* ----- Reduced-motion guards for the new animations ----- */
@media (prefers-reduced-motion: reduce) {
  .vyra-flora { display: none !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .theme-btn.btn-style-one::after { display: none; }
  .vyra-shine::before { animation: none; }
}

/* =============================================================
   NEW UNIFIED FOOTER (also defined in vyra-pages.css)
   Duplicated here so design1.html/index.html (which load this file,
   not vyra-pages.css) pick up the same dark-brown 3-column layout.
============================================================= */
.footer {
  position: relative;
  background: #3D2E20;
  color: #F1E9D8;
  padding: clamp(56px, 7vw, 88px) 0 28px;
  overflow: hidden;
  isolation: isolate;
  text-align: left;
  border-top: 0;
}
.footer-leaf {
  position: absolute;
  bottom: 0;
  width: clamp(180px, 22vw, 320px);
  height: clamp(200px, 24vw, 340px);
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.4;
  z-index: 0;
}
.footer-leaf--l {
  left: 0;
  background-position: left bottom;
  background-image: url(../../assets/images/resource/service-leaf1-1.png);
}
.footer-leaf--r {
  right: 0;
  background-position: right bottom;
  background-image: url(../../assets/images/resource/service-leaf1-2.png);
}
.footer .container,
.footer .auto-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: clamp(20px, 3.5vw, 40px);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  margin-bottom: 44px;
}
.footer-col {
  padding: 12px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}
.footer-col:first-child {
  align-items: flex-start;
  text-align: left;
  padding-left: 0;
}
.footer-col:last-child {
  border-right: 0;
  padding-right: 0;
  align-items: center;
  justify-content: center;
}

.footer-logo { display: inline-block; text-decoration: none; }
.footer-logo img {
  height: 96px;            /* +50% from 64px */
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
.footer-script {
  font-family: "Alex Brush", cursive;
  font-size: clamp(20px, 2.2vw, 26px);
  color: rgba(255, 255, 255, 0.7);
  margin: 20px 0 0;
  line-height: 1.2;
}

.footer-sprig {
  width: 89px;
  height: 70px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin: 0 auto 12px;
  background-image: url(../../assets/images/resource/flower2.png);
  /* flower2.png is dark — invert to white so it shows on the dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.footer-tagline {
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(17px, 1.6vw, 20px);
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.5;
  margin: 0;
  max-width: 22ch;
  text-align: center;
}
.footer-tagline-rule {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 18px auto 0;
}

.footer-socials {
  display: inline-flex;
  gap: 12px;
  margin-top: 22px;
  list-style: none;
  padding: 0;
}
.footer-socials li { margin: 0; }
.footer-socials a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease;
}
.footer-socials a:hover {
  background: #E94E1B;
  border-color: #E94E1B;
  color: #fff;
}
.footer-socials svg { width: 18px; height: 18px; }

.footer-col-nav { gap: 18px; }
.footer-nav-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Marcellus", Georgia, serif;
  font-size: clamp(17px, 1.6vw, 20px);
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav-row a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-nav-row a:hover,
.footer-nav-row a.is-current,
.footer-nav-row a[aria-current="page"] {
  color: #E94E1B;
}
.footer-nav-row .sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

.footer-mid-divider {
  position: relative;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 32px 0 22px;
}
.footer-mid-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  background: #3D2E20 url(../../assets/images/resource/flower4.png) center / 26px no-repeat;
  opacity: 0.85;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.footer-copy {
  font-family: "Marcellus", Georgia, serif;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Marcellus", Georgia, serif;
  font-size: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 200ms ease;
}
.footer-legal a:hover { color: #E94E1B; }
.footer-legal .sep { color: rgba(255, 255, 255, 0.3); }

@media (max-width: 991px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 32px; }
  .footer-col {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 0 0 32px;
    align-items: center;
    text-align: center;
  }
  .footer-col:first-child { align-items: center; text-align: center; padding-left: 0; }
  .footer-col:last-child { border-bottom: 0; padding-bottom: 0; }
  .footer-leaf { opacity: 0.25; }
}
@media (max-width: 599px) {
  .footer-nav-row { font-size: 16px; gap: 10px; }
  .footer-legal { font-size: 14px; }
}

/* -------------------------------------------------------------
   FLOATING WHATSAPP BUTTON (also defined in vyra-pages.css)
   Duplicated so design1.html / live/index.html pick it up.
   ------------------------------------------------------------- */
.vyra-whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.vyra-whatsapp-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px -6px rgba(0, 0, 0, 0.45);
}
.vyra-whatsapp-fab svg { width: 30px; height: 30px; }
.vyra-whatsapp-fab::before,
.vyra-whatsapp-fab::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.55);
  animation: vyra-pulse 2.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  z-index: -1;
  pointer-events: none;
}
.vyra-whatsapp-fab::after { animation-delay: 1.1s; }
@keyframes vyra-pulse {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(1.9); opacity: 0;    }
}
@media (max-width: 599px) {
  .vyra-whatsapp-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .vyra-whatsapp-fab svg { width: 26px; height: 26px; }
}

/* -------------------------------------------------------------
   HERO TWEAKS (design1.html / index.html only)
   1. Hide the single small flower decoration (.image-shape with slide3-2.png)
   2. Recolour the circular pulse from olive-gold to vermillion orange
   ------------------------------------------------------------- */
.banner-section-eight .content-box .image-shape,
.banner-section-eight .image-shape { display: none !important; }

/* Re-pulse the circle in vermillion orange */
.banner-section-eight .image-column .image-box .image .round-shape {
  -webkit-animation: vyra-round-pulse-orange 1.6s linear infinite !important;
          animation: vyra-round-pulse-orange 1.6s linear infinite !important;
}
@-webkit-keyframes vyra-round-pulse-orange {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(233, 78, 27, 0.18),
                        0 0 0 30px rgba(233, 78, 27, 0.12),
                        0 0 0 50px rgba(233, 78, 27, 0.06);
            box-shadow: 0 0 0 0 rgba(233, 78, 27, 0.18),
                        0 0 0 30px rgba(233, 78, 27, 0.12),
                        0 0 0 50px rgba(233, 78, 27, 0.06);
  }
  100% {
    -webkit-box-shadow: 0 0 0 30px rgba(233, 78, 27, 0.18),
                        0 0 0 50px rgba(233, 78, 27, 0.12),
                        0 0 0 70px rgba(233, 78, 27, 0);
            box-shadow: 0 0 0 30px rgba(233, 78, 27, 0.18),
                        0 0 0 50px rgba(233, 78, 27, 0.12),
                        0 0 0 70px rgba(233, 78, 27, 0);
  }
}
@keyframes vyra-round-pulse-orange {
  0% {
    box-shadow: 0 0 0 0 rgba(233, 78, 27, 0.18),
                0 0 0 30px rgba(233, 78, 27, 0.12),
                0 0 0 50px rgba(233, 78, 27, 0.06);
  }
  100% {
    box-shadow: 0 0 0 30px rgba(233, 78, 27, 0.18),
                0 0 0 50px rgba(233, 78, 27, 0.12),
                0 0 0 70px rgba(233, 78, 27, 0);
  }
}

/* -------------------------------------------------------------
   .service-block13 icon — 62px, dead-centred on the flower bg, vermillion
   (mirrored from vyra-pages.css so design1.html / index.html pick it up;
   needs !important to win over the template's style.css rule)
   ------------------------------------------------------------- */
.service-block13 .inner-box .thumb-icon {
  position: relative !important;
}
.service-block13 .inner-box .thumb-icon .bg {
  position: absolute !important;
  inset: 0 !important;
  background-position: center center !important;
  background-size: contain !important;
}
.service-block13 .inner-box .thumb-icon .img-icon {
  position: absolute !important;
  top: 52% !important;
  left: 43% !important;
  transform: translate(-50%, -50%) !important;
  z-index: 1 !important;
  display: block !important;
  width: 62px !important;
  height: 62px !important;
  margin: 0 !important;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(34%) sepia(79%) saturate(1959%) hue-rotate(354deg) brightness(96%) contrast(91%) !important;
  transition: transform 300ms ease, filter 300ms ease;
}
.service-block13 .inner-box:hover .thumb-icon .img-icon {
  transform: translate(-50%, -50%) scale(1.04) !important;
  filter: brightness(0) invert(1) !important;
}
/* Force green hover on home-page service cards (theme defaults to orange) */
.service-block13 .inner-box:hover .content-box {
  background-color: var(--vyra-olive) !important;
}

/* ----- User-supplied service-content text spacing ----- */
.service-block13 .inner-box .service-content .text {
  margin-bottom: 10px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

/* ----- Gallery: 20px breathing room on the sides ----- */
.gallery-section { padding-left: 20px; padding-right: 20px; }

/* =============================================================
   RESPONSIVE AUDIT — mobile fixes (home page sections)
   - Hero image was rendering with 0 height under col-stack
   - Template sections all carry 120px+ padding that's wrong on mobile
   - Card grids need tighter spacing on small screens
   ============================================================= */

/* ----- Hero image: template hides .image-column at ≤991px via display:none.
   Force it back on, lay it out, size the image proportionally. ----- */
@media (max-width: 991.98px) {
  .banner-section-eight .row {
    display: flex !important;
    flex-direction: column !important;
  }
  .banner-section-eight .image-column {
    display: block !important;            /* beat template's display: none */
    order: -1;                            /* image first, text below */
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    margin-bottom: 16px !important;
  }
  .banner-section-eight .content-box {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
    text-align: center !important;
  }
  /* Kill the desktop -145px pull + 96px top padding on the image-box.
     Use natural aspect of the 716x756 photo so the woman has headroom. */
  .banner-section-eight .image-column .image-box {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 24px 0 0 !important;        /* small top buffer so round-shape isn't clipped */
    width: 100% !important;
    max-width: 360px;
    margin-inline: auto !important;
    position: relative !important;
    overflow: visible !important;
  }
  .banner-section-eight .image-column .image-box .image {
    width: 100% !important;
    aspect-ratio: 716 / 756;             /* matches the photo's natural ratio */
    margin: 0 !important;
    position: relative !important;
    display: block !important;
  }
  /* The cream round-shape pulse — sits behind, full-bleed of the .image area */
  .banner-section-eight .image-column .image-box .image .round-shape {
    width: 100% !important;
    height: 100% !important;
    right: 0 !important;
    top: 0 !important;
    bottom: auto !important;
    left: 0 !important;
    margin: 0 auto !important;
  }
  /* The actual photo — natural width, no cropping */
  .banner-section-eight .image-column .image-box .image img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
    z-index: 2 !important;
    margin: 0 !important;
  }
  /* Kill the giant VYRA stroke watermark on mobile — it just clutters */
  .banner-section-eight .title-stroke-text { display: none !important; }
  /* Buttons SIDE BY SIDE on mobile (template stacks them by default) */
  .banner-section-eight .btn-box,
  .banner-section-eight .content-box .btn-box {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    gap: 10px !important;
    margin-top: 16px !important;
    flex-direction: row;
  }
  .banner-section-eight .btn-box .theme-btn,
  .banner-section-eight .content-box .btn-box .theme-btn {
    margin: 0 !important;
    padding: 12px 18px !important;
    font-size: 12px !important;
    flex: 0 1 auto;
  }
  .banner-section-eight .btn-box .ms-3 { margin-left: 0 !important; }
}

/* Even tighter on small phones */
@media (max-width: 575px) {
  .banner-section-eight .image-column .image-box {
    max-width: 300px;
    padding-top: 18px !important;
  }
  .banner-section-eight .btn-box .theme-btn,
  .banner-section-eight .content-box .btn-box .theme-btn {
    padding: 10px 14px !important;
    font-size: 11px !important;
  }
}

/* ----- User-supplied hero polish ----- */
@media (max-width: 575.98px) {
  .banner-section-eight .content-box {
    padding: 70px 15px 40px;
  }
}
.banner-section-eight .content-box .text {
  color: #2e2e2e;
  margin-bottom: 0;
  margin-right: -100px;
  padding-bottom: 20px;
}
/* The -100px pull is a desktop layout trick (text reaches into image area).
   On mobile it pushes the paragraph off-screen, cropping it. Zero it out. */
@media (max-width: 991.98px) {
  .banner-section-eight .content-box .text {
    margin-right: 0 !important;
  }
}

/* ============================================================
   Mobile fixes — section overlap + founder "20+" alignment
   ============================================================ */

/* Title-stroke watermarks ("VYRA" / "why vyra" / "voices") were absolutely
   positioned for desktop and bleed into the adjacent section on mobile.
   Hide them on small screens — they're decoration, not content. */
@media (max-width: 991.98px) {
  .title-stroke-text,
  .title-stroke-text2 { display: none !important; }
}

/* "20+ years of practice" block — neutralise template's
   `margin-bottom: -70px` + `margin-left: 30px` on the inner .text
   (those come from .about-section-eight .content-column .text and were
   pulling the row out of alignment). Center-align number + caption. */
.about-section-eight .exp-box {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.about-section-eight .exp-box .inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.about-section-eight .exp-box .title,
.about-section-eight .exp-box .text {
  margin: 0 !important;
  margin-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
}
.about-section-eight .exp-box .title {
  line-height: 1 !important;
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 72px);
  color: var(--vyra-orange);
}
.about-section-eight .exp-box .title span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.about-section-eight .exp-box .text {
  line-height: 1.3 !important;
  font-size: 16px !important;
  color: var(--coffee) !important;
  font-family: var(--font-body) !important;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: left;
}

/* Tighten the video-band → 4 pillars transition on mobile so the next
   section's heading doesn't visually crowd the green band's bottom edge. */
@media (max-width: 991.98px) {
  .video-section { padding-bottom: 56px !important; }
  .packages-section-four,
  .packages-section-four.pt-90 { padding-top: 48px !important; }
  /* The decorative shape on the pillars section was bouncing into the band */
  .packages-section-four .bg.bg-image { display: none !important; }
}

/* ----- Carousel dots: the template puts `.default-dots .owl-dots` at
   `position: absolute; bottom: 0; width: 100%`. They take zero flow space,
   so the section's bottom padding doesn't account for them and they
   visually float over the next section. On mobile, pull them into flow. ----- */
@media (max-width: 991.98px) {
  .testimonial-section .owl-dots,
  .testimonial-section .default-dots .owl-dots,
  .blog-section .owl-dots,
  .blog-section .default-dots .owl-dots {
    position: static !important;
    bottom: auto !important;
    left: auto !important;
    width: auto !important;
    margin: 24px 0 0 !important;
    padding: 0 !important;
  }
}
/* Kill pull-up's negative margin on mobile — it created visible slivers
   between the gallery and testimonial sections. */
@media (max-width: 991.98px) {
  .testimonial-section.style-four.pull-up { margin-top: 0 !important; }
}

/* ----- Structural fix for white strips between sections.
   The body normally renders white on browsers that default to it; on mobile
   when a section's bg doesn't cover edge-to-edge, that white shows through.
   Force the cream colour on the entire page spine so any gap shows cream. ----- */
html { background: var(--vyra-cream); }
body { background: var(--vyra-cream); }
.page-wrapper { background: var(--vyra-cream); }

/* ----- Video band: centre-align the CTA row + the Watch-a-session row ----- */
.video-section .info-box,
.video-section .sec-title .info-box {
  justify-content: center !important;
  align-items: center !important;
  gap: 18px 22px !important;
}
.video-section .outer-box {
  gap: 12px !important;
  justify-content: center;
}
.video-section .outer-box h4 { margin: 0 14px 0 0 !important; }
.video-section .play-now { margin-left: 0 !important; }

/* ----- User-supplied play button positioning ----- */
.video-section .play-now .icon,
.video-section .play-now i.fas.fa-play {
  margin-left: -11px !important;
  margin-top: -10px;
  padding-left: 0 !important;
}
.video-section .outer-box .play-now:after {
  content: "";
  border: 1px dashed #C2A74E;
  border-radius: 50%;
  bottom: 0;
  top: -18px;
  left: -19px;
  right: 0;
  position: absolute;
  width: 100px;
  height: 100px;
}

@media (max-width: 767px) {
  /* Stack on phone, keep both rows centred in the column */
  .video-section .info-box,
  .video-section .sec-title .info-box {
    flex-direction: column;
    align-items: center !important;
    gap: 16px !important;
  }
  .video-section .outer-box {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}


/* ----- Section padding: tame the template's 120px+ defaults on mobile.
   (.banner-section-eight handled separately above + via the inline style.)
   .contact-section-three handles padding on its own .outer-box; clamp
   that one separately so my section rule doesn't double-stack. ----- */
@media (max-width: 991px) {
  .services-section13,
  .about-section-eight,
  .packages-section-four,
  .gallery-section,
  .blog-section.style-two,
  .testimonial-section.style-four,
  .video-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
  .packages-section-four.pt-90 { padding-top: 56px !important; }

  /* Contact section: zero the wrapper, tighten template's outer-box 120px */
  .contact-section-three { padding: 0 !important; }
  .contact-section-three .outer-box { padding: 56px 24px !important; }
}
@media (max-width: 575px) {
  .services-section13,
  .about-section-eight,
  .packages-section-four,
  .gallery-section,
  .blog-section.style-two,
  .testimonial-section.style-four,
  .video-section {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .packages-section-four.pt-90 { padding-top: 40px !important; }

  .contact-section-three { padding: 0 !important; }
  .contact-section-three .outer-box { padding: 40px 18px !important; }
}

/* ----- Section internal headings: less top margin on mobile ----- */
@media (max-width: 767px) {
  .sec-title { margin-bottom: 24px; }
  .sec-title h2,
  .sec-title .title { font-size: clamp(28px, 8vw, 38px); }
  .sec-title .sub-title { margin-bottom: 8px; }
  .sec-title > figure.image { margin-bottom: 8px; }
  .sec-title > figure.image img { width: 36px; height: 36px; }
}

/* ----- Card grids — tighter spacing on mobile ----- */
@media (max-width: 767px) {
  /* "Why Vyra" 4 pillars — too much internal padding on mobile */
  .package-block-four { margin-bottom: 16px; }
  .package-block-four .inner-box { padding: 28px 22px; }
  .package-block-four .content-box .text { margin-bottom: 12px; }

  /* Services preview cards — gap between cards */
  .services-section13 .row [class*="col-"] { margin-bottom: 20px !important; }
  .services-section13 .row [class*="col-"]:last-child { margin-bottom: 0 !important; }
  .vyra-see-all { margin-top: 28px; }

  /* Founder section — image + copy stack tighter */
  .about-section-eight .image-box { margin-bottom: 28px; }
  .about-section-eight .exp-box { margin-top: 16px; }
}

/* ----- Yoga marquee: smaller portraits and stars on mobile ----- */
@media (max-width: 575px) {
  .yoga-marquee { padding-block: 18px; }
  .yoga-term { font-size: clamp(20px, 6vw, 28px); }
  .yoga-portrait { width: 44px; height: 44px; }
  .yoga-marquee { --gap: 1.25rem; }
}

/* ----- Gallery: stack to 1 column on small ----- */
@media (max-width: 575px) {
  .gallery-section .row,
  .gallery-section .col-xl-6 .row { row-gap: 14px; }
  .gallery-block { margin-bottom: 14px; }
}

/* ----- Testimonials carousel: tighten width on mobile ----- */
@media (max-width: 767px) {
  .testimonial-section.style-four .carousel-outer { padding-inline: 16px; }
  .testimonial-block .text { font-size: 16px; line-height: 1.55; }
  .testimonial-section .sec-title h2 { font-size: clamp(24px, 7vw, 32px); }
}

/* ----- Blog teaser: 1 col on small, smaller heading ----- */
@media (max-width: 575px) {
  .blog-section.style-two .sec-title h2 { font-size: clamp(26px, 7vw, 34px); }
}

/* ----- Contact form section: room to breathe ----- */
@media (max-width: 767px) {
  .contact-section-three .form-column { padding: 28px 20px !important; }
  .contact-section-three .sec-title h2 { font-size: clamp(24px, 7vw, 32px); }
}

/* ----- Internal page sections that may be too generous ----- */
@media (max-width: 767px) {
  .vyra-page-banner h1 { font-size: clamp(30px, 8vw, 44px); max-width: 22ch; }
  .vyra-section-title h2 { font-size: clamp(26px, 7vw, 38px); }
  .vyra-section--olive { padding: 56px 0; }
  .vyra-cta-band { padding: 40px 0; }
}

/* ----- Floating elements — keep clear of small viewport edges ----- */
@media (max-width: 575px) {
  .vyra-whatsapp-fab { bottom: 14px; right: 14px; }
  .scroll-to-top { bottom: 78px !important; right: 14px !important; }
}
