/* Production CSS - Optimized for Blanc Website */
/* Minimal reset to match Tailwind CDN behavior */

*, ::before, ::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.5;
  color: rgb(31 41 55);
  background-color: #F5F2E8;
}

h1, h2, h3, h4, h5, h6, p, ul, li {
  margin: 0;
  padding: 0;
}

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

button {
  font-family: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Custom colors */
:root {
  --pacific: #2B4D66;
  --forest: #3D5A40;
  --stone: #8B8680;
  --sand: #F5F2E8;
  --mist: #E8EEF0;
}

/* Position */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-8 { bottom: 2rem; }
.left-0 { left: 0; }
.left-1\/2 { left: 50%; }
.top-1\/2 { top: 50%; }
.top-4 { top: 1rem; }
.right-4 { right: 1rem; }
.left-4 { left: 1rem; }
.top-full { top: 100%; }

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

/* Width & Height */
.w-full { width: 100%; }
.w-6 { width: 1.5rem; }
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-8 { width: 2rem; }
.w-16 { width: 4rem; }
.h-16 { height: 4rem; }
.h-6 { height: 1.5rem; }
.h-screen { height: 100vh; }
.h-96 { height: 24rem; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-8 { height: 2rem; }
.h-full { height: 100%; }
.max-w-7xl { max-width: 80rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mr-3 { margin-right: 0.75rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-auto { margin-top: auto; }

/* Padding */
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.p-8 { padding: 2rem; }
.p-6 { padding: 1.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.p-2 { padding: 0.5rem; }

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

/* Flexbox */
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

/* Grid */
.gap-12 { gap: 3rem; }
.gap-8 { gap: 2rem; }
.gap-16 { gap: 4rem; }

/* Space utilities - fixed to work like Tailwind */
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }

/* Typography */
.font-serif { font-family: Georgia, serif; }
.font-sans { font-family: Inter, system-ui, sans-serif; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-5xl { font-size: 3rem; line-height: 1; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.leading-relaxed { line-height: 1.625; }
.tracking-wide { letter-spacing: 0.025em; }
.italic { font-style: italic; }

/* Colors */
.text-pacific { color: var(--pacific); }
.text-white { color: rgb(255 255 255); }
.text-gray-800 { color: rgb(31 41 55); }
.text-gray-700 { color: rgb(55 65 81); }
.text-stone { color: var(--stone); }
.text-gray-600 { color: rgb(75 85 99); }
.text-forest { color: var(--forest); }
.text-gray-400 { color: rgb(156 163 175); }
.text-black { color: rgb(0 0 0); }

/* Background colors */
.bg-sand { background-color: var(--sand); }
.bg-white { background-color: rgb(255 255 255); }
.bg-white\/80 { background-color: rgb(255 255 255 / 0.8); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }
.bg-white\/10 { background-color: rgb(255 255 255 / 0.1); }
.bg-white\/20 { background-color: rgb(255 255 255 / 0.2); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-pacific\/60 { --tw-gradient-from: rgb(43 77 102 / 0.6); --tw-gradient-to: rgb(43 77 102 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-forest\/40 { --tw-gradient-to: rgb(61 90 64 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(61 90 64 / 0.4), var(--tw-gradient-to); }
.to-transparent { --tw-gradient-to: transparent; }
.bg-black\/20 { background-color: rgb(0 0 0 / 0.2); }
.bg-black\/80 { background-color: rgb(0 0 0 / 0.8); }
.bg-mist { background-color: var(--mist); }
.bg-forest { background-color: var(--forest); }
.bg-forest\/10 { background-color: rgb(61 90 64 / 0.1); }
.bg-pacific { background-color: var(--pacific); }
.bg-gray-900 { background-color: rgb(17 24 39); }

/* Borders */
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border { border-width: 1px; }
.border-stone\/20 { border-color: rgb(139 134 128 / 0.2); }
.border-white\/30 { border-color: rgb(255 255 255 / 0.3); }
.rounded-sm { border-radius: 0.125rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-full { border-radius: 9999px; }
.rounded { border-radius: 0.25rem; }

/* Effects */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.opacity-90 { opacity: 0.9; }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.object-cover { object-fit: cover; }
.cursor-pointer { cursor: pointer; }

/* Transform */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)); }
.-translate-x-1\/2 { --tw-translate-x: -50%; }
.-translate-y-1\/2 { --tw-translate-y: -50%; }

/* Transitions */
.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.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: 300ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 700ms;
}

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

/* Hover states */
.hover\:text-pacific:hover { color: var(--pacific); }
.hover\:bg-white\/20:hover { background-color: rgb(255 255 255 / 0.2); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:bg-sand:hover { background-color: var(--sand); }
.hover\:bg-forest:hover { background-color: var(--forest); }
.hover\:underline:hover { text-decoration: underline; }

/* Animation */
@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }
  50% {
    transform: translateY(0);
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* Responsive breakpoints */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 768px) {
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .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\:flex { display: flex; }
  .md\:hidden { display: none; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* Custom CSS from original */
.parallax-bg {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media (max-width: 768px) {
  .parallax-bg {
    background-attachment: scroll;
    background-size: contain;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.nav-blur {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-gradient {
  background: linear-gradient(135deg, rgba(43, 77, 102, 0.1) 0%, rgba(61, 90, 64, 0.1) 100%);
}

.organic-shadow {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Horizontal scrolling gallery */
.overflow-x-auto {
  display: flex;
  overflow-x: scroll;
  scrollbar-width: none;
}

.overflow-x-auto::-webkit-scrollbar {
  display: none;
}

/* Modal styles */
#image-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}

#modal-image {
  max-width: 90%;
  max-height: 90%;
}

/* Add equal height for press mentions */
.grid.md\:grid-cols-2.gap-8 > a > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}