/* ══════════════════════════════════════════════════════════════
   BLUE STAR PHARMACY — style.css
   Clinical-warm palette · Fraunces + IBM Plex Sans + Plex Mono
   ══════════════════════════════════════════════════════════════ */

/* ─────────────────────── DESIGN TOKENS ─────────────────────── */
:root {
  /* Palette */
  --navy:         #0d1f4e;   /* Deep navy — primary brand */
  --navy-mid:     #152a6e;   /* Slightly lighter navy */
  --navy-light:   #1e3a8a;
  --mint-bg:      #f0f6f5;   /* Soft mint-white background */
  --mint-light:   #e8f3f1;
  --mint-border:  #c8dedd;
  --gold:         #c9952a;   /* Amber-gold accent */
  --gold-light:   #e8b84b;
  --gold-pale:    #fdf3dc;
  --coral:        #c94040;   /* Muted coral/red for CTA */
  --coral-hover:  #a83333;
  --white:        #ffffff;
  --text-main:    #1a1a2e;
  --text-sub:     #4a5568;
  --text-muted:   #718096;

  /* Typography */
  --font-display: 'Fraunces', Georgia, serif;
  --font-sans:    'IBM Plex Sans', system-ui, sans-serif;
  --font-mono:    'IBM Plex Mono', 'Courier New', monospace;

  /* Sizing */
  --radius-sm:    0.375rem;
  --radius-md:    0.75rem;
  --radius-lg:    1.25rem;
  --radius-xl:    2rem;
  --shadow-sm:    0 1px 3px rgba(13,31,78,0.08), 0 1px 2px rgba(13,31,78,0.05);
  --shadow-md:    0 4px 16px rgba(13,31,78,0.12), 0 2px 6px rgba(13,31,78,0.08);
  --shadow-lg:    0 12px 40px rgba(13,31,78,0.18), 0 4px 16px rgba(13,31,78,0.10);
  --shadow-glow:  0 0 32px rgba(201,149,42,0.25);

  /* Layout */
  --max-width:    1200px;
  --nav-h:        72px;

  /* Transitions */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out:  cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:     160ms;
  --dur-mid:      280ms;
  --dur-slow:     480ms;
}

/* ─────────────────────── RESET & BASE ─────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden; /* prevent any child from causing horizontal scroll */
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-main);
  background-color: var(--mint-bg);
  overflow-x: hidden;
  max-width: 100%;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font-family: inherit; }

/* Focus-visible states */
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--mint-light); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 4px; }

/* ─────────────────────── UTILITY ─────────────────────── */
.mono   { font-family: var(--font-mono); }
.serif  { font-family: var(--font-display); }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top var(--dur-fast);
}
.skip-link:focus { top: 1rem; }

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }

.section-sub {
  color: var(--text-sub);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ─────────────────────── BUTTONS ─────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
  box-shadow: 0 4px 16px rgba(201, 64, 64, 0.30);
}
.btn-primary:hover {
  background: var(--coral-hover);
  border-color: var(--coral-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 64, 64, 0.38);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ─────────────────────── REVEAL ANIMATIONS ─────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur-slow) var(--ease-out),
              transform var(--dur-slow) var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════════════
   NAV
   ══════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(13, 31, 78, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--dur-mid), box-shadow var(--dur-mid);
}
.site-header.scrolled {
  background: rgba(13, 31, 78, 0.98);
  box-shadow: var(--shadow-md);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-star {
  font-size: 1.5rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px rgba(201,149,42,0.6));
  display: inline-block;
  transition: transform var(--dur-fast) var(--ease-out);
}
.nav-logo:hover .logo-star { transform: rotate(20deg) scale(1.15); }

