/* ============================================================
   FestiWell — main.css
   Hand-written replacement for cdn.tailwindcss.com.
   Provides only the utility classes actually used in index.html
   and festiwell-content.js (plus planned additions).
   ============================================================ */

/* --- 1. Custom Properties ---------------------------------- */
:root {
  --cream: #f4f2f0;
  --ink: #2a2628;
  --ink-rgb: 42, 38, 40;
  --brand: #6b4550;
  --brand-rgb: 107, 69, 80;
  --brand-dark: #52343e;
  --brand-soft: #f0eaec;
  --brand-soft-rgb: 240, 234, 236;
  --gold: #9a8a73;
  --gold-dark: #6e6254;
  --gold-muted: #b5a896;
  --gold-surface: #ebe6df;
  --stone-50: #fafaf9;
  --stone-200: #e7e5e4;
  --stone-200-rgb: 231, 229, 228;
  --stone-300: #d6d3d1;
  --stone-300-rgb: 214, 211, 209;
  --white: #ffffff;
  --rose-50: #fff1f2;
  --rose-100: #ffe4e6;
  --rose-100-rgb: 255, 228, 230;
  --rose-200: #fecdd3;
  --amber-50: #fffbeb;
  --amber-100: #fef3c7;
  --amber-100-rgb: 254, 243, 199;
  --orange-50: #fff7ed;
  --shadow-card: 0 1px 3px rgba(42,38,40,0.06), 0 8px 24px rgba(42,38,40,0.06);
  --shadow-ribbon: 0 1px 2px rgba(42,38,40,0.06);
}

