/* ==============================
   Meyer Physios — Gen Z Complete CSS
   No px. Uses rem, %, vw, vh, clamp.
   Glassmorphism, neon glows, scroll reveals.
   ============================== */

:root {
  /* Colors */
  --accent-1: #00e6a8;
  /* neon green */
  --accent-2: #00bfff;
  /* electric blue */
  --accent-3: #7f5af0;
  /* purple pop (for extra flair) */
  --bg-soft: linear-gradient(135deg, #f0fbff, #effff7);
  --card-bg-glass: rgba(255, 255, 255, 0.66);
  --muted: hsl(210 14% 45%);
  --text: #071029;

  /* sizing */
  --container: 72rem;
  --radius: 1rem;
  --radius-sm: 0.6rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;

  /* shadows (use rems) */
  --shadow-soft: 0 0.6rem 1.6rem rgba(6, 12, 25, 0.08);
  --shadow-hover: 0 1.25rem 2.25rem rgba(7, 12, 30, 0.12);
  --glow-blue: 0 0 1.5rem rgba(0, 191, 255, 0.18);
  --glow-green: 0 0 1.5rem rgba(0, 230, 168, 0.18);

  /* misc */
  --glass-blur: 12px;
  --focus-ring: 0.25rem;
  --transition-fast: 220ms;
  --transition-med: 420ms;

  font-family: "Poppins", Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 100%;
  color-scheme: light;
}

/* -----------------------------
   Reset & Base
   ----------------------------- */
* {
  box-sizing: border-box;
}

html{
  scroll-behavior: smooth;
}
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg-soft);
  color: var(--text);
 display: flex;
  flex-direction: column;
  overflow-x: hidden;
}


/* Main content wrapper that will grow to push footer down */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 5vw;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Accessibility helper */
.sr-only {
  position: absolute;
  width: 0.0625rem;
  height: 0.0625rem;
  padding: 0;
  margin: -0.0625rem;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Typography */
h1,
h2,
h3,
h4 {
  margin: 0 0 0.6rem 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
}

h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
}

h3 {
  font-size: 1.125rem;
}

p {
  margin: 0 0 1rem 0;
  color: hsl(210 12% 24%);
}

.lead {
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  color: var(--muted);
}

/* -----------------------------
   Header / Nav
   ----------------------------- */
.site-main {
  flex: 1 0 auto;
}  
.site-header {
  position: sticky;
  top: 0;
  z-index: 99999;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.56));
  backdrop-filter: blur(var(--glass-blur));
  box-shadow: var(--shadow-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: calc(var(--space-sm) * 0.8) 0;
}

/* brand */
.logo {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  text-decoration: none;
}

.logo-mark {
  width: 8rem;
  height: 5rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, var(--accent-2), var(--accent-1));
  box-shadow: var(--glow-blue);
  transform-origin: center;
  
}

.logo-text {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
}

/* nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;

}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-weight: 800;
  color: var(--muted);
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
 /* Toggle button (hamburger -> X animation) */
  .nav-toggle{
    display: none; /* visible on mobile via media query */
    background: transparent;
    border: 0;
    font: inherit;
    padding: 0.4rem;
    cursor: pointer;
    border-radius: calc(var(--radius) * 0.5);
    align-items: center;
  }
  .nav-toggle .hamburger{
    width: 1.6rem;
    height: 0.12rem;
    background: currentColor;
    display: inline-block;
    position: relative;
    transition: background 180ms ease;
  }
  .nav-toggle .hamburger::before,
  .nav-toggle .hamburger::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: currentColor;
    transition: transform 220ms ease;
  }
  .nav-toggle .hamburger::before{ top: -0.45rem; }
  .nav-toggle .hamburger::after { top: 0.45rem; }

  /* when open -> morph to X */
  .nav-toggle[aria-expanded="true"] .hamburger { background: transparent; }
  .nav-toggle[aria-expanded="true"] .hamburger::before { transform: translateY(0.45rem) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .hamburger::after  { transform: translateY(-0.45rem) rotate(-45deg); }

.nav-list {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.nav-list a {
  display: inline-block;
  padding: 0.55rem 0.9rem;
  border-radius: calc(var(--radius) * 0.6);
  color: var(--muted);
  font-weight: 700;
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast), color var(--transition-fast);
}

.nav-list a:hover,
.nav-list a.active {
  transform: translateY(-0.18rem);
  color: #fff;
  background: linear-gradient(90deg, var(--accent-2), var(--accent-1));
  box-shadow: var(--glow-blue);
}

/* Mobile nav toggle visibility handled in media query */

/* -----------------------------
   Hero (big mood)
   ----------------------------- */
.hero {
  padding: var(--space-xl) 0 calc(var(--space-lg) * 0.8);
  background: linear-gradient(160deg, rgba(0, 191, 255, 0.459), rgba(0, 230, 169, 0.541));
  color: #fff;
  position: relative;
  overflow: visible;
}

/* hero layout */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
}