.logo-text {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.logo-text em { font-style: italic; color: var(--gold); font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: nowrap;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-left: 0.5rem;
  transition: background var(--dur-fast), transform var(--dur-fast);
  white-space: nowrap;
}
.nav-cta:hover { background: var(--coral-hover); transform: scale(1.03); }
.nav-cta-icon { font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.hamburger-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--dur-mid) var(--ease-out), opacity var(--dur-mid);
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--navy);
    transform: translateX(100%);
    transition: transform var(--dur-mid) var(--ease-out);
    z-index: 99;
    padding: 2rem;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-link { font-size: 1.2rem; }
  .nav-cta { font-size: 1rem; padding: 0.6rem 1.5rem; }

  /* Hamburger animation */
  .nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .nav-toggle[aria-expanded="true"] .hamburger-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(135deg, var(--navy) 0%, #0a1840 50%, #0f2462 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}

/* Decorative background shapes */
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.hero-shape-1 {
  width: min(600px, 90vw); height: min(600px, 90vw);
  background: var(--navy-light);
  top: -200px; right: -200px;
  animation: pulse-slow 8s ease-in-out infinite alternate;
}
.hero-shape-2 {
  width: min(400px, 80vw); height: min(400px, 80vw);
  background: var(--gold);
  bottom: -100px; left: 5%;
  opacity: 0.08;
  animation: pulse-slow 10s ease-in-out 2s infinite alternate;
}
.hero-shape-3 {
  width: min(300px, 70vw); height: min(300px, 70vw);
  background: var(--coral);
  top: 30%; right: 10%;
  opacity: 0.06;
  animation: pulse-slow 12s ease-in-out 4s infinite alternate;
}
@keyframes pulse-slow {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.15) translate(20px, -20px); }
}

/* Star field */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 10%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 30% 70%, rgba(201,149,42,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 50%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  90%, rgba(255,255,255,0.2) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 55% 35%, rgba(201,149,42,0.4) 0%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── Rx Card ─── */
.rx-card {
  perspective: 1000px;
  width: 100%;
  max-width: 100%;
}

.rx-card-inner {
  background: linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out), box-shadow var(--dur-mid);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.rx-card-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.rx-card-inner:hover {
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: var(--shadow-lg), var(--shadow-glow), inset 0 1px 0 rgba(255,255,255,0.15);
}

.rx-card-header { text-align: center; margin-bottom: 1.25rem; }

.rx-star-badge {
  font-size: 2.2rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(201,149,42,0.8));
  display: block;
  margin-bottom: 0.5rem;
  animation: star-pulse 3s ease-in-out infinite;
}
@keyframes star-pulse {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(201,149,42,0.7)); }
  50%       { filter: drop-shadow(0 0 18px rgba(201,149,42,0.95)) drop-shadow(0 0 32px rgba(201,149,42,0.4)); }
}

.rx-pharmacy-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}
.rx-tagline {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-top: 0.25rem;
}

.rx-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  margin: 1.25rem 0;
}

.rx-body { display: flex; flex-direction: column; gap: 0.5rem; }

.rx-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.78rem;
}
.rx-label { color: rgba(255,255,255,0.45); flex-shrink: 0; }
.rx-value { color: rgba(255,255,255,0.9); text-align: right; }
.rx-highlight { color: var(--gold); font-weight: 500; }

.rx-footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.7rem;
}
.rx-address { color: rgba(255,255,255,0.55); }
.rx-phone { color: var(--gold-light); }

.rx-barcode-row {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.rx-barcode {
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255,255,255,0.6) 0px,
    rgba(255,255,255,0.6) 2px,
    transparent 2px,
    transparent 5px,
    rgba(255,255,255,0.4) 5px,
    rgba(255,255,255,0.4) 7px,
    transparent 7px,
    transparent 10px,
    rgba(255,255,255,0.7) 10px,
    rgba(255,255,255,0.7) 11px,
    transparent 11px,
    transparent 14px,
    rgba(255,255,255,0.5) 14px,
    rgba(255,255,255,0.5) 17px,
    transparent 17px,
    transparent 20px
  );
  border-radius: 2px;
  opacity: 0.4;
}
.rx-barcode-num { font-size: 0.6rem; color: rgba(255,255,255,0.3); letter-spacing: 0.3em; }

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}
.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
.scroll-label { font-size: 0.65rem; color: rgba(255,255,255,0.6); letter-spacing: 0.15em; text-transform: uppercase; }

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-visual {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-scroll-cue { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   TRUST STRIP
   ══════════════════════════════════════════════════════════════ */
.trust-strip {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
  overflow: hidden;
}
.trust-strip-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0 2rem;
  letter-spacing: 0.02em;
}
.trust-icon { color: var(--gold); font-size: 0.65rem; }
.trust-sep {
  width: 1px;
  height: 1.25rem;
  background: rgba(255,255,255,0.2);
}
@media (max-width: 640px) {
  .trust-sep { display: none; }
  .trust-item { padding: 0 1rem; }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
   ══════════════════════════════════════════════════════════════ */
.services {
  padding: 7rem 1.5rem;
  background: var(--mint-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--mint-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: transform var(--dur-mid) var(--ease-out),
              box-shadow var(--dur-mid) var(--ease-out),
              border-color var(--dur-mid);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--navy-light);
}

.service-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--navy-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-mid) var(--ease-out);
}
.service-card-accent--gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.service-card:hover .service-card-accent { transform: scaleX(1); }