/* --- 2. Reset / Base --------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  line-height: 1.5;
}
html.scroll-smooth { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, sans-serif;
  color: var(--ink);
  background-color: var(--cream);
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: inherit; }
button, input, select, textarea { font: inherit; color: inherit; margin: 0; padding: 0; }
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; margin: 0; }
p { margin: 0; }
ul, ol { list-style: none; margin: 0; padding: 0; }
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* --- 3. Typography ----------------------------------------- */
.font-display { font-family: "Cormorant Garamond", Georgia, serif; }
.font-sans   { font-family: "Source Sans 3", system-ui, sans-serif; }
.font-medium   { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold     { font-weight: 700; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }
.text-sm   { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem;     line-height: 1.5rem; }
.text-lg   { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl   { font-size: 1.25rem;  line-height: 1.75rem; }
.text-2xl  { font-size: 1.5rem;   line-height: 2rem; }
.text-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl  { font-size: 2.25rem;  line-height: 2.5rem; }
.text-5xl  { font-size: 3rem;     line-height: 1; }
.tracking-wide { letter-spacing: 0.025em; }
.leading-snug    { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.text-center  { text-align: center; }
.text-left    { text-align: left; }
.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }
.underline { text-decoration-line: underline; }
.underline-offset-\[6px\] { text-underline-offset: 6px; }
.decoration-rose-200     { text-decoration-color: var(--rose-200); }
.tabular-nums { font-variant-numeric: tabular-nums; }
.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; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* --- 4. Colors --------------------------------------------- */
.text-white       { color: #fff; }
.text-ink         { color: var(--ink); }
.text-ink\/40     { color: rgba(var(--ink-rgb), 0.4); }
.text-ink\/65     { color: rgba(var(--ink-rgb), 0.65); }
.text-ink\/70     { color: rgba(var(--ink-rgb), 0.7); }
.text-ink\/75     { color: rgba(var(--ink-rgb), 0.75); }
.text-ink\/80     { color: rgba(var(--ink-rgb), 0.8); }
.text-ink\/85     { color: rgba(var(--ink-rgb), 0.85); }
.text-ink\/90     { color: rgba(var(--ink-rgb), 0.9); }
.text-brand       { color: var(--brand); }
.text-brand\/95   { color: rgba(var(--brand-rgb), 0.95); }
.text-brand-dark  { color: var(--brand-dark); }
.text-gold-dark   { color: var(--gold-dark); }
.bg-cream     { background-color: var(--cream); }
.bg-white     { background-color: #fff; }
.bg-white\/90 { background-color: rgba(255,255,255,0.9); }
.bg-brand      { background-color: var(--brand); }
.bg-brand-dark { background-color: var(--brand-dark); }
.bg-brand-soft { background-color: var(--brand-soft); }
.bg-gold-surface { background-color: var(--gold-surface); }
.bg-stone-50\/80 { background-color: rgba(250,250,249,0.8); }
.bg-black\/50    { background-color: rgba(0,0,0,0.5); }

/* --- 5. Layout --------------------------------------------- */
.block   { display: block; }
.flex    { display: flex; }
.grid    { display: grid; }
.hidden  { display: none; }
.inline-flex   { display: inline-flex; }
.inline-block  { display: inline-block; }
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.flex-1        { flex: 1 1 0%; }
.shrink-0      { flex-shrink: 0; }
.grow          { flex-grow: 1; }
.items-center  { align-items: center; }
.items-stretch { align-items: stretch; }
.items-start   { align-items: flex-start; }
.justify-center  { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end     { justify-content: flex-end; }
.gap-1  { gap: 0.25rem; }
.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; }
.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)); }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* --- 6. Positioning ---------------------------------------- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed    { position: fixed; }
.sticky   { position: sticky; }
.inset-0  { inset: 0; }
.top-0    { top: 0; }
.top-4    { top: 1rem; }
.right-0  { right: 0; }
.bottom-0 { bottom: 0; }
.left-0   { left: 0; }
.top-full { top: 100%; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* --- 7. Sizing --------------------------------------------- */
.w-auto  { width: auto; }
.w-full  { width: 100%; }
.w-11    { width: 2.75rem; }
.w-64    { width: 16rem; }
.h-auto  { height: auto; }
.h-11    { height: 2.75rem; }
.h-12    { height: 3rem; }
.h-48    { height: 12rem; }
.h-56    { height: 14rem; }
.min-h-screen { min-height: 100vh; }
.max-w-xs  { max-width: 20rem; }
.max-w-md  { max-width: 28rem; }
.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; }
.aspect-video  { aspect-ratio: 16 / 9; }
.aspect-square { aspect-ratio: 1 / 1; }

/* --- 8. Spacing -------------------------------------------- */
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-1 { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.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-9 { margin-top: 2.25rem; }
.mt-10 { margin-top: 2.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-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.ml-2  { margin-left: 0.5rem; }
.p-2  { padding: 0.5rem; }
.p-3  { padding: 0.75rem; }
.p-4  { padding: 1rem; }
.p-6  { padding: 1.5rem; }
.p-8  { padding: 2rem; }
.px-3   { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4   { padding-left: 1rem;    padding-right: 1rem; }
.px-6   { padding-left: 1.5rem;  padding-right: 1.5rem; }
.px-8   { padding-left: 2rem;    padding-right: 2rem; }
.px-9   { padding-left: 2.25rem; padding-right: 2.25rem; }
.py-2   { padding-top: 0.5rem;  padding-bottom: 0.5rem; }
.py-3   { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-9   { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.py-10  { padding-top: 2.5rem;  padding-bottom: 2.5rem; }
.py-16  { padding-top: 4rem;    padding-bottom: 4rem; }
.py-4   { padding-top: 1rem;   padding-bottom: 1rem; }
.pt-4   { padding-top: 1rem; }
.pt-6   { padding-top: 1.5rem; }
.pt-12  { padding-top: 3rem; }
.pb-2   { padding-bottom: 0.5rem; }
.pb-4   { padding-bottom: 1rem; }
.pb-6   { padding-bottom: 1.5rem; }
.pb-16  { padding-bottom: 4rem; }

/* --- 9. Borders -------------------------------------------- */
.border   { border-width: 1px; border-style: solid; border-color: var(--stone-200); }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-y { border-top-width: 1px; border-top-style: solid; border-bottom-width: 1px; border-bottom-style: solid; }
.border-t-\[3px\] { border-top-width: 3px; border-top-style: solid; }
.border-stone-200\/80 { border-color: rgba(var(--stone-200-rgb), 0.8); }
.border-stone-200\/90 { border-color: rgba(var(--stone-200-rgb), 0.9); }
.border-stone-300\/90 { border-color: rgba(var(--stone-300-rgb), 0.9); }
.border-stone-200     { border-color: var(--stone-200); }
.border-stone-300     { border-color: var(--stone-300); }
.border-rose-100      { border-color: var(--rose-100); }
.border-rose-100\/80  { border-color: rgba(var(--rose-100-rgb), 0.8); }
.border-rose-100\/60  { border-color: rgba(var(--rose-100-rgb), 0.6); }
.border-amber-100\/70 { border-color: rgba(var(--amber-100-rgb), 0.7); }
.border-brand         { border-color: var(--brand); }
.border-brand-soft    { border-color: var(--brand-soft); }
.border-t-gold  { border-top-color: var(--gold); }
.border-t-brand { border-top-color: var(--brand); }
.rounded-lg   { border-radius: 0.5rem; }
.rounded-xl   { border-radius: 0.75rem; }
.rounded-2xl  { border-radius: 1rem; }
.rounded-full { border-radius: 9999px; }
.rounded-t-2xl { border-top-left-radius: 1rem; border-top-right-radius: 1rem; }

/* --- 10. Backgrounds & Gradients --------------------------- */
.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)); }
.from-white        { --tw-gradient-from: #fff; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,255,255,0)); }
.from-brand-soft   { --tw-gradient-from: var(--brand-soft); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(240,234,236,0)); }
.from-gold-surface\/30 { --tw-gradient-from: rgba(235,230,223,0.3); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(235,230,223,0)); }
.from-rose-50      { --tw-gradient-from: var(--rose-50); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,241,242,0)); }
.from-amber-50\/50 { --tw-gradient-from: rgba(255,251,235,0.5); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(255,251,235,0)); }
.via-amber-50\/90  { --tw-gradient-stops: var(--tw-gradient-from), rgba(255,251,235,0.9), var(--tw-gradient-to, rgba(255,251,235,0)); }
.via-cream         { --tw-gradient-stops: var(--tw-gradient-from), var(--cream), var(--tw-gradient-to, rgba(244,242,240,0)); }
.to-cream          { --tw-gradient-to: var(--cream); }
.to-stone-50\/50   { --tw-gradient-to: rgba(250,250,249,0.5); }
.to-orange-50\/80  { --tw-gradient-to: rgba(255,247,237,0.8); }
.to-rose-50\/40    { --tw-gradient-to: rgba(255,241,242,0.4); }
.to-gold-surface   { --tw-gradient-to: var(--gold-surface); }
.to-brand-soft     { --tw-gradient-to: var(--brand-soft); }
.decoration-brand-soft { text-decoration-color: var(--brand-soft); }

