@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* CSS Variables & Global Theme */
:root {
  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: rgba(224, 216, 202, 0.6);
}

html {
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: var(--font-sans);
  scroll-behavior: smooth;
  background-color: #FAF7F2;
  color: #1F1D1A;
}

body {
  margin: 0;
  background-color: #FAF7F2;
  color: #1F1D1A;
  overflow-x: hidden;
}

/* Typography Classes */
.font-heading {
  font-family: var(--font-serif);
}

.font-body {
  font-family: var(--font-sans);
}

/* Subtle Film Grain Texture (Fixed, GPU-safe, pointer-events-none) */
.bg-grain {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 99;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Alpine.js Cloak */
[x-cloak] {
  display: none !important;
}

/* Custom Scroll Transitions & Fluid Motion */
.ease-spring {
  transition-timing-function: var(--ease-spring);
}

.ease-out-quint {
  transition-timing-function: var(--ease-out-quint);
}

/* Double-Bezel (Doppelrand) Architecture Classes */
.double-bezel {
  padding: 0.375rem;
  border-radius: 2rem;
  background: rgba(26, 56, 43, 0.03);
  border: 1px solid rgba(224, 216, 202, 0.8);
  box-shadow: 0 4px 20px -2px rgba(20, 43, 33, 0.04), 0 1px 3px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.6s var(--ease-spring);
}

.double-bezel:hover {
  border-color: rgba(192, 86, 56, 0.4);
  box-shadow: 0 20px 40px -12px rgba(20, 43, 33, 0.08), 0 2px 6px 0 rgba(0, 0, 0, 0.03);
  transform: translateY(-2px);
}

.double-bezel-inner {
  border-radius: calc(2rem - 0.375rem);
  background: #FFFFFF;
  border: 1px solid rgba(240, 235, 225, 0.8);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9);
}

.double-bezel-dark {
  padding: 0.375rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3);
  transition: all 0.6s var(--ease-spring);
}

.double-bezel-dark:hover {
  border-color: rgba(192, 86, 56, 0.6);
  transform: translateY(-2px);
}

.double-bezel-dark-inner {
  border-radius: calc(2rem - 0.375rem);
  background: #142B21;
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Scroll Entry Animation Classes (Intersection Observer) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease-spring), transform 0.85s var(--ease-spring);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Core Element Resets */
h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

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

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