.hero-copy {
  max-width: 48rem;
  margin: 0;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 0 1.25rem rgba(6, 10, 20, 0.12);
}

.hero-cta {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: calc(var(--radius) * 0.75);
  padding: 0.75rem 1.1rem;
  font-weight: 800;
  cursor: pointer;
  border: 0.0625rem solid transparent;
  position: relative;
  overflow: hidden;
  /* for ripple-ish pseudo */
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast), opacity var(--transition-fast);
}

/* Primary: white pill on hero */
.btn.primary {
  background: #fff;
  color: var(--accent-2);
  box-shadow: 0 0.6rem 1.4rem rgba(68, 67, 67, 0.178);
}

.btn.primary:hover {
  transform: translateY(-0.2rem) scale(1.02);
  box-shadow: var(--glow-green);
}

/* Ghost */
.btn.ghost {
  background: transparent;
  color: #030303b6;
  border: 0.125rem solid rgba(255, 255, 255, 0.589);
}

.btn.ghost:hover {
  transform: translateY(-0.18rem);
  background: rgba(255, 255, 255, 0.12);
}

/* ripple-ish pseudo element (small micro-interaction on active) */
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0));
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: width 360ms ease, height 360ms ease, opacity 240ms ease;
}

.btn:active::after {
  width: 24rem;
  height: 24rem;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: width 260ms ease, height 260ms ease, opacity 180ms ease;
}

/* hero-media placeholder */
.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-placeholder {
  width: 100%;
  max-width: 36rem;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) * 1.05);

  box-shadow: var(--shadow-soft);
  display: flex;

  transform: translateY(0);
  animation: float 6.5s ease-in-out infinite;
}

/* decorative floating blobs in hero */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(2.6rem);
  opacity: 0.65;
  pointer-events: none;
}

.hero::before {
  width: 40vw;
  height: 40vw;
  left: -8vw;
  top: -6vw;
  background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  transform: rotate(-10deg);
}

.hero::after {
  width: 30vw;
  height: 30vw;
  right: -6vw;
  bottom: -10vw;
  background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  transform: rotate(6deg);
}



/* -----------------------------
   Sections / Grids / Cards
   ----------------------------- */
.section {
  padding: var(--space-lg) 0;
}

.section-title {
  text-align: center;
  margin-bottom: 0.25rem;
  font-weight: 800;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* card grid */
.card-grid .grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(4,1fr);
  margin-top: 1.25rem;
}

.card {
  background: var(--card-bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.card:hover {
  transform: translateY(-0.6rem) scale(1.01);
  box-shadow: var(--shadow-hover);
}

.card-media {
  border-radius: calc(var(--radius) * 0.9);
  min-height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.04));
  color: rgba(0, 0, 0, 0.35);
  font-weight: 800;
}

/* card link */
.card-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--accent-2);
}

/* split cta */
.split-cta {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.54));
  border-radius: calc(var(--radius) * 1.05);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
}

.split-inner {
  display: grid;
  grid-template-columns: 1fr minmax(18rem, 36%);
  gap: 1.25rem;
  align-items: center;
}