/* --- 11. Shadows ------------------------------------------- */
.shadow-card   { box-shadow: var(--shadow-card); }
.shadow-ribbon { box-shadow: var(--shadow-ribbon); }
.shadow-md     { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-brand\/20 { --tw-shadow-color: rgba(var(--brand-rgb), 0.2); box-shadow: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color); }
.shadow-\[0_8px_30px_rgba\(107\,69\,80\,0\.08\)\] { box-shadow: 0 8px 30px rgba(107,69,80,0.08); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }

/* --- 12. Effects ------------------------------------------- */
.overflow-hidden   { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }
.opacity-0   { opacity: 0; }
.opacity-100 { opacity: 100; }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.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-all      { transition-property: all; 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; }
.transition-opacity   { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.ease-in-out  { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.select-none { user-select: none; }

/* --- 13. Object Fit / Position ----------------------------- */
.object-contain { object-fit: contain; }
.object-cover   { object-fit: cover; }
.object-left    { object-position: left; }
.object-center  { object-position: center; }
.object-\[center_75\%\]       { object-position: center 75%; }
.object-\[center_85\%\]       { object-position: center 85%; }

/* --- 14. Focus / Ring -------------------------------------- */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus-visible\:ring-2:focus-visible { box-shadow: 0 0 0 2px var(--tw-ring-offset-color, var(--cream)), 0 0 0 calc(2px + 2px) var(--tw-ring-color, var(--brand)); }
.focus-visible\:ring-brand\/40:focus-visible { --tw-ring-color: rgba(var(--brand-rgb), 0.4); }
.focus-visible\:ring-brand\/50:focus-visible { --tw-ring-color: rgba(var(--brand-rgb), 0.5); }
.focus-visible\:ring-offset-2:focus-visible  { --tw-ring-offset-width: 2px; }
.focus-visible\:ring-offset-cream:focus-visible   { --tw-ring-offset-color: var(--cream); }
.focus-visible\:ring-offset-orange-50:focus-visible { --tw-ring-offset-color: var(--orange-50); }
.focus\:border-brand:focus { border-color: var(--brand); }
.focus\:ring-1:focus { box-shadow: 0 0 0 1px var(--tw-ring-color, var(--brand)); }
.focus\:ring-brand\/30:focus { --tw-ring-color: rgba(var(--brand-rgb), 0.3); }

/* --- 15. Hover States -------------------------------------- */
.hover\:text-brand:hover       { color: var(--brand); }
.hover\:text-brand-dark:hover  { color: var(--brand-dark); }
.hover\:bg-brand-dark:hover    { background-color: var(--brand-dark); }
.hover\:bg-brand-soft\/80:hover { background-color: rgba(var(--brand-soft-rgb), 0.8); }
.hover\:bg-brand-soft:hover    { background-color: var(--brand-soft); }
.hover\:underline:hover { text-decoration-line: underline; }
.hover\:decoration-brand\/50:hover { text-decoration-color: rgba(var(--brand-rgb), 0.5); }
.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\:-translate-y-1:hover { transform: translateY(-0.25rem); }

/* --- 16. Supports ------------------------------------------ */
@supports (backdrop-filter: blur(1px)) {
  .supports-\[backdrop-filter\]\:bg-white\/75 { background-color: rgba(255,255,255,0.75); }
}

/* --- 17. Form utilities ------------------------------------ */
.appearance-none { appearance: none; }
.resize-none { resize: none; }
.placeholder\:text-ink\/40::placeholder { color: rgba(var(--ink-rgb), 0.4); }

/* ============================================================
   18. Responsive — sm (≥640px)
   ============================================================ */
@media (min-width: 640px) {
  .sm\:px-6   { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:p-11   { padding: 2.75rem; }
  .sm\:py-20  { padding-top: 5rem; padding-bottom: 5rem; }
  .sm\:py-24  { padding-top: 6rem; padding-bottom: 6rem; }
  .sm\:pt-16  { padding-top: 4rem; }
  .sm\:pb-20  { padding-bottom: 5rem; }
  .sm\:gap-6  { gap: 1.5rem; }
  .sm\:gap-8  { gap: 2rem; }
  .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-3xl  { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl  { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:h-14  { height: 3.5rem; }
  .sm\:h-56  { height: 14rem; }
  .sm\:w-80  { width: 20rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:flex   { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:block  { display: block; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:object-\[55\%_80\%\] { object-position: 55% 80%; }
  .sm\:object-\[75\%_90\%\] { object-position: 75% 90%; }
}

/* ============================================================
   19. Responsive — md (≥768px)
   ============================================================ */
@media (min-width: 768px) {
  .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\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:flex   { display: flex; }
}

/* ============================================================
   20. Responsive — lg (≥1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .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\:gap-10 { gap: 2.5rem; }
}

/* ============================================================
   21. Components
   ============================================================ */

/* Hero background */
.hero-bg {
  background:
    radial-gradient(ellipse 100% 70% at 50% 0%, rgba(107,69,80,0.06), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(154,138,115,0.05), transparent 45%),
    linear-gradient(180deg, #fafaf9 0%, var(--cream) 50%, var(--cream) 100%);
}
.hero-noise {
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Ribbon labels */
.ribbon {
  position: relative;
  padding: 0.7rem 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px rgba(42,38,40,0.05);
}
.ribbon--burgundy { background: var(--brand); color: #fafaf9; }
.ribbon--gold     { background: var(--gold-surface); color: var(--ink); border: 1px solid rgba(154,138,115,0.35); }

/* Sparkles */
.sparkle-wrap { pointer-events: none; }
.sparkle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.2;
  animation: twinkle 5s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50%      { opacity: 0.55; transform: scale(1.2); }
}

/* Offer card hover */
.offer-card {
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(42,38,40,0.10), 0 12px 32px rgba(42,38,40,0.08);
}

/* Package card badge */
.pkg-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  z-index: 1;
}

/* Mobile nav overlay */
.mobile-nav {
  transform: translateY(-100%);
  transition: transform 300ms ease;
}
.mobile-nav.open { transform: translateY(0); }

/* Hamburger icon */
.hamburger-bar {
  display: block;
  width: 1.25rem; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 200ms ease, opacity 200ms ease;
}

/* Gallery lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 300ms ease;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 0.5rem; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--stone-200) 25%, rgba(231,229,228,0.4) 50%, var(--stone-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 0.5rem;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px; top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
  z-index: 100;
}
.skip-link:focus {
  position: fixed;
  left: 1rem; top: 1rem;
  width: auto; height: auto;
  padding: 0.75rem 1.5rem;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  border-radius: 0.5rem;
  z-index: 200;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sparkle { animation: none; opacity: 0.25; }
  .offer-card:hover { transform: none; }
  .skeleton { animation: none; }
  .transition-colors, .transition-all, .transition-transform, .transition-opacity { transition: none; }
}
