/* ========================================
   6SILO - Complete Stylesheet
   Compiled Tailwind utilities + Custom CSS
   ======================================== */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

/* ---- Design Tokens ---- */
:root {
  --color-brand-primary: #8b6f47;
  --color-brand-primary-dark: #6d5637;
  --color-brand-light: #f5f1ed;
  --color-brand-navy: #2c2c2c;
  --color-brand-charcoal: #fafafa;
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #4a4a4a;
  --color-text-tertiary: #6b6b6b;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
}

/* ---- CSS Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--color-text-primary);
  font-feature-settings: "rlig" 1, "calt" 1;
  margin: 0; padding: 0;
  line-height: 1.5;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; letter-spacing: -0.02em; }
img { content-visibility: auto; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: inherit; }

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

.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

.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)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.top-1 { top: 0.25rem; }
.top-4 { top: 1rem; }
.top-10 { top: 2.5rem; }
.top-20 { top: 5rem; }
.bottom-0 { bottom: 0; }
.bottom-10 { bottom: 2.5rem; }
.bottom-20 { bottom: 5rem; }
.left-0 { left: 0; }
.left-4 { left: 1rem; }
.left-10 { left: 2.5rem; }
.left-1\/4 { left: 25%; }
.left-\[15px\] { left: 15px; }
.-left-20 { left: -5rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-10 { right: 2.5rem; }
.right-1\/4 { right: 25%; }
.-right-20 { right: -5rem; }

.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* Overflow & Scroll */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.scroll-smooth { scroll-behavior: smooth; }
.snap-x { scroll-snap-type: x mandatory; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }

/* Object fit */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-left { object-position: left; }

/* Pointer / Cursor */
.pointer-events-none { pointer-events: none; }
.cursor-default { cursor: default; }

/* ========================================
   TAILWIND UTILITIES - Spacing
   ======================================== */
/* Margin */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.-mx-4 { margin-left: -1rem; margin-right: -1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-auto { margin-top: auto; }
.mt-\[120px\] { margin-top: 120px; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-1\.5 { margin-bottom: 0.375rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.-mb-16 { margin-bottom: -4rem; }
.-mt-32 { margin-top: -8rem; }

/* Padding */
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.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-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.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-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-12 { padding-left: 3rem; }

/* Gap */
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }

/* Space between (children) */
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.375rem; }
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-5 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.25rem; }
.space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem; }
.space-y-20 > :not([hidden]) ~ :not([hidden]) { margin-top: 5rem; }

/* ========================================
   TAILWIND UTILITIES - Sizing
   ======================================== */