/* cta card */
.cta-card {
  background: linear-gradient(90deg, rgba(0, 191, 255, 0.12), rgba(0, 230, 168, 0.08));
  padding: 1rem;
  border-radius: calc(var(--radius) * 0.9);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.cta-card .big {
  font-size: clamp(1.6rem, 3.2vw, 2.25rem);
  font-weight: 900;
  color: var(--text);
}

/* -----------------------------
   Services (list style)
   ----------------------------- */
.service-list .service {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.service-list .service.reverse {
  flex-direction: row-reverse;
}

.service-media {
  flex: 0 0 14rem;
  min-height: 9rem;
  border-radius: calc(var(--radius) * 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-2), var(--accent-1));
  color: #fff;
  font-weight: 800;
}

.service-copy {
  flex: 1;
}

/* techniques grid */
.techniques-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
}

.tech {
  background: var(--card-bg-glass);
  padding: 0.9rem;
  border-radius: calc(var(--radius) * 0.85);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: transform var(--transition-fast) ease;
}

.tech:hover {
  transform: translateY(-0.4rem) scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* -----------------------------
   Team
   ----------------------------- */

/* ==============================
   Our Values — Popup Card Style
   ============================== */

.section.values {
  padding: 5rem 1rem;
  background: var(--light-gray);
  position: relative;
  z-index: 1;
}

.section.values .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section.values h2 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section.values h2::after {
  content: "";
  display: block;
  width: 4rem;
  height: 4px;
  margin: 1.2rem auto 0;
  background: var(--accent);
  border-radius: 2px;
}

/* Popup-style grid */
.section.values .grid.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

@media (max-width: 800px) {
  .section.values .grid.two-col {
    grid-template-columns: 1fr;
  }
}

/* Popup card effect */
.section.values .grid.two-col > div {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(0,0,0,0.06);
  transform: translateY(0) scale(1);
  transition: transform 300ms ease, box-shadow 300ms ease;
  position: relative;
  z-index: 1;
}

.section.values .grid.two-col > div:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.08);
  z-index: 2;
}

/* Headings inside cards */
.section.values h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

/* Text inside cards */
.section.values p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  margin: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.team-card {
  background: var(--card-bg-glass);
  padding: 1.25rem;
  border-radius: calc(var(--radius) * 0.95);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition-fast) ease;
}

.team-card:hover {
  transform: translateY(-0.45rem) rotate(-0.6deg);
  box-shadow: var(--glow-green);
}

.avatar img{
  width: 5.5rem;
  height: 7.5rem;
  border-radius: 20%;
  margin: 0 auto 0.75rem;
  background: radial-gradient(circle at 30% 20%, var(--accent-2), var(--accent-1));
  box-shadow: 0 0.6rem 1.1rem rgba(0, 0, 0, 0.08);
}

/* -----------------------------
   Contact Form
   ----------------------------- */
 .contact-inner {
  display: grid;
  gap: 1.25rem;
  align-items: start;
  grid-template-columns: repeat(2,1fr);
}

.contact-form-card {
  background: var(--card-bg-glass);
  backdrop-filter: blur(var(--glass-blur));
  padding: 1.25rem;
  border-radius: calc(var(--radius) * 0.95);
  box-shadow: var(--shadow-soft);
}

.contact-form label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border-radius: 0.8rem;
  border: 0.0625rem solid rgba(7, 12, 25, 0.06);
  background: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 0.35rem rgba(0, 191, 255, 0.12);
  transform: translateY(-0.05rem);
}

/* small form note styling */
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.6rem;
}

/* button success state (for simulated form send) */
.btn.success {
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  color: #fff;
  box-shadow: var(--glow-green);
}
/* Contact Hero Layout */
.contact-hero {
  position: relative;
  padding: 7rem 0 6rem;
  color: var(--light);
  overflow: hidden;
  
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 230, 168, 0.2),
    transparent 70%
  );
  pointer-events: none;
}
.contact-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  background: var(--bg-soft);
  clip-path: polygon(0 65%, 100% 0, 100% 100%, 0% 100%);
}




.contact-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  margin-bottom: 1rem;
  color: var(--accent-1, #01b41e);
  text-shadow: 0 0 12px rgba(0,230,168,0.3);
}

