/*! Sayzrina Theme — Compiled CSS v1.3.3
 *  Hand-compiled from Tailwind utility classes used in the theme.
 *  Replaces CDN Tailwind (~350KB JS) with this static file (~28KB).
 *  Generated: 2026-05-07
 */

/* ============================================================
   CSS RESET / BASE
   ============================================================ */
*, ::before, ::after { box-sizing: border-box; border-width: 0; border-style: solid; border-color: #e5e7eb; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; line-height: inherit; }
hr { height: 0; color: inherit; border-top-width: 1px; }
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; }
a { color: inherit; text-decoration: inherit; }
b, strong { font-weight: bolder; }
img, svg, video, canvas, audio, iframe, embed, object { display: block; vertical-align: middle; }
img, video { max-width: 100%; height: auto; }
p, blockquote, pre, figure, fieldset { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button, input, optgroup, select, textarea { font-family: inherit; font-size: 100%; font-weight: inherit; line-height: inherit; color: inherit; margin: 0; padding: 0; }
button, [type='button'], [type='reset'], [type='submit'] { -webkit-appearance: button; background-color: transparent; background-image: none; }
button:focus-visible { outline: 2px solid #D4AF37; outline-offset: 2px; }

/* ============================================================
   CUSTOM PROPERTIES & BRAND TOKENS (overridden via Customizer inline script)
   ============================================================ */
:root {
  --color-gold: #D4AF37;
  --color-charcoal: #1f4025;
  --color-light: #FAFAFA;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1.5rem; padding-right: 1.5rem; }
@media (min-width: 640px)  { .container { max-width: 640px; } }
@media (min-width: 768px)  { .container { max-width: 768px; } }
@media (min-width: 1024px) { .container { max-width: 1024px; } }
@media (min-width: 1280px) { .container { max-width: 1280px; } }
@media (min-width: 1536px) { .container { max-width: 1536px; } }

/* ============================================================
   DISPLAY
   ============================================================ */
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }
.hidden { display: none; }
.inline-block { display: inline-block; }

/* ============================================================
   POSITION
   ============================================================ */
.static   { position: static; }
.fixed    { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.sticky   { position: sticky; }

/* Inset */
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0  { top: 0; }
.top-6  { top: 1.5rem; }
.left-0 { left: 0; }
.right-6 { right: 1.5rem; }
.bottom-0 { bottom: 0; }

/* ============================================================
   Z-INDEX
   ============================================================ */
.z-0  { z-index: 0; }
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }

/* ============================================================
   FLEX
   ============================================================ */
.flex-col     { flex-direction: column; }
.flex-wrap    { flex-wrap: wrap; }
.flex-1       { flex: 1 1 0%; }
.flex-grow    { flex-grow: 1; }
.shrink-0     { flex-shrink: 0; }
.items-start  { align-items: flex-start; }
.items-center { align-items: center; }
.items-end    { align-items: flex-end; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }

/* ============================================================
   GRID
   ============================================================ */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.gap-2  { gap: 0.5rem; }
.gap-3  { gap: 0.75rem; }
.gap-4  { gap: 1rem; }
.gap-5  { gap: 1.25rem; }
.gap-6  { gap: 1.5rem; }
.gap-8  { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* ============================================================
   SIZING
   ============================================================ */
.h-auto   { height: auto; }
.h-full   { height: 100%; }
.h-screen { height: 100vh; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-64 { height: 16rem; }
.h-\[500px\] { height: 500px; }
.h-\[600px\] { height: 600px; }

.w-auto { width: auto; }
.w-full { width: 100%; }
.w-12   { width: 3rem; }
.w-16   { width: 4rem; }
.w-24   { width: 6rem; }
.w-32   { width: 8rem; }
.w-48   { width: 12rem; }

.min-h-\[400px\] { min-height: 400px; }
.min-h-\[48px\]  { min-height: 48px; }
.min-h-\[500px\] { min-height: 500px; }
.min-w-\[48px\]  { min-width: 48px; }

.max-h-full { max-height: 100%; }
.max-w-2xl  { max-width: 42rem; }
.max-w-4xl  { max-width: 56rem; }
.max-w-6xl  { max-width: 72rem; }
.max-w-md   { max-width: 28rem; }
.max-w-none { max-width: none; }

/* ============================================================
   OVERFLOW
   ============================================================ */
.overflow-hidden { overflow: hidden; }

/* ============================================================
   OBJECT FIT
   ============================================================ */
.object-contain { object-fit: contain; }
.object-cover   { object-fit: cover; }

/* ============================================================
   OPACITY
   ============================================================ */
.opacity-10 { opacity: 0.1; }
.opacity-50 { opacity: 0.5; }
.opacity-90 { opacity: 0.9; }
.opacity-0  { opacity: 0; }
.opacity-100 { opacity: 1; }

/* ============================================================
   SPACING — PADDING
   ============================================================ */
.p-0  { padding: 0; }
.p-3  { padding: 0.75rem; }
.p-4  { padding: 1rem; }
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-12 { padding-top: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3  { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4  { padding-top: 1rem; padding-bottom: 1rem; }
.py-6  { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }

/* ============================================================
   SPACING — MARGIN
   ============================================================ */
.m-4    { margin: 1rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-2  { margin-top: 0.5rem; }
.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-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-28 { margin-top: 7rem; }
.mt-32 { margin-top: 8rem; }
.mt-auto { margin-top: auto; }
.mb-1  { margin-bottom: 0.25rem; }
.mb-2  { margin-bottom: 0.5rem; }
.mb-3  { margin-bottom: 0.75rem; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.ml-2  { margin-left: 0.5rem; }
.ml-4  { margin-left: 1rem; }
.mr-2  { margin-right: 0.5rem; }
.my-8  { margin-top: 2rem; margin-bottom: 2rem; }
.my-12 { margin-top: 3rem; margin-bottom: 3rem; }

/* ============================================================
   SPACE BETWEEN
   ============================================================ */
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }

/* ============================================================
   BORDERS
   ============================================================ */
.border   { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-t { border-top-width: 1px; }
.border-r { border-right-width: 1px; }
.border-l-4 { border-left-width: 4px; }
.border-dashed { border-style: dashed; }

.border-\[\#34495E\] { border-color: #34495E; }
.border-gold   { border-color: #D4AF37; }
.border-gold\/30 { border-color: rgba(212,175,55,0.3); }
.border-gold\/40 { border-color: rgba(212,175,55,0.4); }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }

/* ============================================================
   BORDER RADIUS
   ============================================================ */
.rounded-full { border-radius: 9999px; }
.rounded-lg   { border-radius: 0.5rem; }
.rounded-sm   { border-radius: 0.125rem; }
.rounded-xl   { border-radius: 0.75rem; }

/* ============================================================
   BACKGROUND COLORS
   ============================================================ */
.bg-white   { background-color: #ffffff; }
.bg-charcoal { background-color: #1f4025; }
.bg-gold    { background-color: #D4AF37; }
.bg-light   { background-color: #FAFAFA; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-\[\#34495E\] { background-color: #34495E; }
.bg-black\/20  { background-color: rgba(0,0,0,0.2); }
.bg-white\/5   { background-color: rgba(255,255,255,0.05); }
.bg-white\/10  { background-color: rgba(255,255,255,0.1); }
.bg-gray-100   { background-color: #f3f4f6; }
.bg-gray-50    { background-color: #f9fafb; }

/* ============================================================
   TEXT COLOR
   ============================================================ */
.text-white    { color: #ffffff; }
.text-charcoal { color: #1f4025; }
.text-gold     { color: #D4AF37; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-green-500 { color: #22c55e; }
.text-red-500   { color: #ef4444; }
.text-\[\#4285F4\] { color: #4285F4; }

/* ============================================================
   TEXT SIZE
   ============================================================ */
.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; }

/* ============================================================
   TEXT STYLE
   ============================================================ */
.italic    { font-style: italic; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

.font-light    { font-weight: 300; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-serif    { font-family: "Playfair Display", serif; }

.leading-relaxed { line-height: 1.625; }
.leading-tight   { line-height: 1.25; }

.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }

.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }

/* ============================================================
   SHADOW
   ============================================================ */
.shadow-sm  { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
.shadow-md  { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.shadow-lg  { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl  { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05); }
.drop-shadow-xl { filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08)); }
.shadow-\[0_-4px_10px_rgba\(0\,0\,0\,0\.05\)\] { box-shadow: 0 -4px 10px rgba(0,0,0,0.05); }

/* ============================================================
   TRANSITIONS
   ============================================================ */
.transition         { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all     { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-300  { transition-duration: 300ms; }
.duration-500  { transition-duration: 500ms; }
.duration-1000 { transition-duration: 1000ms; }

/* ============================================================
   TRANSFORMS
   ============================================================ */
.translate-x-4 { transform: translateX(1rem); }
.translate-y-4 { transform: translateY(1rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* ============================================================
   BACKDROP
   ============================================================ */
.backdrop-blur-sm { backdrop-filter: blur(4px); }

/* ============================================================
   MIX BLEND
   ============================================================ */
.mix-blend-overlay { mix-blend-mode: overlay; }

/* ============================================================
   FOCUS / OUTLINE
   ============================================================ */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-gold:focus { border-color: #D4AF37; }

/* ============================================================
   HOVER UTILITIES
   ============================================================ */
.hover\:bg-\[\#20bd5a\]:hover { background-color: #20bd5a; }
.hover\:bg-gold:hover         { background-color: #D4AF37; }
.hover\:bg-gray-50:hover      { background-color: #f9fafb; }
.hover\:bg-white:hover        { background-color: #ffffff; }
.hover\:border-gold:hover     { border-color: #D4AF37; }
.hover\:shadow-md:hover       { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
.hover\:text-charcoal:hover   { color: #1f4025; }
.hover\:text-gold:hover       { color: #D4AF37; }
.hover\:text-white:hover      { color: #ffffff; }

/* ============================================================
   ACTIVE UTILITIES
   ============================================================ */
.active\:bg-\[\#1da850\]:active { background-color: #1da850; }
.active\:bg-gray-100:active     { background-color: #f3f4f6; }

/* ============================================================
   GROUP HOVER
   ============================================================ */
.group:hover .group-hover\:bg-gold     { background-color: #D4AF37; }
.group:hover .group-hover\:text-white  { color: #ffffff; }
.group:hover .group-hover\:scale-110   { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-6 { transform: translateX(1.5rem); }
.group:hover .group-hover\:translate-y-6 { transform: translateY(1.5rem); }

/* ============================================================
   PROSE (for blog content)
   ============================================================ */
.prose { color: #374151; max-width: 65ch; }
.prose-lg { font-size: 1.125rem; line-height: 1.75rem; }
.prose p  { margin-top: 1.25em; margin-bottom: 1.25em; }
.prose h2 { font-size: 1.5em; margin-top: 2em; margin-bottom: 1em; font-weight: 700; }
.prose h3 { font-size: 1.25em; margin-top: 1.6em; margin-bottom: 0.6em; font-weight: 600; }
.prose a  { color: #D4AF37; text-decoration: underline; }
.prose ul { list-style-type: disc; padding-left: 1.5em; }
.prose ol { list-style-type: decimal; padding-left: 1.5em; }
.prose blockquote { border-left: 4px solid #D4AF37; padding-left: 1rem; color: #6b7280; font-style: italic; }
.prose img { border-radius: 0.375rem; }
.prose .max-w-none { max-width: none; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-in { animation: fadeIn 1.5s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============================================================
   CUSTOM THEME COMPONENTS
   ============================================================ */
.btn-gold {
  background-color: #D4AF37;
  color: white;
  transition: all 0.3s ease;
}
.btn-gold:hover {
  background-color: #bfa132;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.card-hover { transition: all 0.4s ease; }
.card-hover:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 25px -5px rgba(0, 0, 0, 0.1);
  border-color: #D4AF37;
}

.glass-header {
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* sm: 640px */
@media (min-width: 640px) {
  .sm\:col-span-2 { grid-column: span 2 / span 2; }
  .sm\:flex-row   { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:w-auto     { width: auto; }
}

/* md: 768px */
@media (min-width: 768px) {
  .md\:flex    { display: flex; }
  .md\:hidden  { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:h-20   { height: 5rem; }
  .md\:mt-0   { margin-top: 0; }
  .md\:p-12   { padding: 3rem; }
  .md\:text-xl  { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:w-\[calc\(50\%-1rem\)\] { width: calc(50% - 1rem); }
  body { padding-bottom: 0; }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .lg\:flex-row { flex-direction: row; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:h-auto  { height: auto; }
  .lg\:text-8xl { font-size: 6rem; line-height: 1; }
  .lg\:w-\[calc\(33\.333\%-1\.4rem\)\] { width: calc(33.333% - 1.4rem); }
  .lg\:w-1\/2  { width: 50%; }
  .lg\:w-5\/12 { width: 41.666667%; }
  .lg\:w-7\/12 { width: 58.333333%; }
}

/* md:hidden flip — show on mobile */
@media (max-width: 767px) {
  .md\:hidden { display: block; }
  .md\:flex   { display: none; }
  body { padding-bottom: 70px; }
}