.w-0 { width: 0px; }
.w-0\.5 { width: 0.125rem; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-48 { width: 12rem; }
.w-64 { width: 16rem; }
.w-96 { width: 24rem; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.w-\[85vw\] { width: 85vw; }
.w-\[100px\] { width: 100px; }

.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-44 { height: 11rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-96 { height: 24rem; }
.h-auto { height: auto; }
.h-full { height: 100%; }
.h-px { height: 1px; }
.h-\[662px\] { height: 662px; }

.min-h-screen { min-height: 100vh; }
.min-h-\[140px\] { min-height: 140px; }
.min-h-\[280px\] { min-height: 280px; }
.min-h-\[360px\] { min-height: 360px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[600px\] { min-height: 600px; }

.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-full { max-width: 100%; }

.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }

/* ========================================
   TAILWIND UTILITIES - Typography
   ======================================== */
.font-sans { font-family: var(--font-sans); }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.italic { font-style: italic; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

.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-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[10px\] { font-size: 10px; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.15\] { line-height: 1.15; }

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

.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.uppercase { text-transform: uppercase; }

/* ========================================
   TAILWIND UTILITIES - Colors & Background
   ======================================== */
/* Text colors */
.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\/90 { color: rgba(255, 255, 255, 0.9); }
.text-transparent { color: transparent; }
.text-brand-primary { color: var(--color-brand-primary); }
.text-brand-primary\/20 { color: rgba(139, 111, 71, 0.2); }
.text-text-primary { color: var(--color-text-primary); }
.text-text-secondary { color: var(--color-text-secondary); }
.text-text-tertiary { color: var(--color-text-tertiary); }
.text-gray-900 { color: #111827; }
.text-\[\#232323\] { color: #232323; }
.text-\[\#2c2c2c\] { color: #2c2c2c; }
.text-orange-600 { color: #ea580c; }
.text-yellow-300 { color: #fde047; }

/* Background colors */
.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\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/30 { background-color: rgba(255, 255, 255, 0.3); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-black { background-color: #000000; }
.bg-black\/40 { background-color: rgba(0, 0, 0, 0.4); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-transparent { background-color: transparent; }
.bg-brand-primary { background-color: var(--color-brand-primary); }
.bg-brand-primary\/5 { background-color: rgba(139, 111, 71, 0.05); }
.bg-brand-primary\/10 { background-color: rgba(139, 111, 71, 0.1); }
.bg-brand-primary\/30 { background-color: rgba(139, 111, 71, 0.3); }
.bg-brand-light { background-color: var(--color-brand-light); }
.bg-brand-light\/30 { background-color: rgba(245, 241, 237, 0.3); }
.bg-brand-light\/50 { background-color: rgba(245, 241, 237, 0.5); }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-green-500 { background-color: #22c55e; }
.bg-orange-500 { background-color: #f97316; }
.bg-\[\#232323\] { background-color: #232323; }
.bg-\[#E67E22\]\/10 { background-color: rgba(230, 126, 34, 0.1); }

/* Background clip */
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-l { background-image: linear-gradient(to left, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }

/* Gradient from */
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-white { --tw-gradient-from: #ffffff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.from-brand-primary { --tw-gradient-from: #8b6f47; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 111, 71, 0)); }
.from-brand-primary\/5 { --tw-gradient-from: rgba(139, 111, 71, 0.05); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 111, 71, 0)); }
.from-brand-primary\/20 { --tw-gradient-from: rgba(139, 111, 71, 0.2); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 111, 71, 0)); }
.from-brand-light\/30 { --tw-gradient-from: rgba(245, 241, 237, 0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(245, 241, 237, 0)); }
.from-\[\#8b6f47\] { --tw-gradient-from: #8b6f47; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 111, 71, 0)); }
.from-\[\#2c2c2c\] { --tw-gradient-from: #2c2c2c; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(44, 44, 44, 0)); }
.from-gray-700 { --tw-gradient-from: #374151; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(55, 65, 81, 0)); }
.from-gray-800 { --tw-gradient-from: #1f2937; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(31, 41, 55, 0)); }
.from-blue-500 { --tw-gradient-from: #3b82f6; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(59, 130, 246, 0)); }
.from-green-500 { --tw-gradient-from: #22c55e; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(34, 197, 94, 0)); }
.from-red-500 { --tw-gradient-from: #ef4444; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239, 68, 68, 0)); }
.from-purple-500 { --tw-gradient-from: #a855f7; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(168, 85, 247, 0)); }

/* Gradient via */
.via-transparent { --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to, transparent); }
.via-white { --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255, 255, 255, 0)); }
.via-brand-primary { --tw-gradient-stops: var(--tw-gradient-from), #8b6f47, var(--tw-gradient-to, rgba(139, 111, 71, 0)); }
.via-brand-primary\/50 { --tw-gradient-stops: var(--tw-gradient-from), rgba(139, 111, 71, 0.5), var(--tw-gradient-to, rgba(139, 111, 71, 0)); }
.via-brand-light\/30 { --tw-gradient-stops: var(--tw-gradient-from), rgba(245, 241, 237, 0.3), var(--tw-gradient-to, rgba(245, 241, 237, 0)); }
.via-gray-50 { --tw-gradient-stops: var(--tw-gradient-from), #f9fafb, var(--tw-gradient-to, rgba(249, 250, 251, 0)); }
.via-gray-100 { --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, rgba(243, 244, 246, 0)); }
.via-gray-200 { --tw-gradient-stops: var(--tw-gradient-from), #e5e7eb, var(--tw-gradient-to, rgba(229, 231, 235, 0)); }
.via-gray-900 { --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, rgba(17, 24, 39, 0)); }
.via-yellow-200 { --tw-gradient-stops: var(--tw-gradient-from), #fef08a, var(--tw-gradient-to, rgba(254, 240, 138, 0)); }

/* Gradient to */
.to-transparent { --tw-gradient-to: transparent; }
.to-white { --tw-gradient-to: #ffffff; }
.to-brand-primary { --tw-gradient-to: #8b6f47; }
.to-brand-primary-dark { --tw-gradient-to: #6d5637; }
.to-brand-primary\/5 { --tw-gradient-to: rgba(139, 111, 71, 0.05); }
.to-brand-primary\/20 { --tw-gradient-to: rgba(139, 111, 71, 0.2); }
.to-brand-light\/20 { --tw-gradient-to: rgba(245, 241, 237, 0.2); }
.to-\[\#6d5637\] { --tw-gradient-to: #6d5637; }
.to-\[\#2c2c2c\] { --tw-gradient-to: #2c2c2c; }
.to-gray-800 { --tw-gradient-to: #1f2937; }
.to-gray-900 { --tw-gradient-to: #111827; }
.to-blue-700 { --tw-gradient-to: #1d4ed8; }
.to-green-700 { --tw-gradient-to: #15803d; }
.to-red-700 { --tw-gradient-to: #b91c1c; }
.to-purple-700 { --tw-gradient-to: #7e22ce; }

/* ========================================
   TAILWIND UTILITIES - Borders & Rounded
   ======================================== */
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-2 { border-width: 2px; border-style: solid; }
.border-\[3px\] { border-width: 3px; border-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-white { border-color: #ffffff; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }
.border-brand-primary { border-color: var(--color-brand-primary); }
.border-brand-primary\/20 { border-color: rgba(139, 111, 71, 0.2); }
.border-gray-200 { border-color: #e5e7eb; }

.rounded { border-radius: 0.25rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }
.rounded-r-xl { border-top-right-radius: 0.75rem; border-bottom-right-radius: 0.75rem; }

/* ========================================
   TAILWIND UTILITIES - Shadows & Effects
   ======================================== */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -2px rgba(0,0,0,.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }

.opacity-0 { opacity: 0; }
.opacity-10 { opacity: 0.1; }
.opacity-80 { opacity: 0.8; }

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

/* ========================================
   TAILWIND UTILITIES - Transitions & Transforms
   ======================================== */
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.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: 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-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }

.translate-x-full { transform: translateX(100%); }
.translate-x-0 { transform: translateX(0px); }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .5; }
}

/* ========================================
   TAILWIND UTILITIES - Pseudo/State Variants
   ======================================== */
.hover\:bg-brand-primary:hover { background-color: var(--color-brand-primary); }
.hover\:bg-brand-primary-dark:hover { background-color: var(--color-brand-primary-dark); }
.hover\:bg-brand-light:hover { background-color: var(--color-brand-light); }
.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-white\/90:hover { background-color: rgba(255, 255, 255, 0.9); }
.hover\:text-brand-primary:hover { color: var(--color-brand-primary); }
.hover\:text-brand-primary-dark:hover { color: var(--color-brand-primary-dark); }
.hover\:text-white:hover { color: #ffffff; }
.hover\:text-white\/80:hover { color: rgba(255, 255, 255, 0.8); }
.hover\:text-\[\#2c2c2c\]:hover { color: #2c2c2c; }
.hover\:border-brand-primary:hover { border-color: var(--color-brand-primary); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,.1), 0 4px 6px -4px rgba(0,0,0,.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,.1), 0 8px 10px -6px rgba(0,0,0,.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(0,0,0,.25); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-\[1\.02\]:hover { transform: scale(1.02); }
.active\:scale-95:active { transform: scale(0.95); }
.focus\:not-sr-only:focus { position: static; width: auto; height: auto; padding: 0; margin: 0; overflow: visible; clip: auto; white-space: normal; }

/* Focus styles */
.focus\:absolute:focus { position: absolute; }
.focus\:left-4:focus { left: 1rem; }
.focus\:top-4:focus { top: 1rem; }
.focus\:z-50:focus { z-index: 50; }
.focus\:px-4:focus { padding-left: 1rem; padding-right: 1rem; }
.focus\:py-2:focus { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.focus\:bg-brand-primary:focus { background-color: var(--color-brand-primary); }
.focus\:text-white:focus { color: #ffffff; }

/* Group hover */
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:translate-x-2 { transform: translateX(0.5rem); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:bg-brand-primary { background-color: var(--color-brand-primary); }
.group:hover .group-hover\:text-brand-primary { color: var(--color-brand-primary); }
.group:hover .group-hover\:text-white { color: #ffffff; }
.group:hover .group-hover\:w-full { width: 100%; }
.group:hover .group-hover\:gap-4 { gap: 1rem; }

/* Before pseudo-element */
.before\:content-\[\'\'\]::before { content: ''; }
.before\:absolute::before { position: absolute; }
.before\:left-\[-1\.5rem\]::before { left: -1.5rem; }
.before\:top-\[0\.6rem\]::before { top: 0.6rem; }
.before\:w-2::before { width: 0.5rem; }
.before\:h-2::before { height: 0.5rem; }
.before\:rounded-full::before { border-radius: 9999px; }
.before\:bg-brand-primary::before { background-color: var(--color-brand-primary); }

/* ========================================
   RESPONSIVE - sm: (640px)
   ======================================== */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .sm\:w-auto { width: auto; }
  .sm\:gap-4 { gap: 1rem; }
  .sm\:p-8 { padding: 2rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .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; }
}

/* ========================================
   RESPONSIVE - md: (768px)
   ======================================== */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:items-start { align-items: flex-start; }
  .md\:sticky { position: sticky; }
  .md\:top-24 { top: 6rem; }
  .md\:order-1 { order: 1; }
  .md\:order-2 { order: 2; }
  .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\:left-\[19px\] { left: 19px; }
  .md\:w-2 { width: 0.5rem; }
  .md\:w-12 { width: 3rem; }
  .md\:w-24 { width: 6rem; }
  .md\:w-32 { width: 8rem; }
  .md\:w-\[150px\] { width: 150px; }
  .md\:h-2 { height: 0.5rem; }
  .md\:h-12 { height: 3rem; }
  .md\:h-16 { height: 4rem; }
  .md\:h-32 { height: 8rem; }
  .md\:h-52 { height: 13rem; }
  .md\:border-4 { border-width: 4px; border-style: solid; }
  .md\:gap-3 { gap: 0.75rem; }
  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:p-12 { padding: 3rem; }
  .md\:px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
  .md\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pt-6 { padding-top: 1.5rem; }
  .md\:pt-8 { padding-top: 2rem; }
  .md\:pt-12 { padding-top: 3rem; }
  .md\:pb-8 { padding-bottom: 2rem; }
  .md\:pl-8 { padding-left: 2rem; }
  .md\:pl-12 { padding-left: 3rem; }
  .md\:pl-16 { padding-left: 4rem; }
  .md\:mt-12 { margin-top: 3rem; }
  .md\:mt-16 { margin-top: 4rem; }
  .md\:mt-24 { margin-top: 6rem; }
  .md\:-mt-40 { margin-top: -10rem; }
  .md\:mb-2 { margin-bottom: 0.5rem; }
  .md\:mb-4 { margin-bottom: 1rem; }
  .md\:mb-8 { margin-bottom: 2rem; }
  .md\:space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
  .md\:space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
  .md\:space-y-6 > :not([hidden]) ~ :not([hidden]) { margin-top: 1.5rem; }
  .md\:space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
  .md\:space-y-12 > :not([hidden]) ~ :not([hidden]) { margin-top: 3rem; }
  .md\:space-y-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 4rem; }
  .md\:space-y-32 > :not([hidden]) ~ :not([hidden]) { margin-top: 8rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-left { text-align: left; }
}

/* ========================================
   RESPONSIVE - lg: (1024px)
   ======================================== */
@media (min-width: 1024px) {
  .lg\:grid { display: grid; }
  .lg\:hidden { display: none; }
  .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-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-5 { grid-column: span 5 / span 5; }
  .lg\:col-span-6 { grid-column: span 6 / span 6; }
  .lg\:col-span-7 { grid-column: span 7 / span 7; }
  .lg\:row-span-2 { grid-row: span 2 / span 2; }
  .lg\:gap-6 { gap: 1.5rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:p-16 { padding: 4rem; }
  .lg\:pl-12 { padding-left: 3rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:space-y-24 > :not([hidden]) ~ :not([hidden]) { margin-top: 6rem; }
  .lg\:h-56 { height: 14rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1; }
}

/* ========================================
   RESPONSIVE - xl: (1280px)
   ======================================== */
@media (min-width: 1280px) {
  .xl\:gap-24 { gap: 6rem; }
  .xl\:text-5xl { font-size: 3rem; line-height: 1; }
  .xl\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .xl\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .xl\:text-8xl { font-size: 6rem; line-height: 1; }
}

/* ========================================
   CUSTOM CLASSES
   ======================================== */
/* Font display */
.font-display {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(to right, #b59473, #9a7a5f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Simple card */
.simple-card {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  transition: all 0.3s ease;
}
.simple-card:hover {
  border-color: #b59473;
  box-shadow: 0 4px 16px rgba(181, 148, 115, 0.12);
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Group utility */
.group { position: relative; }

/* Scrollbar hide */
.scrollbar-hide::-webkit-scrollbar { display: none; }
.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }

/* ---- Animations ---- */
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.animate-shimmer {
  background-size: 200% auto;
  animation: shimmer 3s linear infinite;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Scroll reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Line expand animation */
.line-expand {
  width: 0;
  transition: width 1s ease-out 0.3s;
}
.line-expand.expanded {
  width: 8rem;
}

/* Hero entrance */
.hero-content {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Carousel & Counter markers (JS hooks, no visual styling needed) */
/* .carousel, .carousel-card, .counter-value, .hamburger-icon, .close-icon are structural hooks for JS */