.contact-hero h1::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin-top: 0.75rem;
  background: var(--accent-1, #01ac26);
  border-radius: 2px;
}
.contact-hero .lead {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 40ch;
  line-height: 1.6;
  opacity: 1;
}

/* Contact List */
.contact-list {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-list dt {
  font-weight: 600;
  color: var(--accent);
}

.contact-list dd {
  margin: 0;
  font-size: 1rem;
  color: var(--light-gray);
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
}

.contact-list a:hover {
  text-decoration: underline;
}

.note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 1rem;
}

/* -----------------------------
   Footer - FIXED TO STAY AT BOTTOM
   ----------------------------- */
.site-footer {
  background: linear-gradient(180deg, #061026, #041421);
  color: #fff;
  padding: 1.25rem 0;
  /* Ensure footer stays at bottom */
  flex-shrink: 0;
  width: 100%;
}

.footer-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 5vw;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0.5rem;
  font-weight: 700;
}

.footer-nav a:hover {
  color: var(--accent-1);
}

/* -----------------------------
   Utilities / placeholders / images
   ----------------------------- */
.placeholder-sm,
.placeholder-lg,
.avatar,
.card-media,
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.25);
  font-weight: 800;
}

.placeholder-sm {
  min-height: 6rem;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.68));
}

.placeholder-lg {
  min-height: 12rem;
  border-radius: calc(var(--radius) * 1.05);
}

.responsive-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) * 1.02);
  object-fit: cover;
}

/* -----------------------------
   Scroll reveal helper (JS toggles .in-view)
   ----------------------------- */
.service,
.tech,
.card,
.team-card {
  opacity: 1;
  transform: translateY(1.2rem);
  transition: transform 620ms cubic-bezier(.22, .9, .3, 1), opacity 620ms ease;
  will-change: transform, opacity;
}

.in-view {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
iframe{
  width: 30rem;
}
/* -----------------------------
   Tiny responsive tweaks & mobile nav
   ----------------------------- */
@media (max-width: 576px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.25rem;
    padding-bottom: calc(var(--space-lg) * 0.25);
  }

  .header-inner {
    padding: calc(var(--space-xs) * 1.2) 0;
  }

  .main-nav {
    gap: 0.5rem;
  }


.nav-toggle { display: inline-flex; }

    .nav-list {
      /* starting hidden state */
      position: absolute;
      right: 5vw;
      top: calc(100% + 0.6rem);
      width: min(84vw, 360px);
      flex-direction: column;
      align-items: center;
      gap: 0.65rem;
      padding: 0.9rem;
      border-radius: calc(var(--radius) * 0.6);
      background: var(--bg-soft);
      backdrop-filter: blur(8px);
      box-shadow: var(--shadow-soft);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transform: translateY(-0.6rem);
      transition: max-height 320ms ease, opacity 260ms ease, transform 260ms ease;
      z-index: 999;
    }

    /* visible state only when JS adds .show */
    .nav-list.show {
      max-height: 40rem; /* generous for many items */
      opacity: 1;
      transform: translateY(0);
    }
    .split-inner {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .card-grid .grid {
    grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  }
 .service-list .service.reverse {
  flex-direction: column-reverse;
}

  .service{
    flex-direction: column;
  }
  iframe{
  width: 20rem;
}
  }


  

/* -----------------------------
   Keyframes
   ----------------------------- */
@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.6rem);
  }

  100% {
    transform: translateY(0);
  }
}


@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  50% {
    transform: scale(1.06);
    box-shadow: var(--glow-blue);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}

/* -----------------------------
Focus states — make it keyboard-friendly
----------------------------- */ 
a:focus, button:focus, input:focus, textarea:focus {
  outline: none;
  box-shadow: 0 0 0 var(--focus-ring) rgba(0, 191, 255, 0.12);
  border-radius: calc(var(--radius) * 0.6);
}

/* -----------------------------
Small helpers
----------------------------- */
.muted {
  color: var(--muted);
  font-size: 0.95rem;
}

.kicker {
  font-size: 0.85rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* End of file — vibe intact 🌿💙 */