/* ==========================================================================
   GLORIOUS CHILD SCHOOL LIMITED — THEME DESIGN SYSTEM & STYLESHEET
   Exact replica of Lovable React design tokens, layout, typography & motion.
   ========================================================================== */

/* ---------------- CSS VARIABLES & TOKENS ---------------- */
:root {
  --radius: 0.625rem;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --radius-2xl: calc(var(--radius) + 8px);
  --radius-3xl: calc(var(--radius) + 12px);
  --radius-4xl: calc(var(--radius) + 16px);

  /* Brand Colors */
  --forest: #0c9349;
  --forest-deep: #065f2c;
  --gold: #f5b700;
  --gold-soft: #fdf4cc;
  --sand: #faf9f6;
  --stone-warm: #eae7df;

  /* Semantic Colors */
  --background: #ffffff;
  --foreground: #1c2e24;
  --card: #ffffff;
  --card-foreground: #1c2e24;
  --popover: #ffffff;
  --popover-foreground: #1c2e24;
  --primary: var(--forest);
  --primary-foreground: #faf9f6;
  --secondary: var(--sand);
  --secondary-foreground: var(--forest);
  --muted: var(--sand);
  --muted-foreground: #607368;
  --accent: var(--gold);
  --accent-foreground: var(--forest-deep);
  --border: #e6e4dc;
  --input: #eceae2;
  --ring: var(--gold);

  /* Typography */
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-brand: "Montserrat", sans-serif;
}

/* ---------------- RESET & BASE ---------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border-color: var(--border);
}

html {
  font-family: var(--font-sans);
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.5;
}

main {
  flex: 1 0 auto;
}

img, svg, video, iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  font-weight: 700;
}

p {
  margin-bottom: 0;
}

ul, ol {
  list-style: none;
}

/* ---------------- TYPOGRAPHY UTILITIES ---------------- */
.font-display { font-family: var(--font-display); }
.font-sans { font-family: var(--font-sans); }
.font-brand, .font-\[\'Montserrat\'\] { font-family: var(--font-brand); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-balance { text-wrap: balance; }

.text-\[9px\] { font-size: 9px; }
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.16; }
.text-6xl { font-size: 3.75rem; line-height: 1.1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }

.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.12em\] { letter-spacing: 0.12em; }
.tracking-\[0\.18em\] { letter-spacing: 0.18em; }
.tracking-\[0\.22em\] { letter-spacing: 0.22em; }