.w-full { width: 100%; }
.w-screen { width: 100vw; }
.w-max { width: max-content; }
.w-1\.5 { width: 0.375rem; }
.w-2 { width: 0.5rem; }
.w-2\.5 { width: 0.625rem; }
.w-3 { width: 0.75rem; }
.w-3\.5 { width: 0.875rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-11 { width: 2.75rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-18 { width: 4.5rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-48 { width: 12rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-72 { width: 18rem; }
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }

.h-full { height: 100%; }
.h-1\.5 { height: 0.375rem; }
.h-2 { height: 0.5rem; }
.h-2\.5 { height: 0.625rem; }
.h-3 { height: 0.75rem; }
.h-3\.5 { height: 0.875rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-11 { height: 2.75rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-18 { height: 4.5rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-36 { height: 9rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }
.h-64 { height: 16rem; }
.h-72 { height: 18rem; }
.h-auto { height: auto; }

.min-h-screen { min-height: 100vh; }
.min-h-\[100dvh\] { min-height: 100dvh; }
.min-h-\[85vh\] { min-height: 85vh; }
.min-h-\[90vh\] { min-height: 90vh; }
.min-h-full { min-height: 100%; }

.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.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-none { max-width: none; }

.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-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.items-baseline { align-items: baseline; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }

.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.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-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }

.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.col-span-3 { grid-column: span 3 / span 3; }
.col-span-4 { grid-column: span 4 / span 4; }
.col-span-5 { grid-column: span 5 / span 5; }
.col-span-6 { grid-column: span 6 / span 6; }
.col-span-7 { grid-column: span 7 / span 7; }
.col-span-8 { grid-column: span 8 / span 8; }
.col-span-9 { grid-column: span 9 / span 9; }
.col-span-12 { grid-column: span 12 / span 12; }

.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.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; }

.space-y-0\.5 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.125rem; }
.space-y-1 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.25rem; }
.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-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-16 > :not([hidden]) ~ :not([hidden]) { margin-top: 4rem; }
.space-y-20 > :not([hidden]) ~ :not([hidden]) { margin-top: 5rem; }

.divide-y > :not([hidden]) ~ :not([hidden]) { border-top-width: 1px; }
.divide-\[\#F5F2EB\] > :not([hidden]) ~ :not([hidden]) { border-color: #F5F2EB; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { inset: 0px; }
.inset-x-0 { left: 0px; right: 0px; }
.inset-x-3 { left: 0.75rem; right: 0.75rem; }
.inset-y-0 { top: 0px; bottom: 0px; }
.top-0 { top: 0px; }
.top-2 { top: 0.5rem; }
.top-3 { top: 0.75rem; }
.top-4 { top: 1rem; }
.top-5 { top: 1.25rem; }
.top-6 { top: 1.5rem; }
.top-8 { top: 2rem; }
.top-20 { top: 5rem; }
.top-24 { top: 6rem; }
.bottom-0 { bottom: 0px; }
.bottom-3 { bottom: 0.75rem; }
.bottom-4 { bottom: 1rem; }
.bottom-6 { bottom: 1.5rem; }
.bottom-8 { bottom: 2rem; }
.left-0 { left: 0px; }
.left-3 { left: 0.75rem; }
.left-4 { left: 1rem; }
.left-6 { left: 1.5rem; }
.right-0 { right: 0px; }
.right-3 { right: 0.75rem; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.-top-4 { top: -1rem; }
.-left-4 { left: -1rem; }
.-bottom-6 { bottom: -1.5rem; }
.-right-6 { right: -1.5rem; }
.-left-6 { left: -1.5rem; }

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

.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.overflow-x-auto { overflow-x: auto; }

.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1.25rem; }
.rounded-3xl { border-radius: 1.75rem; }
.rounded-\[2rem\] { border-radius: 2rem; }
.rounded-\[2\.5rem\] { border-radius: 2.5rem; }
.rounded-full { border-radius: 9999px; }

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

.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-\[\#EBE5D8\] { border-color: #EBE5D8; }
.border-\[\#E0D8CA\] { border-color: #E0D8CA; }
.border-\[\#D5CCBC\] { border-color: #D5CCBC; }
.border-\[\#1F3D30\] { border-color: #1F3D30; }
.border-\[\#2A5241\] { border-color: #2A5241; }
.border-\[\#234737\] { border-color: #234737; }
.border-\[\#C05638\] { border-color: #C05638; }
.border-\[\#1A382B\] { border-color: #1A382B; }
.border-\[\#FAF7F2\]\/15 { border-color: rgba(250, 247, 242, 0.15); }
.border-\[\#FAF7F2\]\/30 { border-color: rgba(250, 247, 242, 0.3); }

.bg-white { background-color: #ffffff; }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-\[\#FAF7F2\] { background-color: #FAF7F2; }
.bg-\[\#F5F2EB\] { background-color: #F5F2EB; }
.bg-\[\#F0EBE1\] { background-color: #F0EBE1; }
.bg-\[\#EFE8DC\] { background-color: #EFE8DC; }
.bg-\[\#142B21\] { background-color: #142B21; }
.bg-\[\#0F2119\] { background-color: #0F2119; }
.bg-\[\#1A382B\] { background-color: #1A382B; }
.bg-\[\#1C382C\] { background-color: #1C382C; }
.bg-\[\#1F3E31\] { background-color: #1F3E31; }
.bg-\[\#C05638\] { background-color: #C05638; }
.bg-\[\#A9482E\] { background-color: #A9482E; }
.bg-\[\#25D366\] { background-color: #25D366; }
.bg-\[\#3D5A4C\] { background-color: #3D5A4C; }
.bg-\[\#C05638\]\/10 { background-color: rgba(192, 86, 56, 0.1); }
.bg-\[\#C05638\]\/15 { background-color: rgba(192, 86, 56, 0.15); }
.bg-\[\#C05638\]\/20 { background-color: rgba(192, 86, 56, 0.2); }
.bg-\[\#1A382B\]\/10 { background-color: rgba(26, 56, 43, 0.1); }
.bg-\[\#1A382B\]\/20 { background-color: rgba(26, 56, 43, 0.2); }
.bg-\[\#1A382B\]\/80 { background-color: rgba(26, 56, 43, 0.8); }
.bg-\[\#25D366\]\/10 { background-color: rgba(37, 211, 102, 0.1); }
.bg-\[\#25D366\]\/20 { background-color: rgba(37, 211, 102, 0.2); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-white\/80 { background-color: rgba(255, 255, 255, 0.8); }
.bg-white\/90 { background-color: rgba(255, 255, 255, 0.9); }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95); }

.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.from-\[\#0F2119\] { --tw-gradient-from: #0F2119; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(15, 33, 25, 0)); }
.from-\[\#142B21\] { --tw-gradient-from: #142B21; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(20, 43, 33, 0)); }
.via-\[\#142B21\]\/80 { --tw-gradient-stops: var(--tw-gradient-from), rgba(20, 43, 33, 0.8), var(--tw-gradient-to, rgba(20, 43, 33, 0)); }
.via-\[\#142B21\]\/90 { --tw-gradient-stops: var(--tw-gradient-from), rgba(20, 43, 33, 0.9), var(--tw-gradient-to, rgba(20, 43, 33, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.to-\[\#0F2119\] { --tw-gradient-to: #0F2119; }
.to-\[\#1F3D30\] { --tw-gradient-to: #1F3D30; }

.text-white { color: #ffffff; }
.text-\[\#1F1D1A\] { color: #1F1D1A; }
.text-\[\#23211E\] { color: #23211E; }
.text-\[\#1A382B\] { color: #1A382B; }
.text-\[\#C05638\] { color: #C05638; }
.text-\[\#EADCC9\] { color: #EADCC9; }
.text-\[\#FAF7F2\] { color: #FAF7F2; }
.text-\[\#D6CFBE\] { color: #D6CFBE; }
.text-\[\#B5AEA1\] { color: #B5AEA1; }
.text-\[\#7A746B\] { color: #7A746B; }
.text-\[\#A39B8F\] { color: #A39B8F; }
.text-\[\#554F47\] { color: #554F47; }
.text-\[\#8F8778\] { color: #8F8778; }
.text-\[\#25D366\] { color: #25D366; }
.text-\[\#1E7E34\] { color: #1E7E34; }

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

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-2\.5 { padding-left: 0.625rem; padding-right: 0.625rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-0\.5 { padding-top: 0.125rem; padding-bottom: 0.125rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.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-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.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-28 { padding-top: 7rem; padding-bottom: 7rem; }
.py-32 { padding-top: 8rem; padding-bottom: 8rem; }
.py-36 { padding-top: 9rem; padding-bottom: 9rem; }

.pt-1 { padding-top: 0.25rem; }
.pt-2 { padding-top: 0.5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-2 { padding-left: 0.5rem; }
.pl-3 { padding-left: 0.75rem; }
.pl-4 { padding-left: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pl-8 { padding-left: 2rem; }
.pr-2 { padding-right: 0.5rem; }
.pr-3 { padding-right: 0.75rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }

.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-auto { margin-top: auto; margin-bottom: auto; }
.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-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.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-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

.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.35rem; }
.text-base { font-size: 1rem; line-height: 1.55rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.85rem; }
.text-2xl { font-size: 1.5rem; line-height: 2.1rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.35rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.65rem; }
.text-5xl { font-size: 3rem; line-height: 1.1; }
.text-6xl { font-size: 3.75rem; line-height: 1.05; }
.text-7xl { font-size: 4.5rem; line-height: 1.02; }

.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; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; }

.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.line-through { text-decoration: line-through; }
.underline { text-decoration: underline; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[0\.25em\] { letter-spacing: 0.25em; }
.tracking-\[0\.3em\] { letter-spacing: 0.3em; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.2; }
.leading-snug { line-height: 1.35; }
.leading-relaxed { line-height: 1.65; }

/* Micro-Shadows & Ambient Lighting */
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(20, 43, 33, 0.06), 0 2px 4px -2px rgba(20, 43, 33, 0.04); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(20, 43, 33, 0.08), 0 4px 6px -4px rgba(20, 43, 33, 0.04); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(20, 43, 33, 0.1), 0 8px 10px -6px rgba(20, 43, 33, 0.04); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(20, 43, 33, 0.2); }
.shadow-soft-emerald { box-shadow: 0 20px 40px -15px rgba(26, 56, 43, 0.35); }
.shadow-soft-terracotta { box-shadow: 0 20px 40px -15px rgba(192, 86, 56, 0.35); }

.object-cover { object-fit: cover; }
.object-center { object-position: center; }

.opacity-0 { opacity: 0; }
.opacity-25 { opacity: 0.25; }
.opacity-40 { opacity: 0.4; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-100 { opacity: 1; }

.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-xl { backdrop-filter: blur(20px); }
.backdrop-blur-2xl { backdrop-filter: blur(40px); }

.cursor-pointer { cursor: pointer; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.whitespace-pre-line { white-space: pre-line; }
.break-all { word-break: break-all; }

/* Transitions & Spring Choreography */
.transition-all { transition-property: all; transition-duration: 500ms; transition-timing-function: var(--ease-spring); }
.transition-transform { transition-property: transform; transition-duration: 600ms; transition-timing-function: var(--ease-spring); }
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 300ms; }
.transition-opacity { transition-property: opacity; transition-duration: 400ms; }

.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.duration-1000 { transition-duration: 1000ms; }

.scale-105 { transform: scale(1.05); }
.scale-108 { transform: scale(1.08); }
.scale-110 { transform: scale(1.10); }
.rotate-3 { transform: rotate(3deg); }
.-rotate-2 { transform: rotate(-2deg); }
.rotate-12 { transform: rotate(12deg); }
.translate-y-2 { transform: translateY(0.5rem); }
.translate-y-4 { transform: translateY(1rem); }
.translate-y-6 { transform: translateY(1.5rem); }
.translate-x-full { transform: translateX(100%); }
.translate-x-0 { transform: translateX(0); }
.-translate-y-4 { transform: translateY(-1rem); }
.translate-y-0 { transform: translateY(0); }

/* Interactive Hover States */
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-102:hover { transform: scale(1.02); }
.active\:scale-\[0\.98\]:active { transform: scale(0.98); }

.hover\:bg-white:hover { background-color: #ffffff; }
.hover\:bg-white\/20:hover { background-color: rgba(255, 255, 255, 0.2); }
.hover\:bg-\[\#A9482E\]:hover { background-color: #A9482E; }
.hover\:bg-\[\#C05638\]:hover { background-color: #C05638; }
.hover\:bg-\[\#1A382B\]:hover { background-color: #1A382B; }
.hover\:bg-\[\#142B21\]:hover { background-color: #142B21; }
.hover\:bg-\[\#20BA5A\]:hover { background-color: #20BA5A; }
.hover\:bg-\[\#25D366\]:hover { background-color: #25D366; }
.hover\:bg-\[\#FAF7F2\]:hover { background-color: #FAF7F2; }
.hover\:bg-\[\#F5F2EB\]:hover { background-color: #F5F2EB; }

.hover\:text-white:hover { color: #ffffff; }
.hover\:text-\[\#C05638\]:hover { color: #C05638; }
.hover\:text-\[\#1A382B\]:hover { color: #1A382B; }
.hover\:text-\[\#23211E\]:hover { color: #23211E; }

.hover\:border-\[\#C05638\]:hover { border-color: #C05638; }
.hover\:border-\[\#1A382B\]:hover { border-color: #1A382B; }

.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(20, 43, 33, 0.1), 0 8px 10px -6px rgba(20, 43, 33, 0.04); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgba(20, 43, 33, 0.25); }

/* Group Hover Micro-Interactions (Button-in-Button & Cards) */
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:scale-108 { transform: scale(1.08); }
.group:hover .group-hover\:scale-110 { transform: scale(1.10); }
.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(0.25rem); }
.group:hover .group-hover\:translate-x-1\.5 { transform: translateX(0.375rem); }
.group:hover .group-hover\:-translate-y-0\.5 { transform: translateY(-0.125rem); }
.group:hover .group-hover\:text-\[\#C05638\] { color: #C05638; }
.group:hover .group-hover\:bg-\[\#C05638\] { background-color: #C05638; }
.group:hover .group-hover\:text-white { color: #ffffff; }

/* Responsive Viewport Rules */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:inline { display: inline; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:flex-row { flex-direction: row; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:w-auto { width: auto; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .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\:p-8 { padding: 2rem; }
  .sm\:p-12 { padding: 3rem; }
  .sm\:p-16 { padding: 4rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.35rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.55rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.85rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2.1rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.35rem; }
  .sm\:text-4xl { font-size: 2.25rem; line-height: 2.65rem; }
  .sm\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .sm\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
}

@media (min-width: 768px) {
  .md\:inline { display: inline; }
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .md\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:items-end { align-items: flex-end; }
  .md\:w-auto { width: auto; }
  .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\:col-span-3 { grid-column: span 3 / span 3; }
  .md\:col-span-4 { grid-column: span 4 / span 4; }
  .md\:col-span-6 { grid-column: span 6 / span 6; }
  .md\:col-span-8 { grid-column: span 8 / span 8; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
}

@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .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-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:col-span-4 { grid-column: span 4 / span 4; }
  .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\:col-span-8 { grid-column: span 8 / span 8; }
  .lg\:col-span-9 { grid-column: span 9 / span 9; }
  .lg\:col-span-12 { grid-column: span 12 / span 12; }
  .lg\:justify-end { justify-content: flex-end; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .lg\:p-16 { padding: 4rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1.1; }
  .lg\:text-6xl { font-size: 3.75rem; line-height: 1.05; }
  .lg\:text-7xl { font-size: 4.5rem; line-height: 1.02; }
  .lg\:min-h-\[90vh\] { min-height: 90vh; }
}

/* Background Color Utilities */
.bg-\[\#11251D\], .bg-forest { background-color: #11251D !important; }
.bg-\[\#0D1E16\] { background-color: #0D1E16 !important; }
.bg-\[\#142B21\] { background-color: #142B21 !important; }
.bg-\[\#C05638\], .bg-clay { background-color: #C05638 !important; }
.bg-\[\#A8432A\] { background-color: #A8432A !important; }
.bg-\[\#25D366\] { background-color: #25D366 !important; }
.bg-\[\#FAF7F2\], .bg-cream { background-color: #FAF7F2 !important; }
.bg-white { background-color: #FFFFFF !important; }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05) !important; }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.10) !important; }
.bg-white\/15 { background-color: rgba(255, 255, 255, 0.15) !important; }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.20) !important; }
.bg-white\/95 { background-color: rgba(255, 255, 255, 0.95) !important; }
.bg-\[\#C05638\]\/10 { background-color: rgba(192, 86, 56, 0.10) !important; }
.bg-\[\#C05638\]\/20 { background-color: rgba(192, 86, 56, 0.20) !important; }
.bg-\[\#25D366\]\/10 { background-color: rgba(37, 211, 102, 0.10) !important; }
.bg-\[\#25D366\]\/20 { background-color: rgba(37, 211, 102, 0.20) !important; }

/* Text Color Utilities */
.text-white { color: #FFFFFF !important; }
.text-\[\#11251D\], .text-forest { color: #11251D !important; }
.text-\[\#C05638\], .text-clay { color: #C05638 !important; }
.text-\[\#E8A87C\], .text-gold { color: #E8A87C !important; }
.text-\[\#D3CBBF\] { color: #D3CBBF !important; }
.text-\[\#D4CDBF\] { color: #D4CDBF !important; }
.text-\[\#EFE8DC\] { color: #EFE8DC !important; }
.text-\[\#554F47\] { color: #554F47 !important; }
.text-\[\#7A746B\] { color: #7A746B !important; }
.text-\[\#3A352F\] { color: #3A352F !important; }
.text-\[\#25D366\] { color: #25D366 !important; }

/* Border Color Utilities */
.border-white\/10 { border-color: rgba(255, 255, 255, 0.10) !important; }
.border-white\/15 { border-color: rgba(255, 255, 255, 0.15) !important; }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.20) !important; }
.border-\[\#E8E2D5\] { border-color: #E8E2D5 !important; }
.border-\[\#E2D9CC\] { border-color: #E2D9CC !important; }
.border-\[\#C05638\] { border-color: #C05638 !important; }
.border-\[\#C05638\]\/20 { border-color: rgba(192, 86, 56, 0.20) !important; }
.border-\[\#C05638\]\/40 { border-color: rgba(192, 86, 56, 0.40) !important; }
.border-\[\#C05638\]\/60 { border-color: rgba(192, 86, 56, 0.60) !important; }
.border-\[\#25D366\]\/20 { border-color: rgba(37, 211, 102, 0.20) !important; }
.border-\[\#25D366\]\/40 { border-color: rgba(37, 211, 102, 0.40) !important; }
.border-\[\#25D366\]\/60 { border-color: rgba(37, 211, 102, 0.60) !important; }
