/* ============================================
   Klasana — Comprehensive Custom Stylesheet
   ============================================ */

/* ——— CSS Variables ——— */
:root {
  --coffee-50: #faf6f1;
  --coffee-100: #f0e6d6;
  --coffee-200: #e0ccad;
  --coffee-300: #cdaa7a;
  --coffee-400: #b89260;
  --coffee-500: #a07b48;
  --coffee-600: #866234;
  --coffee-700: #6b4e2a;
  --coffee-800: #4a3620;
  --coffee-900: #2d2010;
  --coffee-950: #1a1108;

  --grey-50: #fafafa;
  --grey-100: #f3f3f3;
  --grey-200: #e6e6e6;
  --grey-300: #d4d4d4;
  --grey-400: #a3a3a3;
  --grey-500: #737373;
  --grey-600: #525252;
  --grey-700: #3d3d3d;
  --grey-800: #262626;
  --grey-900: #171717;
  --grey-950: #0a0a0a;
}

/* ——— Reset & Base ——— */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--grey-100);
  color: var(--grey-800);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ——— Font Families ——— */
.font-body { font-family: 'Inter', sans-serif; }
.font-display { font-family: 'Playfair Display', serif; }

/* ——— Typography Scale ——— */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.text-7xl { font-size: 4.5rem; }
.text-8xl { font-size: 6rem; }

/* Arbitrary text sizes */
.text-\[10px\] { font-size: 10px; }
.text-\[11px\] { font-size: 11px; }
.text-\[5\.5rem\] { font-size: 5.5rem; }

/* Font weights */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Letter spacing */
.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; }
.tracking-\[0\.35em\] { letter-spacing: 0.35em; }

/* Line height */
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.02\] { line-height: 1.02; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.8\] { line-height: 1.8; }

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