/* ---------------- COLOR UTILITIES ---------------- */
.text-forest { color: var(--forest); }
.text-forest-deep { color: var(--forest-deep); }
.text-gold { color: var(--gold); }
.text-gold-soft { color: var(--gold-soft); }
.text-white { color: #ffffff; }
.text-white\/40 { color: rgba(255, 255, 255, 0.4); }
.text-white\/50 { color: rgba(255, 255, 255, 0.5); }
.text-white\/60 { color: rgba(255, 255, 255, 0.6); }
.text-white\/70 { color: rgba(255, 255, 255, 0.7); }
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/85 { color: rgba(255, 255, 255, 0.85); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-forest\/70 { color: rgba(12, 147, 73, 0.7); }
.text-forest\/80 { color: rgba(12, 147, 73, 0.8); }
.text-muted-foreground { color: var(--muted-foreground); }
.text-foreground { color: var(--foreground); }

.bg-forest { background-color: var(--forest); }
.bg-forest-deep { background-color: var(--forest-deep); }
.bg-gold { background-color: var(--gold); }
.bg-gold-soft { background-color: var(--gold-soft); }
.bg-gold-soft\/60 { background-color: rgba(253, 244, 204, 0.6); }
.bg-sand { background-color: var(--sand); }
.bg-stone-warm { background-color: var(--stone-warm); }
.bg-white { background-color: #ffffff; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15); }
.bg-white\/40 { background-color: rgba(255, 255, 255, 0.4); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }
.bg-background { background-color: var(--background); }
.bg-background\/70 { background-color: rgba(255, 255, 255, 0.7); }
.bg-background\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }

.border-border { border-color: var(--border); }
.border-transparent { border-color: transparent; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-white\/30 { border-color: rgba(255, 255, 255, 0.3); }
.border-white\/40 { border-color: rgba(255, 255, 255, 0.4); }
.border-gold { border-color: var(--gold); }
.border-gold\/40 { border-color: rgba(245, 183, 0, 0.4); }
.border-forest { border-color: var(--forest); }

.fill-gold { fill: var(--gold); }

/* ---------------- LAYOUT & GRID UTILITIES ---------------- */
.mx-auto { margin-left: auto; margin-right: auto; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.w-full { width: 100%; }
.size-full { width: 100%; height: 100%; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-x-0 { left: 0; right: 0; }
.inset-y-0 { top: 0; bottom: 0; }
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.top-6 { top: 1.5rem; }
.right-6 { right: 1.5rem; }
.bottom-6 { bottom: 1.5rem; }
.left-1\/2 { left: 50%; }
.bottom-4 { bottom: 1rem; }
.-bottom-4 { bottom: -1rem; }
.-top-4 { top: -1rem; }
.-mt-14 { margin-top: -3.5rem; }

.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[100\] { z-index: 100; }
.-z-10 { z-index: -10; }
.-z-20 { z-index: -20; }
.isolate { isolation: isolate; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-start { justify-content: flex-start; }
.justify-self-start { justify-self: start; }
.place-items-center { place-items: center; }

.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-2\.5 { gap: 0.625rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-20 > * + * { margin-top: 5rem; }

.divide-y > * + * { border-top-width: 1px; }

/* ---------------- SPACING ---------------- */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.pt-7 { padding-top: 1.75rem; }
.pt-8 { padding-top: 2rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-4 { padding-left: 1rem; }

.m-0 { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.-mt-0\.5 { margin-top: -0.125rem; }

/* ---------------- SIZING & BORDERS ---------------- */
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-10 { height: 2.5rem; }
.h-16 { height: 4rem; }
.h-full { height: 100%; }
.w-2 { width: 0.5rem; }
.w-8 { width: 2rem; }
.w-px { width: 1px; }

.size-3 { width: 0.75rem; height: 0.75rem; }
.size-3\.5 { width: 0.875rem; height: 0.875rem; }
.size-4 { width: 1rem; height: 1rem; }
.size-5 { width: 1.25rem; height: 1.25rem; }
.size-6 { width: 1.5rem; height: 1.5rem; }
.size-7 { width: 1.75rem; height: 1.75rem; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.size-11 { width: 2.75rem; height: 2.75rem; }
.size-12 { width: 3rem; height: 3rem; }
.size-14 { width: 3.5rem; height: 3.5rem; }
.size-\[380px\] { width: 380px; height: 380px; }
.size-\[400px\] { width: 400px; height: 400px; }
.size-\[420px\] { width: 420px; height: 420px; }
.size-\[500px\] { width: 500px; height: 500px; }
.size-\[520px\] { width: 520px; height: 520px; }

.min-h-screen { min-height: 100vh; }
.min-h-\[calc\(100svh-6\.75rem\)\] { min-height: calc(100svh - 6.75rem); }
.min-w-0 { min-width: 0; }
.shrink-0 { flex-shrink: 0; }

.rounded { border-radius: 0.25rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-y { border-top-width: 1px; border-bottom-width: 1px; border-style: solid; }

.overflow-hidden { overflow: hidden; }
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[4\/5\] { aspect-ratio: 4 / 5; }
.aspect-\[5\/3\] { aspect-ratio: 5 / 3; }
.aspect-\[5\/4\] { aspect-ratio: 5 / 4; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }

/* ---------------- SHADOWS & BLURS ---------------- */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-forest\/20 { box-shadow: 0 10px 25px -5px rgba(12, 147, 73, 0.2); }
.shadow-gold\/10 { box-shadow: 0 10px 25px -5px rgba(245, 183, 0, 0.1); }
.shadow-gold\/20 { box-shadow: 0 15px 30px -5px rgba(245, 183, 0, 0.2); }
.shadow-black\/20 { box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.2); }
.shadow-black\/40 { box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.4); }

.ring-1 { box-shadow: 0 0 0 1px var(--border); }
.ring-white\/10 { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1); }
.ring-white\/20 { box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2); }

.blur-3xl { filter: blur(64px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }

.pointer-events-none { pointer-events: none; }
.opacity-0 { opacity: 0; }
.opacity-100 { opacity: 1; }
.opacity-30 { opacity: 0.3; }

/* ---------------- TRANSITIONS & TRANSFORMS ---------------- */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-\[1200ms\] { transition-duration: 1200ms; }
.duration-\[1600ms\] { transition-duration: 1600ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

/* Hover States */
.hover\:text-gold:hover { color: var(--gold); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-forest-deep:hover { color: var(--forest-deep); }
.hover\:bg-forest:hover { background-color: var(--forest); }
.hover\:bg-forest\/90:hover { background-color: rgba(12, 147, 73, 0.9); }
.hover\:bg-gold:hover { background-color: var(--gold); }
.hover\:bg-sand:hover { background-color: var(--sand); }
.hover\:bg-white\/5:hover { background-color: rgba(255, 255, 255, 0.05); }
.hover\:bg-white\/10:hover { background-color: rgba(255, 255, 255, 0.1); }
.hover\:bg-white\/15:hover { background-color: rgba(255, 255, 255, 0.15); }
.hover\:bg-white\/70:hover { background-color: rgba(255, 255, 255, 0.7); }
.hover\:border-gold:hover { border-color: var(--gold); }
.hover\:border-gold\/40:hover { border-color: rgba(245, 183, 0, 0.4); }
.hover\:brightness-105:hover { filter: brightness(1.05); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-2px); }
.hover\:-translate-y-1:hover { transform: translateY(-4px); }
.hover\:-translate-y-2:hover { transform: translateY(-8px); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

/* Group Hover States */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(4px); }
.group:hover .group-hover\:rotate-\[-6deg\] { transform: rotate(-6deg); }
.group:hover .group-hover\:text-gold { color: var(--gold); }
.group:hover .group-hover\:bg-forest { background-color: var(--forest); }
.group:hover .group-hover\:text-forest-deep { color: var(--forest-deep); }

/* ---------------- KEYFRAME ANIMATIONS ---------------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fade-up 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes float-soft {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -14px, 0); }
}
.animate-float-soft {
  animation: float-soft 9s ease-in-out infinite;
}

@keyframes ken-burns {
  from { transform: scale(1.04); }
  to   { transform: scale(1.14); }
}
.animate-ken-burns {
  animation: ken-burns 9s ease-out forwards;
}

@keyframes hero-reveal {
  0%   { opacity: 0; transform: translateY(18px); clip-path: inset(0 0 100% 0); }
  100% { opacity: 1; transform: translateY(0); clip-path: inset(0 0 0 0); }
}
.animate-hero-reveal {
  animation: hero-reveal 0.85s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes pop-in {
  0%   { opacity: 0; transform: translateY(28px) scale(0.92); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.03); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.animate-pop-in {
  animation: pop-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes icon-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-4px) rotate(-6deg); }
}
.animate-icon-bob {
  animation: icon-bob 2.4s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0%   { transform: translateX(-120%) skewX(-20deg); }
  100% { transform: translateX(220%) skewX(-20deg); }
}
.group:hover .group-hover\:animate-shimmer-sweep {
  animation: shimmer-sweep 1.1s ease-out;
}

/* ---------------- HERO & SPECIFIC SECTIONS ---------------- */
.hero-overlay-gradient {
  background-image:
    linear-gradient(100deg, rgba(6, 95, 44, 0.92) 0%, rgba(6, 95, 44, 0.74) 42%, rgba(12, 147, 73, 0.34) 70%, transparent 100%),
    linear-gradient(180deg, rgba(0,0,0,0.35) 0%, transparent 35%, rgba(0,0,0,0.45) 100%);
}

.about-radial-bg {
  background:
    radial-gradient(80% 60% at 0% 0%, rgba(245, 183, 0, 0.3) 0%, transparent 55%),
    radial-gradient(70% 60% at 100% 100%, rgba(12, 147, 73, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--sand) 100%);
}

.about-linear-overlay {
  background: linear-gradient(100deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.86) 38%, rgba(250, 249, 246, 0.55) 70%, rgba(250, 249, 246, 0.35) 100%);
}

.about-pattern-dots {
  opacity: 0.35;
  background-image: radial-gradient(circle at 1px 1px, rgba(245, 183, 0, 0.3) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 80%);
}

/* ---------------- CONTINUOUS SHS TICKER / CAROUSEL ---------------- */
.shs-carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.shs-carousel-track::-webkit-scrollbar {
  display: none;
}

.shs-card {
  flex: 0 0 calc(50% - 0.5rem);
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  transition: border-color 200ms;
}
.shs-card:hover {
  border-color: var(--gold);
}
.shs-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* ---------------- FORMS ---------------- */
.form-input {
  width: 100%;
  padding: 0.75rem;
  background-color: var(--sand);
  border-radius: 0.25rem;
  border: 1px solid transparent;
  font-size: 0.875rem;
  color: var(--forest);
  transition: border-color 200ms, box-shadow 200ms;
}
.form-input::placeholder {
  color: var(--muted-foreground);
}
.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(245, 183, 0, 0.3);
}

.form-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

/* Toast Notification for Form Submissions */
.gcsl-toast {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: #ffffff;
  color: var(--foreground);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 300ms cubic-bezier(0.16, 1, 0.3, 1);
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
}
.gcsl-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.gcsl-toast.success {
  border-left: 4px solid var(--forest);
}
.gcsl-toast.error {
  border-left: 4px solid #ef4444;
}

/* ---------------- RESPONSIVE BREAKPOINTS ---------------- */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-end { align-items: flex-end; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.16; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1.1; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-\[11px\] { font-size: 11px; }
  .sm\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:pb-20 { padding-bottom: 5rem; }
  .sm\:pt-10 { padding-top: 2.5rem; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:gap-8 { gap: 2rem; }
  .sm\:mb-6 { margin-bottom: 1.5rem; }
  .sm\:inline-block { display: inline-block; }
  .shs-card { flex: 0 0 calc(33.333% - 0.67rem); }
}

@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:col-span-2 { grid-column: span 2 / span 2; }
  .md\:row-span-2 { grid-row: span 2 / span 2; }
  .md\:flex-row { flex-direction: row; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.16; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1.1; }
  .shs-card { flex: 0 0 calc(25% - 0.75rem); }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:min-h-\[88vh\] { min-height: 88vh; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-\[1\.05fr_0\.95fr\] { grid-template-columns: 1.05fr 0.95fr; }
  .lg\:grid-cols-\[1fr_1\.2fr\] { grid-template-columns: 1fr 1.2fr; }
  .lg\:grid-cols-\[1\.4fr_1fr\] { grid-template-columns: 1.4fr 1fr; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:pb-24 { padding-bottom: 6rem; }
  .lg\:pt-12 { padding-top: 3rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-\[2\.5rem\] { font-size: 2.5rem; line-height: 1.15; }
  .shs-card { flex: 0 0 calc(16.666% - 0.83rem); }
}

@media (min-width: 1280px) {
  .xl\:text-\[3rem\] { font-size: 3rem; line-height: 1.12; }
}

/* ---------------- STICKY HEADER & SCROLL STATE ---------------- */
header.site-header {
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

header.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(230, 228, 220, 0.85);
}

/* ---------------- OPACITY UTILITIES ---------------- */
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* ---------------- NAVIGATION ZERO-DOTS RESET ---------------- */
.site-header nav ul,
.site-header nav ol,
.site-header nav li,
[data-mobile-drawer] ul,
[data-mobile-drawer] ol,
[data-mobile-drawer] li {
  list-style: none !important;
  list-style-type: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
}

.site-header nav li::before,
.site-header nav li::after,
[data-mobile-drawer] li::before,
[data-mobile-drawer] li::after {
  content: none !important;
  display: none !important;
}

/* ---------------- PROSE & ARTICLE TYPOGRAPHY ---------------- */
.prose {
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.8;
  font-size: 1.0625rem;
}

.prose h1, .prose h2, .prose h3, .prose h4 {
  font-family: var(--font-display);
  color: var(--forest-deep);
  font-weight: 700;
  line-height: 1.3;
  margin-top: 2.25rem;
  margin-bottom: 1rem;
}

.prose h2 {
  font-size: 1.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(230, 228, 220, 0.8);
}

@media (min-width: 640px) {
  .prose h2 {
    font-size: 2rem;
  }
}

.prose h3 {
  font-size: 1.375rem;
}

.prose p {
  margin-bottom: 1.25rem;
  color: rgba(28, 46, 36, 0.88);
}

.prose strong {
  font-weight: 700;
  color: var(--forest-deep);
}

.prose ul, .prose ol {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.prose ul {
  list-style-type: disc;
}

.prose ol {
  list-style-type: decimal;
}

.prose li {
  margin-bottom: 0.5rem;
  color: rgba(28, 46, 36, 0.88);
}

.prose blockquote {
  border-left: 4px solid var(--gold);
  background: var(--sand);
  padding: 1.25rem 1.5rem;
  border-radius: 0 1rem 1rem 0;
  font-style: italic;
  margin: 1.75rem 0;
  color: var(--forest);
}

.prose a {
  color: var(--forest);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.prose a:hover {
  color: var(--gold);
}

.prose img {
  border-radius: 1rem;
  margin: 2rem auto;
}