.service-icon {
  font-size: 1.75rem;
  color: var(--navy-light);
  margin-bottom: 1rem;
  display: block;
  transition: color var(--dur-fast), transform var(--dur-fast);
}
.service-icon--gold { color: var(--gold); }
.service-card:hover .service-icon {
  color: var(--navy);
  transform: scale(1.1);
}
.service-card:hover .service-icon--gold { color: var(--gold); }

.service-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.service-desc {
  color: var(--text-sub);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-tag {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  background: var(--mint-light);
  color: var(--navy-mid);
  border: 1px solid var(--mint-border);
}
.service-tag--gold {
  background: var(--gold-pale);
  color: var(--gold);
  border-color: rgba(201,149,42,0.3);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
   ══════════════════════════════════════════════════════════════ */
.about {
  padding: 7rem 1.5rem;
  background: var(--white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-visual-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.about-visual-card::before {
  content: '★';
  position: absolute;
  font-size: 12rem;
  color: rgba(255,255,255,0.03);
  right: -2rem;
  bottom: -3rem;
  line-height: 1;
  pointer-events: none;
  font-family: serif;
}

.avc-stat {
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.avc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.avc-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.avc-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.about-visual-blob {
  position: absolute;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(201,149,42,0.15) 0%, transparent 70%);
  bottom: -20%;
  right: -20%;
  pointer-events: none;
}

.about-body {
  color: var(--text-sub);
  margin-bottom: 1.25rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-cta { margin-top: 0.75rem; }

@media (max-width: 860px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-text .section-title { font-size: clamp(1.8rem, 5vw, 2.5rem); }
}

/* ══════════════════════════════════════════════════════════════
   HOURS
   ══════════════════════════════════════════════════════════════ */
.hours {
  padding: 7rem 1.5rem;
  background: var(--mint-bg);
}

.hours-schedule {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--mint-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hours-row {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--mint-border);
  transition: background var(--dur-fast);
}
.hours-row:last-child { border-bottom: none; }
.hours-row:hover:not(.hours-row--header) { background: var(--mint-light); }

.hours-row--header {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hours-day {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
}
.hours-closed-row .hours-day { color: var(--text-muted); }

.hours-time {
  font-size: 0.85rem;
  color: var(--text-sub);
}

.hours-status {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  text-align: center;
}
.hours-open {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.hours-closed {
  background: rgba(201, 64, 64, 0.08);
  color: var(--coral);
  border: 1px solid rgba(201, 64, 64, 0.2);
}

.hours-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.hours-phone {
  color: var(--navy);
  font-weight: 600;
  transition: color var(--dur-fast);
}
.hours-phone:hover { color: var(--coral); }

@media (max-width: 480px) {
  .hours-row { grid-template-columns: 1fr 1fr; padding: 0.9rem 1.25rem; }
  .hours-status { display: none; }
  .hours-row--header span:last-child { display: none; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════════ */
.contact {
  padding: 7rem 1.5rem;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.contact-detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.contact-detail-value {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
}
a.contact-detail-value:hover { color: var(--coral); }
.contact-phone { color: var(--navy); font-weight: 600; }

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--mint-border);
  box-shadow: var(--shadow-sm);
}
.map-container iframe { display: block; }

/* Form */
.contact-form-wrap {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.required { color: var(--coral); }

.form-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  transition: border-color var(--dur-fast), background var(--dur-fast), box-shadow var(--dur-fast);
  width: 100%;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(201,149,42,0.25);
}
.form-input.error {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(201,64,64,0.2);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-select option { background: var(--navy); color: var(--white); }

.form-textarea { resize: vertical; min-height: 120px; }

.form-error {
  font-size: 0.75rem;
  color: var(--coral);
  font-family: var(--font-mono);
  min-height: 1rem;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  position: relative;
}

.btn-spinner {
  display: none;
  width: 18px; height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
.form-submit.loading .btn-label { opacity: 0; }
.form-submit.loading .btn-spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  margin-top: 1rem;
  color: #4ade80;
  font-size: 0.9rem;
}
.form-success[hidden] { display: none; }
.success-icon { color: var(--gold); font-size: 1.25rem; }

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .form-row { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 3rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
  font-style: italic;
  font-family: var(--font-display);
}

.footer-details {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-address {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-phone {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 500;
  transition: color var(--dur-fast);
}
.footer-phone:hover { color: var(--gold-light); }

.footer-nav {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.footer-link {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: color var(--dur-fast), background var(--dur-fast);
}
.footer-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

@media (max-width: 700px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav { justify-content: center; }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE UTILITIES
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .contact-form-wrap { padding: 1.75rem 1.25rem; }
  .about-visual-card { padding: 1.75rem; }
  .avc-num { font-size: 2.75rem; }
}

/* ══════════════════════════════════════════════════════════════
   LEGAL PAGES
   ══════════════════════════════════════════════════════════════ */
.legal-page-wrap {
  padding: calc(var(--nav-h) + 4rem) 0 6rem;
  background: var(--white);
  min-height: 80vh;
}
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}
.legal-content .section-inner {
  padding: 0 1.5rem;
}
.legal-body {
  color: var(--text-sub);
  font-size: 1.05rem;
  line-height: 1.8;
}
.legal-body h2 {
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  font-weight: 600;
}
.legal-body p {
  margin-bottom: 1.25rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal-body li {
  margin-bottom: 0.5rem;
}
.legal-body strong {
  color: var(--navy);
  font-weight: 600;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: underline;
  transition: color var(--dur-fast);
}
.footer-bottom a:hover {
  color: var(--white);
}
.footer-legal-links {
  margin-left: 0.5rem;
  opacity: 0.8;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE POLISH
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 820px) {
  /* Better Mobile Nav Overlay */
  .nav-links {
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100dvh - var(--nav-h)) !important;
    background: rgba(13, 31, 78, 0.98) !important;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-top: 1px solid rgba(255,255,255,0.08);
    
    /* Elegant fade-in animation instead of sliding */
    transform: translateY(-15px) !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s !important;
    
    justify-content: flex-start !important;
    padding-top: 8vh !important;
  }
  .nav-links.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .nav-link {
    font-size: 1.6rem !important;
    font-weight: 500;
    padding: 0.75rem 1.5rem !important;
    display: block;
    width: 100%;
    text-align: center;
  }
  .nav-cta {
    margin-top: 1.5rem;
    font-size: 1.15rem !important;
    padding: 0.85rem 2.5rem !important;
  }
}

@media (max-width: 768px) {
  /* Tighter Hero Section */
  .hero {
    min-height: auto !important;
    padding: calc(var(--nav-h) + 2.5rem) 1.25rem 4rem !important;
  }
  .hero-headline {
    font-size: clamp(2.5rem, 9vw, 3.2rem) !important;
    margin-bottom: 1rem !important;
  }
  .rx-card {
    width: 100%;
    max-width: calc(100vw - 2.5rem);
    margin: 0 auto;
  }
  .rx-card-inner {
    padding: 1.75rem 1.25rem !important;
  }
  
  /* Reduced padding for all sections to eliminate huge gaps */
  .services, .about, .hours, .contact {
    padding: 4.5rem 1.25rem !important;
  }
  .about-inner {
    gap: 3rem !important;
  }
  .contact-inner {
    gap: 3rem !important;
  }
}

@media (max-width: 480px) {
  /* Extra tight for small phones */
  .hero {
    padding-top: calc(var(--nav-h) + 1.5rem) !important;
  }
  .rx-card {
    max-width: calc(100vw - 2rem);
  }
  .services, .about, .hours, .contact {
    padding: 3.5rem 1rem !important;
  }
  .contact-form-wrap {
    padding: 2rem 1.25rem !important;
    border-radius: var(--radius-lg) !important;
  }
  .avc-stat {
    padding: 1.5rem 0 !important;
  }
  .avc-num {
    font-size: 2.8rem !important;
  }
}

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  max-width: 480px;
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  border: 1px solid rgba(255,255,255,0.1);
  transform: translateY(150%);
  transition: transform var(--dur-mid) var(--ease-out);
}
.cookie-banner.show {
  transform: translateY(0);
}
.cookie-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.6;
}
.cookie-content a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 0.75rem;
}
.cookie-actions .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}
.cookie-decline {
  border-color: rgba(255,255,255,0.3);
}

@media (max-width: 600px) {
  .cookie-banner {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
    padding: 1.25rem;
  }
}
