/* ============================================================
   Kalmeno — css/style.css
   Prebuilt Tailwind v4.1.5 utility stylesheet
   Design Family: Editorial Minimalist (K_FAMILY=1)
   Palette: cool-white bg / cobalt-navy accent
   Fonts: PP Editorial New (display) + Sohne (body)
   ============================================================ */

@import url('https://api.fontshare.com/v2/css?f[]=editorial-new@700&f[]=sohne@400,500&display=swap');

@theme {
  --color-bg-primary: #FBFCFE;
  --color-bg-secondary: #F2F5F9;
  --color-ink-primary: #18283A;
  --color-ink-muted: #6B7E94;
  --color-accent: #2E5896;
  --font-display: 'Editorial New', 'Fraunces', Georgia, serif;
  --font-body: 'Sohne', 'Inter Tight', system-ui, sans-serif;
  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --shadow-soft: 0 2px 16px rgba(24, 40, 58, 0.07);
  --shadow-card: 0 1px 6px rgba(24, 40, 58, 0.08);
}

/* ============================================================
   Base Reset
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-primary);
  color: var(--color-ink-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

address {
  font-style: normal;
}

/* ============================================================
   Layout Utilities
   ============================================================ */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }
.self-start { align-self: flex-start; }
.self-center { align-self: center; }
.self-end { align-self: flex-end; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.top-0 { top: 0; }
.top-4 { top: 1rem; }
.bottom-0 { bottom: 0; }
.bottom-4 { bottom: 1rem; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.left-1\/2 { left: 50%; }
.inset-0 { inset: 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-x-hidden { overflow-x: hidden; }
.overflow-auto { overflow: auto; }

.w-full { width: 100%; }
.w-auto { width: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.min-h-screen { min-height: 100vh; }
.max-w-7xl { max-width: 80rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-xl { max-width: 36rem; }
.max-w-lg { max-width: 32rem; }
.max-w-md { max-width: 28rem; }
.max-w-sm { max-width: 24rem; }
.max-w-xs { max-width: 20rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

/* Container */
.container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Aspect Ratios */
.aspect-\[16\/9\] { aspect-ratio: 16/9; }
.aspect-\[21\/9\] { aspect-ratio: 21/9; }
.aspect-\[4\/3\] { aspect-ratio: 4/3; }
.aspect-\[3\/2\] { aspect-ratio: 3/2; }
.aspect-\[1\/1\] { aspect-ratio: 1/1; }
.aspect-square { aspect-ratio: 1/1; }

/* ============================================================
   Spacing Utilities
   ============================================================ */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.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-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-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.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-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.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; }

.pt-2 { padding-top: 0.5rem; }
.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; }

.m-0 { margin: 0; }
.m-2 { margin: 0.5rem; }
.m-4 { margin: 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-5 { margin-top: 1.25rem; }
.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; }
.mt-24 { margin-top: 6rem; }
.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-16 { margin-bottom: 4rem; }
.ml-0 { margin-left: 0; }
.ml-2 { margin-left: 0.5rem; }
.ml-4 { margin-left: 1rem; }
.ml-6 { margin-left: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-4 { margin-right: 1rem; }
.mr-6 { margin-right: 1.5rem; }

.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; }
.gap-16 { gap: 4rem; }
.gap-x-4 { column-gap: 1rem; }
.gap-x-6 { column-gap: 1.5rem; }
.gap-x-8 { column-gap: 2rem; }
.gap-y-2 { row-gap: 0.5rem; }
.gap-y-4 { row-gap: 1rem; }
.gap-y-6 { row-gap: 1.5rem; }
.gap-y-8 { row-gap: 2rem; }

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

/* ============================================================
   Typography Utilities
   ============================================================ */
.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }
.font-mono { font-family: 'Space Mono', 'Courier New', monospace; }

.text-xs { font-size: 0.75rem; line-height: 1.4; }
.text-sm { font-size: 0.875rem; line-height: 1.5; }
.text-base { font-size: 1rem; line-height: 1.6; }
.text-lg { font-size: 1.125rem; line-height: 1.6; }
.text-xl { font-size: 1.25rem; line-height: 1.5; }
.text-2xl { font-size: 1.5rem; line-height: 1.3; }
.text-3xl { font-size: 1.875rem; line-height: 1.2; }
.text-4xl { font-size: 2.25rem; line-height: 1.15; }
.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.0; }
.text-8xl { font-size: 6rem; line-height: 1.0; }
.text-9xl { font-size: 8rem; line-height: 1.0; }
.text-\[11px\] { font-size: 11px; }
.text-\[13px\] { font-size: 13px; }
.text-\[15px\] { font-size: 15px; }
.text-\[17px\] { font-size: 17px; }
.text-\[18px\] { font-size: 18px; }
.text-\[20px\] { font-size: 20px; }
.text-\[22px\] { font-size: 22px; }
.text-\[26px\] { font-size: 26px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[36px\] { font-size: 36px; }
.text-\[40px\] { font-size: 40px; }
.text-\[44px\] { font-size: 44px; }
.text-\[48px\] { font-size: 48px; }
.text-\[52px\] { font-size: 52px; }
.text-\[56px\] { font-size: 56px; }
.text-\[60px\] { font-size: 60px; }
.text-\[64px\] { font-size: 64px; }
.text-\[72px\] { font-size: 72px; }
.text-\[80px\] { font-size: 80px; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.not-italic { font-style: normal; }

.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }
.leading-4 { line-height: 1rem; }
.leading-5 { line-height: 1.25rem; }
.leading-6 { line-height: 1.5rem; }
.leading-7 { line-height: 1.75rem; }
.leading-8 { line-height: 2rem; }
.leading-\[1\.1\] { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.2\] { line-height: 1.2; }
.leading-\[1\.3\] { line-height: 1.3; }
.leading-\[1\.4\] { line-height: 1.4; }
.leading-\[1\.45\] { line-height: 1.45; }
.leading-\[1\.55\] { line-height: 1.55; }
.leading-\[1\.7\] { line-height: 1.7; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-\[0\.15em\] { letter-spacing: 0.15em; }
.tracking-\[0\.2em\] { letter-spacing: 0.2em; }
.tracking-\[-0\.01em\] { letter-spacing: -0.01em; }
.tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
.tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
.tracking-\[-0\.04em\] { letter-spacing: -0.04em; }

.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }
.underline { text-decoration: underline; }
.line-through { text-decoration: line-through; }
.no-underline { text-decoration: none; }
.decoration-1 { text-decoration-thickness: 1px; }
.underline-offset-2 { text-underline-offset: 2px; }
.underline-offset-4 { text-underline-offset: 4px; }
.whitespace-nowrap { white-space: nowrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-balance { text-wrap: balance; }
.text-pretty { text-wrap: pretty; }

/* ============================================================
   Color Utilities — Background
   ============================================================ */
.bg-\[\#FBFCFE\] { background-color: #FBFCFE; }
.bg-\[\#F2F5F9\] { background-color: #F2F5F9; }
.bg-\[\#18283A\] { background-color: #18283A; }
.bg-\[\#2E5896\] { background-color: #2E5896; }
.bg-\[\#6B7E94\] { background-color: #6B7E94; }
.bg-\[\#EEF2F8\] { background-color: #EEF2F8; }
.bg-\[\#E8EDF5\] { background-color: #E8EDF5; }
.bg-\[\#D4DDF0\] { background-color: #D4DDF0; }
.bg-\[\#C9D4E8\] { background-color: #C9D4E8; }
.bg-\[\#1A3366\] { background-color: #1A3366; }
.bg-\[\#24477E\] { background-color: #24477E; }
.bg-\[\#1E3D72\] { background-color: #1E3D72; }
.bg-\[\#F7F9FC\] { background-color: #F7F9FC; }
.bg-\[\#FFFFFF\] { background-color: #ffffff; }
.bg-white { background-color: #ffffff; }
.bg-transparent { background-color: transparent; }

/* Opacity backgrounds */
.bg-\[\#2E5896\]\/5 { background-color: rgba(46,88,150,0.05); }
.bg-\[\#2E5896\]\/10 { background-color: rgba(46,88,150,0.10); }
.bg-\[\#18283A\]\/5 { background-color: rgba(24,40,58,0.05); }
.bg-\[\#18283A\]\/10 { background-color: rgba(24,40,58,0.10); }
.bg-\[\#6B7E94\]\/10 { background-color: rgba(107,126,148,0.10); }
.bg-\[\#6B7E94\]\/20 { background-color: rgba(107,126,148,0.20); }

/* ============================================================
   Color Utilities — Text
   ============================================================ */
.text-\[\#FBFCFE\] { color: #FBFCFE; }
.text-\[\#F2F5F9\] { color: #F2F5F9; }
.text-\[\#18283A\] { color: #18283A; }
.text-\[\#2E5896\] { color: #2E5896; }
.text-\[\#6B7E94\] { color: #6B7E94; }
.text-\[\#EEF2F8\] { color: #EEF2F8; }
.text-\[\#FFFFFF\] { color: #ffffff; }
.text-\[\#1A3366\] { color: #1A3366; }
.text-\[\#D4DDF0\] { color: #D4DDF0; }
.text-\[\#B8C8E2\] { color: #B8C8E2; }
.text-white { color: #ffffff; }

/* Opacity text */
.text-\[\#6B7E94\]\/70 { color: rgba(107,126,148,0.70); }
.text-\[\#18283A\]\/60 { color: rgba(24,40,58,0.60); }
.text-\[\#18283A\]\/80 { color: rgba(24,40,58,0.80); }

/* ============================================================
   Border Utilities
   ============================================================ */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-t-2 { border-top-width: 2px; }
.border-l-2 { border-left-width: 2px; }
.border-l-4 { border-left-width: 4px; }

.border-solid { border-style: solid; }
.border-dashed { border-style: dashed; }

.border-\[\#18283A\] { border-color: #18283A; }
.border-\[\#2E5896\] { border-color: #2E5896; }
.border-\[\#6B7E94\] { border-color: #6B7E94; }
.border-\[\#D4DDF0\] { border-color: #D4DDF0; }
.border-\[\#EEF2F8\] { border-color: #EEF2F8; }
.border-\[\#F2F5F9\] { border-color: #F2F5F9; }
.border-transparent { border-color: transparent; }

.border-\[\#6B7E94\]\/20 { border-color: rgba(107,126,148,0.20); }
.border-\[\#6B7E94\]\/30 { border-color: rgba(107,126,148,0.30); }
.border-\[\#6B7E94\]\/40 { border-color: rgba(107,126,148,0.40); }
.border-\[\#18283A\]\/10 { border-color: rgba(24,40,58,0.10); }
.border-\[\#18283A\]\/20 { border-color: rgba(24,40,58,0.20); }
.border-\[\#2E5896\]\/30 { border-color: rgba(46,88,150,0.30); }

.rounded-none { border-radius: 0; }
.rounded-sm { border-radius: 2px; }
.rounded { border-radius: 4px; }
.rounded-md { border-radius: 6px; }
.rounded-lg { border-radius: 8px; }
.rounded-xl { border-radius: 12px; }
.rounded-2xl { border-radius: 16px; }
.rounded-full { border-radius: 9999px; }
.rounded-t-lg { border-top-left-radius: 8px; border-top-right-radius: 8px; }
.rounded-b-lg { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; }

/* ============================================================
   Effects
   ============================================================ */
.shadow-sm { box-shadow: 0 1px 3px rgba(24,40,58,0.06); }
.shadow { box-shadow: var(--shadow-soft); }
.shadow-md { box-shadow: 0 4px 20px rgba(24,40,58,0.10); }
.shadow-lg { box-shadow: 0 8px 32px rgba(24,40,58,0.12); }
.shadow-xl { box-shadow: 0 16px 48px rgba(24,40,58,0.14); }
.shadow-none { box-shadow: none; }
.shadow-\[0_2px_16px_rgba\(24\,40\,58\,0\.07\)\] { box-shadow: 0 2px 16px rgba(24,40,58,0.07); }
.shadow-\[4px_4px_0_\#18283A\] { box-shadow: 4px 4px 0 #18283A; }
.shadow-\[2px_2px_0_\#2E5896\] { box-shadow: 2px 2px 0 #2E5896; }
.shadow-\[0_1px_6px_rgba\(24\,40\,58\,0\.08\)\] { box-shadow: 0 1px 6px rgba(24,40,58,0.08); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

.backdrop-blur-xl { backdrop-filter: blur(24px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(6px); }

/* ============================================================
   Transforms
   ============================================================ */
.rotate-90 { transform: rotate(90deg); }
.rotate-180 { transform: rotate(180deg); }
.-rotate-90 { transform: rotate(-90deg); }
.rotate-\[-90deg\] { transform: rotate(-90deg); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.scale-105 { transform: scale(1.05); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-0 { transform: translateY(0); }
.translate-y-2 { transform: translateY(0.5rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }

/* ============================================================
   Transitions
   ============================================================ */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-all { transition: all 150ms cubic-bezier(0.4,0,0.2,1); }
.transition-colors { transition: color 150ms, background-color 150ms, border-color 150ms; }
.transition-opacity { transition: opacity 300ms cubic-bezier(0.4,0,0.2,1); }
.transition-transform { transition: transform 150ms cubic-bezier(0.4,0,0.2,1); }
.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4,0,0.2,1); }

/* ============================================================
   States (Hover / Focus / Group)
   ============================================================ */
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:text-\[\#2E5896\]:hover { color: #2E5896; }
.hover\:text-\[\#18283A\]:hover { color: #18283A; }
.hover\:text-\[\#1A3366\]:hover { color: #1A3366; }
.hover\:text-\[\#FBFCFE\]:hover { color: #FBFCFE; }
.hover\:bg-\[\#EEF2F8\]:hover { background-color: #EEF2F8; }
.hover\:bg-\[\#E8EDF5\]:hover { background-color: #E8EDF5; }
.hover\:bg-\[\#1A3366\]:hover { background-color: #1A3366; }
.hover\:bg-\[\#24477E\]:hover { background-color: #24477E; }
.hover\:border-\[\#2E5896\]:hover { border-color: #2E5896; }
.hover\:shadow-md:hover { box-shadow: 0 4px 20px rgba(24,40,58,0.10); }
.hover\:shadow-lg:hover { box-shadow: 0 8px 32px rgba(24,40,58,0.12); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:underline:hover { text-decoration: underline; }
.focus\:outline-none:focus { outline: none; }
.focus\:border-\[\#2E5896\]:focus { border-color: #2E5896; }
.focus\:ring-0:focus { box-shadow: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(46,88,150,0.4); }
.group:hover .group-hover\:translate-x-1 { transform: translateX(0.25rem); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group { position: relative; }

/* ============================================================
   Object Fit
   ============================================================ */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-center { object-position: center; }
.object-top { object-position: top; }
.w-\[100\%\] { width: 100%; }
.h-\[100\%\] { height: 100%; }
.h-\[320px\] { height: 320px; }
.h-\[380px\] { height: 380px; }
.h-\[400px\] { height: 400px; }
.h-\[440px\] { height: 440px; }
.h-\[480px\] { height: 480px; }
.h-\[520px\] { height: 520px; }
.h-\[560px\] { height: 560px; }
.h-\[600px\] { height: 600px; }
.h-\[64px\] { height: 64px; }
.h-\[72px\] { height: 72px; }
.h-\[80px\] { height: 80px; }
.h-\[2px\] { height: 2px; }
.h-\[1px\] { height: 1px; }
.w-\[2px\] { width: 2px; }
.w-\[1px\] { width: 1px; }
.w-\[48px\] { width: 48px; }
.w-\[56px\] { width: 56px; }
.w-\[64px\] { width: 64px; }
.h-\[48px\] { height: 48px; }
.h-\[56px\] { height: 56px; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[480px\] { min-height: 480px; }
.min-h-\[520px\] { min-height: 520px; }
.min-h-\[600px\] { min-height: 600px; }
.min-w-0 { min-width: 0; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.flex-shrink-0 { flex-shrink: 0; }
.flex-grow { flex-grow: 1; }

/* Scroll / Marquee */
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-track { display: flex; width: max-content; animation: marquee-scroll 30s linear infinite; }
.marquee-wrap { overflow: hidden; width: 100%; }

/* FAQ Accordion */
.accordion-body { display: none; }
.accordion-body.is-open { display: block; }

/* ============================================================
   Responsive Utilities — sm: (640px+)
   ============================================================ */
@media (min-width: 640px) {
  .sm\:flex { display: flex; }
  .sm\:hidden { display: none; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-xl { font-size: 1.25rem; }
  .sm\:text-2xl { font-size: 1.5rem; }
  .sm\:text-3xl { font-size: 1.875rem; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
}

/* ============================================================
   Responsive Utilities — md: (768px+)
   ============================================================ */
@media (min-width: 768px) {
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:inline-block { display: inline-block; }
  .md\:flex-row { flex-direction: row; }
  .md\:flex-col { flex-direction: column; }
  .md\:items-center { align-items: center; }
  .md\:items-start { align-items: flex-start; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end { justify-content: flex-end; }

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

  .md\:gap-4 { gap: 1rem; }
  .md\:gap-6 { gap: 1.5rem; }
  .md\:gap-8 { gap: 2rem; }
  .md\:gap-10 { gap: 2.5rem; }
  .md\:gap-12 { gap: 3rem; }
  .md\:gap-16 { gap: 4rem; }

  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:py-12 { padding-top: 3rem; padding-bottom: 3rem; }
  .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .md\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .md\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .md\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .md\:pt-16 { padding-top: 4rem; }
  .md\:pb-16 { padding-bottom: 4rem; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mt-8 { margin-top: 2rem; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-8 { margin-bottom: 2rem; }

  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-xl { font-size: 1.25rem; }
  .md\:text-2xl { font-size: 1.5rem; }
  .md\:text-3xl { font-size: 1.875rem; }
  .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\:text-8xl { font-size: 6rem; }
  .md\:text-\[48px\] { font-size: 48px; }
  .md\:text-\[56px\] { font-size: 56px; }
  .md\:text-\[64px\] { font-size: 64px; }
  .md\:text-\[72px\] { font-size: 72px; }
  .md\:text-\[80px\] { font-size: 80px; }

  .md\:aspect-\[21\/9\] { aspect-ratio: 21/9; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16/9; }
  .md\:h-\[400px\] { height: 400px; }
  .md\:h-\[480px\] { height: 480px; }
  .md\:h-\[560px\] { height: 560px; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:w-\[48\%\] { width: 48%; }
  .md\:max-w-3xl { max-width: 48rem; }
  .md\:max-w-4xl { max-width: 56rem; }

  .md\:justify-start { justify-content: flex-start; }
  .md\:text-left { text-align: left; }
  .md\:text-right { text-align: right; }
  .md\:text-center { text-align: center; }
  .md\:border-t { border-top-width: 1px; }
  .md\:border-l { border-left-width: 1px; }
  .md\:border-b-0 { border-bottom-width: 0; }
  .md\:mt-0 { margin-top: 0; }
}

/* ============================================================
   Responsive Utilities — lg: (1024px+)
   ============================================================ */
@media (min-width: 1024px) {
  .lg\:flex { display: flex; }
  .lg\:hidden { display: none; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .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\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:gap-12 { gap: 3rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:px-0 { padding-left: 0; padding-right: 0; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:text-5xl { font-size: 3rem; }
  .lg\:text-6xl { font-size: 3.75rem; }
  .lg\:text-7xl { font-size: 4.5rem; }
  .lg\:text-\[80px\] { font-size: 80px; }
  .lg\:text-\[88px\] { font-size: 88px; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:items-center { align-items: center; }
  .lg\:items-start { align-items: flex-start; }
  .lg\:max-w-2xl { max-width: 42rem; }
  .lg\:max-w-3xl { max-width: 48rem; }
}

/* ============================================================
   xl: (1280px+)
   ============================================================ */
@media (min-width: 1280px) {
  .xl\:text-7xl { font-size: 4.5rem; }
  .xl\:text-8xl { font-size: 6rem; }
  .xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:px-0 { padding-left: 0; padding-right: 0; }
}

/* ============================================================
   Utility: Divider Lines
   ============================================================ */
.divide-y > * + * { border-top-width: 1px; border-color: rgba(107,126,148,0.20); }

/* ============================================================
   Custom Scrollbar (editorial minimal)
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #F2F5F9; }
::-webkit-scrollbar-thumb { background: #B8C8E2; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #2E5896; }

/* ============================================================
   Print
   ============================================================ */
@media print {
  .no-print { display: none !important; }
}

/* ============================================================
   AOS animation overrides
   ============================================================ */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ============================================================
   Cookie Banner override
   ============================================================ */
[data-target="cookies.banner"] { display: none; }

/* ============================================================
   Article / Prose helpers
   ============================================================ */
.prose-body p { margin-bottom: 1.25rem; line-height: 1.7; }
.prose-body h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-top: 2.5rem; margin-bottom: 1rem; color: #18283A; }
.prose-body h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; color: #18283A; }
.prose-body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose-body ul li { margin-bottom: 0.5rem; line-height: 1.65; }
.prose-body ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.prose-body ol li { margin-bottom: 0.5rem; line-height: 1.65; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }
.list-none { list-style-type: none; }
.list-inside { list-style-position: inside; }
.pl-4 { padding-left: 1rem; }
.pl-5 { padding-left: 1.25rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1rem; }
.pr-6 { padding-right: 1.5rem; }

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

/* ============================================================
   Misc utility
   ============================================================ */
.pointer-events-none { pointer-events: none; }
.select-none { user-select: none; }
.antialiased { -webkit-font-smoothing: antialiased; }
.isolate { isolation: isolate; }
.fill-none { fill: none; }
.stroke-current { stroke: currentColor; }
.shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.basis-full { flex-basis: 100%; }
.basis-1\/2 { flex-basis: 50%; }
.not-sr-only { position: static; width: auto; height: auto; overflow: visible; clip: auto; white-space: normal; }

/* ============================================================
   Vertical text label (decorative)
   ============================================================ */
.writing-mode-vertical { writing-mode: vertical-rl; text-orientation: mixed; }