/* Text colors */
.text-grey-300 { color: var(--grey-300); }
.text-grey-400 { color: var(--grey-400); }
.text-grey-500 { color: var(--grey-500); }
.text-grey-600 { color: var(--grey-600); }
.text-grey-700 { color: var(--grey-700); }
.text-grey-800 { color: var(--grey-800); }
.text-grey-900 { color: var(--grey-900); }
.text-white { color: #fff; }
.text-white\/90 { color: rgba(255,255,255,0.9); }
.text-coffee-300 { color: var(--coffee-300); }
.text-coffee-400 { color: var(--coffee-400); }
.text-coffee-500 { color: var(--coffee-500); }
.text-coffee-600 { color: var(--coffee-600); }
.text-coffee-700 { color: var(--coffee-700); }
.text-coffee-800 { color: var(--coffee-800); }
.text-green-700 { color: #15803d; }

/* ——— Background Colors ——— */
.bg-white { background-color: #fff; }
.bg-grey-50 { background-color: var(--grey-50); }
.bg-grey-50\/50 { background-color: rgba(250,250,250,0.5); }
.bg-grey-100 { background-color: var(--grey-100); }
.bg-coffee-50 { background-color: var(--coffee-50); }
.bg-coffee-100 { background-color: var(--coffee-100); }
.bg-coffee-200 { background-color: var(--coffee-200); }
.bg-coffee-300 { background-color: var(--coffee-300); }
.bg-coffee-400 { background-color: var(--coffee-400); }
.bg-coffee-500 { background-color: var(--coffee-500); }
.bg-coffee-600 { background-color: var(--coffee-600); }
.bg-coffee-700 { background-color: var(--coffee-700); }
.bg-coffee-800 { background-color: var(--coffee-800); }
.bg-coffee-900 { background-color: var(--coffee-900); }
.bg-coffee-950 { background-color: var(--coffee-950); }

/* Background opacities */
.bg-grey-100\/80 { background-color: rgba(243,243,243,0.8); }
.bg-coffee-200\/10 { background-color: rgba(224,204,173,0.1); }
.bg-coffee-300\/30 { background-color: rgba(205,170,122,0.3); }
.bg-coffee-400\/15 { background-color: rgba(184,146,96,0.15); }
.bg-coffee-400\/20 { background-color: rgba(184,146,96,0.2); }
.bg-coffee-500\/10 { background-color: rgba(160,123,72,0.1); }
.bg-coffee-700\/10 { background-color: rgba(107,78,42,0.1); }
.bg-coffee-900\/50 { background-color: rgba(45,32,16,0.5); }
.bg-coffee-900\/80 { background-color: rgba(45,32,16,0.8); }
.bg-coffee-950\/25 { background-color: rgba(26,17,8,0.25); }
.bg-coffee-950\/95 { background-color: rgba(26,17,8,0.95); }
.bg-white\/10 { background-color: rgba(255,255,255,0.1); }
.bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.bg-black\/60 { background-color: rgba(0,0,0,0.6); }
.bg-green-50 { background-color: #f0fdf4; }

/* ——— Gradients ——— */
.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-tr { background-image: linear-gradient(to top right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }

.from-transparent { --tw-gradient-from: transparent; --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-black\/60 { --tw-gradient-from: rgba(0,0,0,0.6); --tw-gradient-to: rgba(0,0,0,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-coffee-950\/60 { --tw-gradient-from: rgba(26,17,8,0.6); --tw-gradient-to: rgba(26,17,8,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-coffee-400 { --tw-gradient-from: var(--coffee-400); --tw-gradient-to: rgba(205,170,122,0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.via-transparent { --tw-gradient-to: transparent; --tw-gradient-stops: var(--tw-gradient-from), transparent, var(--tw-gradient-to); }
.via-black\/10 { --tw-gradient-to: rgba(0,0,0,0); --tw-gradient-stops: var(--tw-gradient-from), rgba(0,0,0,0.1), var(--tw-gradient-to); }
.via-coffee-300\/40 { --tw-gradient-to: rgba(205,170,122,0); --tw-gradient-stops: var(--tw-gradient-from), rgba(205,170,122,0.4), var(--tw-gradient-to); }

.to-transparent { --tw-gradient-to: transparent; }

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

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

/* Positioning */
.fixed { position: fixed; }
.absolute { position: absolute; }
.relative { position: relative; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.top-5 { top: 1.25rem; }
.top-20 { top: 5rem; }
.bottom-0 { bottom: 0; }
.bottom-6 { bottom: 1.5rem; }
.bottom-10 { bottom: 2.5rem; }
.bottom-20 { bottom: 5rem; }
.left-0 { left: 0; }
.left-5 { left: 1.25rem; }
.left-6 { left: 1.5rem; }
.left-1\/2 { left: 50%; }
.-left-32 { left: -8rem; }
.right-0 { right: 0; }
.right-4 { right: 1rem; }
.right-6 { right: 1.5rem; }
.-right-32 { right: -8rem; }
.top-1\/2 { top: 50%; }

/* Z-index */
.z-10 { z-index: 10; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Aspect ratio */
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[16\/10\] { aspect-ratio: 16 / 10; }

/* ——— Sizing ——— */
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-14 { width: 3.5rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-px { width: 1px; }
.w-auto { width: auto; }
.w-full { width: 100%; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-5 { height: 1.25rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-px { height: 1px; }
.h-0\.5 { height: 0.125rem; }
.h-1 { height: 0.25rem; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-\[70vh\] { min-height: 70vh; }

/* Max width */
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-7xl { max-width: 80rem; }

/* Arbitrary widths */
.w-\[24rem\] { width: 24rem; }
.w-\[28rem\] { width: 28rem; }
.w-\[32rem\] { width: 32rem; }
.h-\[24rem\] { height: 24rem; }
.h-\[28rem\] { height: 28rem; }
.h-\[32rem\] { height: 32rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* ——— Spacing ——— */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }

.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; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-14 { padding-top: 3.5rem; padding-bottom: 3.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-28 { padding-top: 7rem; padding-bottom: 7rem; }

.pt-5 { padding-top: 1.25rem; }
.pt-16 { padding-top: 4rem; }
.pl-5 { padding-left: 1.25rem; }

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

/* Space between */
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-7 > * + * { margin-top: 1.75rem; }

/* ——— Borders ——— */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-l-2 { border-left-width: 2px; }

/* Border colors */
.border-grey-200 { border-color: var(--grey-200); }
.border-grey-200\/60 { border-color: rgba(230,230,230,0.6); }
.border-grey-200\/70 { border-color: rgba(230,230,230,0.7); }
.border-coffee-100 { border-color: var(--coffee-100); }
.border-coffee-300 { border-color: var(--coffee-300); }
.border-coffee-300\/50 { border-color: rgba(205,170,122,0.5); }
.border-coffee-600 { border-color: var(--coffee-600); }
.border-coffee-700\/40 { border-color: rgba(107,78,42,0.4); }
.border-coffee-800 { border-color: var(--coffee-800); }
.border-coffee-800\/40 { border-color: rgba(74,54,32,0.4); }
.border-green-200 { border-color: #bbf7d0; }

/* Border radius */
.rounded-full { border-radius: 9999px; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

/* ——— Grid ——— */
.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)); }

.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-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }
.gap-20 { gap: 5rem; }

/* ——— Effects ——— */
/* Shadows */
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }
.shadow-black\/30 { --tw-shadow-color: rgba(0,0,0,0.3); }
.shadow-coffee-900\/20 { --tw-shadow-color: rgba(45,32,16,0.2); }

/* Specific arbitrary shadows via exact selectors */
.shadow-\[0_2px_8px_rgba\(0\,0\,0\,0\.04\)\] { box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.shadow-\[0_4px_20px_rgba\(0\,0\,0\,0\.03\)\] { box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.shadow-\[0_20px_40px_rgba\(138\,94\,50\,0\.12\)\] { box-shadow: 0 20px 40px rgba(138,94,50,0.12); }
.hover\:shadow-\[0_20px_40px_rgba\(138\,94\,50\,0\.12\)\]:hover { box-shadow: 0 20px 40px rgba(138,94,50,0.12); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.hover\:opacity-90:hover { opacity: 0.9; }

/* Blur */
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.blur-\[100px\] { filter: blur(100px); }
.blur-\[120px\] { filter: blur(120px); }

/* Transitions */
.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 overrides */
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

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

/* Appearance & outline */
.appearance-none { appearance: none; -webkit-appearance: none; }
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

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

/* ——— Transforms ——— */
.translate-x-1\/2 { transform: translateX(50%); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-2 { transform: translateY(0.5rem); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:scale-110:hover { transform: scale(1.1); }

/* Group hover transforms */
.group:hover .group-hover\:translate-y-0 { transform: translateY(0); }
.group:hover .group-hover\:scale-110 { transform: scale(1.1); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:bg-white\/20 { background-color: rgba(255,255,255,0.2); }
.group:hover .group-hover\:text-coffee-300 { color: var(--coffee-300); }
.group:hover .group-hover\:border-coffee-800 { border-color: var(--coffee-800); }
.group:hover .group-hover\:bg-coffee-900 { background-color: var(--coffee-900); }

/* ——— Forms ——— */
input, select, textarea { font-family: inherit; }
.resize-none { resize: none; }
.placeholder\:text-grey-400::placeholder { color: var(--grey-400); }

/* Focus states */
.focus\:border-coffee-400:focus { border-color: var(--coffee-400); }
.focus\:ring-4:focus { box-shadow: 0 0 0 4px var(--coffee-ring); }
.focus\:ring-coffee-100\/50:focus { --coffee-ring: rgba(240,230,214,0.5); box-shadow: 0 0 0 4px rgba(240,230,214,0.5); }

/* ——— Animation ——— */
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

/* ——— Links ——— */
.no-underline { text-decoration: none; }

/* ——— Intro Animation (index.html) ——— */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.intro-bg {
  position: absolute;
  inset: 0;
  transition: background-color 1s ease;
}
.intro-text {
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.8s ease, transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 5;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.intro-logo {
  width: clamp(180px, 40vw, 420px);
  height: auto;
  filter: drop-shadow(0 0 30px rgba(205, 170, 122, 0.4));
  object-fit: contain;
}
.intro-text.visible { opacity: 1; transform: scale(1); }
.intro-text.zoom-out {
  opacity: 0;
  transform: scale(3);
  transition: opacity 0.6s ease-in, transform 0.8s cubic-bezier(0.55, 0, 0.1, 1);
}
.intro-line {
  position: absolute;
  background: rgba(180, 140, 90, 0.3);
  z-index: 1;
}
.intro-line-h {
  width: 0;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-line-h.expand { width: 120%; }
.intro-line-v {
  height: 0;
  width: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: height 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.intro-line-v.expand { height: 120%; }
.intro-line.fade-out { opacity: 0; transition: opacity 0.4s ease; }
.intro-curtain-left, .intro-curtain-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 3;
  transition: transform 1s cubic-bezier(0.76, 0, 0.24, 1);
}
.intro-curtain-left { left: 0; background: #1a1108; }
.intro-curtain-right { right: 0; background: #1a1108; }
.intro-curtain-left.open { transform: translateX(-105%); }
.intro-curtain-right.open { transform: translateX(105%); }
.intro-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(180, 140, 90, 0.4);
  opacity: 0;
  z-index: 1;
}
#homepage {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease;
}
#homepage.visible { opacity: 1; visibility: visible; }

/* ——— Component Styles ——— */
.bg-pattern {
  background-image: radial-gradient(circle at 1px 1px, rgba(180, 140, 90, 0.07) 1px, transparent 0);
  background-size: 40px 40px;
}

/* Nav underline */
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #cdaa7a;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* Mobile menu */
.mobile-menu {
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-link:hover { color: #cdaa7a !important; }

/* Service cards */
.service-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.service-card:hover { transform: translateY(-8px); }
.service-card .card-icon {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card:hover .card-icon { transform: scale(1.1) rotate(-3deg); }
.service-card .card-title { transition: color 0.3s ease; }

/* Stat cards */
.stat-card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(160, 123, 72, 0.15);
}

/* Service pills */
.service-pill { transition: all 0.3s ease; }
.service-pill:hover {
  background: #2d2010;
  color: white;
  transform: translateY(-2px);
}

/* Testimonial cards */
.testimonial-card {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}
.testimonial-card:hover {
  transform: translateY(-6px);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0e6d6; }
::-webkit-scrollbar-thumb { background: #cdaa7a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #b89260; }

/* Selection */
::selection {
  background: rgba(205, 170, 122, 0.3);
  color: inherit;
}

/* Form success */
.hidden { display: none; }

/* Hover gap utility */
.hover\:gap-3:hover { gap: 0.75rem; }

/* ——— Responsive (md: 768px) ——— */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:hidden { display: none; }
  .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\:flex-row { flex-direction: row; }
  .md\:items-center { align-items: center; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-36 { padding-top: 9rem; padding-bottom: 9rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-10 { padding: 2.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-16 { gap: 4rem; }
  .md\:gap-20 { gap: 5rem; }
  .md\:text-sm { font-size: 0.875rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-4xl { font-size: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; }
  .md\:text-6xl { font-size: 3.75rem; }
  .md\:text-7xl { font-size: 4.5rem; }
  .md\:h-10 { height: 2.5rem; }
}

/* ——— Responsive (lg: 1024px) ——— */
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-8xl { font-size: 6rem; }
  .lg\:text-\[5\.5rem\] { font-size: 5.5rem; }
}

/* ——— Responsive (xl: 1280px) ——— */
@media (min-width: 1280px) {
  .xl\:text-8xl { font-size: 6rem; }
}
