/* ============================================================
   Galev — css/style.css
   Prebuilt Tailwind v4.1.5 utility output
   Documentary / Archive design family
   Teal-petrol accent · Cool white background · Fraunces + Manrope
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,700&family=Manrope:wght@400;500&display=swap');

/* ============================================================
   1. @THEME — Design Tokens
   ============================================================ */

@theme {
  --color-bg-primary:    #FAFCFC;
  --color-bg-secondary:  #EEF4F4;
  --color-ink-primary:   #1C2E2E;
  --color-ink-muted:     #5C7272;
  --color-accent:        #1A7A76;
  --color-accent-dark:   #145F5C;
  --color-accent-light:  #D4EEEC;
  --font-display:        'Fraunces', Georgia, serif;
  --font-body:           'Manrope', system-ui, sans-serif;
  --font-mono:           'Courier New', Courier, monospace;
  --radius-xs:           2px;
  --radius-sm:           4px;
  --radius-md:           6px;
  --radius-lg:           12px;
  --radius-full:         9999px;
  --shadow-xs:           0 1px 2px rgba(28,46,46,0.06);
  --shadow-sm:           0 2px 6px rgba(28,46,46,0.08);
  --shadow-md:           0 4px 16px rgba(28,46,46,0.10);
  --shadow-lg:           0 8px 32px rgba(28,46,46,0.12);
  --shadow-xl:           0 16px 56px rgba(28,46,46,0.14);
  --transition-fast:     150ms ease;
  --transition-base:     300ms ease;
  --transition-slow:     500ms ease;
  --spacing-section:     80px;
  --spacing-section-lg:  120px;
  --max-w-content:       1280px;
}

/* ============================================================
   2. BASE RESET
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: #FAFCFC;
}
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;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}
ul, ol { list-style: none; }
address { font-style: normal; }
svg { display: block; }

/* ============================================================
   3. TYPOGRAPHY BASE
   ============================================================ */

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

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

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

/* Flex Direction */
.flex-row       { flex-direction: row; }
.flex-col       { flex-direction: column; }
.flex-row-reverse { flex-direction: row-reverse; }
.flex-col-reverse { flex-direction: column-reverse; }

/* Flex Wrap */
.flex-wrap      { flex-wrap: wrap; }
.flex-nowrap    { flex-wrap: nowrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }

/* Flex / Grow / Shrink */
.flex-1         { flex: 1 1 0%; }
.flex-auto      { flex: 1 1 auto; }
.flex-none      { flex: none; }
.flex-shrink-0  { flex-shrink: 0; }
.flex-grow      { flex-grow: 1; }
.grow           { flex-grow: 1; }
.shrink         { flex-shrink: 1; }
.shrink-0       { flex-shrink: 0; }

/* Align Items */
.items-start    { align-items: flex-start; }
.items-end      { align-items: flex-end; }
.items-center   { align-items: center; }
.items-baseline { align-items: baseline; }
.items-stretch  { align-items: stretch; }

/* Align Self */
.self-auto      { align-self: auto; }
.self-start     { align-self: flex-start; }
.self-end       { align-self: flex-end; }
.self-center    { align-self: center; }
.self-stretch   { align-self: stretch; }

/* Justify Content */
.justify-start       { justify-content: flex-start; }
.justify-end         { justify-content: flex-end; }
.justify-center      { justify-content: center; }
.justify-between     { justify-content: space-between; }
.justify-around      { justify-content: space-around; }
.justify-evenly      { justify-content: space-evenly; }

/* Justify Items */
.justify-items-start   { justify-items: start; }
.justify-items-end     { justify-items: end; }
.justify-items-center  { justify-items: center; }
.justify-items-stretch { justify-items: stretch; }

/* Place Content */
.place-content-center  { place-content: center; }
.place-items-center    { place-items: center; }

/* Gap */
.gap-0   { gap: 0; }
.gap-px  { gap: 1px; }
.gap-0\.5 { gap: 0.125rem; }
.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-3\.5 { gap: 0.875rem; }
.gap-4   { gap: 1rem; }
.gap-5   { gap: 1.25rem; }
.gap-6   { gap: 1.5rem; }
.gap-7   { gap: 1.75rem; }
.gap-8   { gap: 2rem; }
.gap-9   { gap: 2.25rem; }
.gap-10  { gap: 2.5rem; }
.gap-11  { gap: 2.75rem; }
.gap-12  { gap: 3rem; }
.gap-14  { gap: 3.5rem; }
.gap-16  { gap: 4rem; }
.gap-20  { gap: 5rem; }
.gap-24  { gap: 6rem; }
.gap-28  { gap: 7rem; }
.gap-32  { gap: 8rem; }
.gap-x-2  { column-gap: 0.5rem; }
.gap-x-4  { column-gap: 1rem; }
.gap-x-6  { column-gap: 1.5rem; }
.gap-x-8  { column-gap: 2rem; }
.gap-x-12 { column-gap: 3rem; }
.gap-x-16 { column-gap: 4rem; }
.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; }
.gap-y-12 { row-gap: 3rem; }

/* Grid Template Columns */
.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-5  { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid-cols-6  { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.grid-cols-7  { grid-template-columns: repeat(7, minmax(0, 1fr)); }
.grid-cols-8  { grid-template-columns: repeat(8, minmax(0, 1fr)); }
.grid-cols-9  { grid-template-columns: repeat(9, minmax(0, 1fr)); }
.grid-cols-10 { grid-template-columns: repeat(10, minmax(0, 1fr)); }
.grid-cols-11 { grid-template-columns: repeat(11, minmax(0, 1fr)); }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.grid-cols-none { grid-template-columns: none; }

/* Grid Column Span */
.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-12 { grid-column: span 12 / span 12; }
.col-span-full { grid-column: 1 / -1; }

/* Grid Row Span */
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.row-span-3 { grid-row: span 3 / span 3; }

/* Grid Template Rows */
.grid-rows-1  { grid-template-rows: repeat(1, minmax(0, 1fr)); }
.grid-rows-2  { grid-template-rows: repeat(2, minmax(0, 1fr)); }
.grid-rows-3  { grid-template-rows: repeat(3, minmax(0, 1fr)); }

/* ============================================================
   5. POSITIONING
   ============================================================ */

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

.inset-0      { top: 0; right: 0; bottom: 0; left: 0; }
.inset-auto   { top: auto; right: auto; bottom: auto; left: auto; }
.top-0        { top: 0; }
.top-1        { top: 0.25rem; }
.top-2        { top: 0.5rem; }
.top-4        { top: 1rem; }
.top-8        { top: 2rem; }
.top-16       { top: 4rem; }
.top-auto     { top: auto; }
.right-0      { right: 0; }
.right-4      { right: 1rem; }
.right-8      { right: 2rem; }
.right-auto   { right: auto; }
.bottom-0     { bottom: 0; }
.bottom-4     { bottom: 1rem; }
.bottom-8     { bottom: 2rem; }
.bottom-auto  { bottom: auto; }
.left-0       { left: 0; }
.left-4       { left: 1rem; }
.left-8       { left: 2rem; }
.left-auto    { left: auto; }
.left-1\/2    { left: 50%; }

.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; }
.z-auto { z-index: auto; }

/* ============================================================
   6. SIZING
   ============================================================ */

/* Width */
.w-auto    { width: auto; }
.w-px      { width: 1px; }
.w-0       { width: 0; }
.w-0\.5    { width: 0.125rem; }
.w-1       { width: 0.25rem; }
.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-20      { width: 5rem; }
.w-24      { width: 6rem; }
.w-28      { width: 7rem; }
.w-32      { width: 8rem; }
.w-36      { width: 9rem; }
.w-40      { width: 10rem; }
.w-48      { width: 12rem; }
.w-56      { width: 14rem; }
.w-64      { width: 16rem; }
.w-72      { width: 18rem; }
.w-80      { width: 20rem; }
.w-96      { width: 24rem; }
.w-1\/2    { width: 50%; }
.w-1\/3    { width: 33.333333%; }
.w-2\/3    { width: 66.666667%; }
.w-1\/4    { width: 25%; }
.w-3\/4    { width: 75%; }
.w-1\/5    { width: 20%; }
.w-2\/5    { width: 40%; }
.w-3\/5    { width: 60%; }
.w-4\/5    { width: 80%; }
.w-full    { width: 100%; }
.w-screen  { width: 100vw; }
.w-min     { width: min-content; }
.w-max     { width: max-content; }
.w-fit     { width: fit-content; }

/* Max Width */
.max-w-none   { max-width: none; }
.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-full   { max-width: 100%; }
.max-w-screen { max-width: 100vw; }
.max-w-prose  { max-width: 65ch; }
.max-w-fit    { max-width: fit-content; }

/* Min Width */
.min-w-0      { min-width: 0; }
.min-w-full   { min-width: 100%; }
.min-w-min    { min-width: min-content; }
.min-w-max    { min-width: max-content; }
.min-w-fit    { min-width: fit-content; }

/* Height */
.h-auto    { height: auto; }
.h-px      { height: 1px; }
.h-0       { height: 0; }
.h-0\.5    { height: 0.125rem; }
.h-1       { height: 0.25rem; }
.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-20      { height: 5rem; }
.h-24      { height: 6rem; }
.h-28      { height: 7rem; }
.h-32      { height: 8rem; }
.h-36      { height: 9rem; }
.h-40      { height: 10rem; }
.h-48      { height: 12rem; }
.h-56      { height: 14rem; }
.h-64      { height: 16rem; }
.h-72      { height: 18rem; }
.h-80      { height: 20rem; }
.h-96      { height: 24rem; }
.h-full    { height: 100%; }
.h-screen  { height: 100vh; }
.h-svh     { height: 100svh; }
.h-min     { height: min-content; }
.h-max     { height: max-content; }
.h-fit     { height: fit-content; }

/* Min Height */
.min-h-0      { min-height: 0; }
.min-h-full   { min-height: 100%; }
.min-h-screen { min-height: 100vh; }
.min-h-svh    { min-height: 100svh; }
.min-h-min    { min-height: min-content; }
.min-h-max    { min-height: max-content; }
.min-h-fit    { min-height: fit-content; }

/* Aspect Ratio */
.aspect-auto    { aspect-ratio: auto; }
.aspect-square  { aspect-ratio: 1 / 1; }
.aspect-video   { aspect-ratio: 16 / 9; }

/* ============================================================
   7. SPACING — MARGIN
   ============================================================ */

.m-0    { margin: 0; }
.m-px   { margin: 1px; }
.m-1    { margin: 0.25rem; }
.m-2    { margin: 0.5rem; }
.m-3    { margin: 0.75rem; }
.m-4    { margin: 1rem; }
.m-5    { margin: 1.25rem; }
.m-6    { margin: 1.5rem; }
.m-8    { margin: 2rem; }
.m-10   { margin: 2.5rem; }
.m-12   { margin: 3rem; }
.m-16   { margin: 4rem; }
.m-auto { margin: auto; }
.mx-0   { margin-left: 0; margin-right: 0; }
.mx-1   { margin-left: 0.25rem; margin-right: 0.25rem; }
.mx-2   { margin-left: 0.5rem; margin-right: 0.5rem; }
.mx-3   { margin-left: 0.75rem; margin-right: 0.75rem; }
.mx-4   { margin-left: 1rem; margin-right: 1rem; }
.mx-6   { margin-left: 1.5rem; margin-right: 1.5rem; }
.mx-8   { margin-left: 2rem; margin-right: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.my-0   { margin-top: 0; margin-bottom: 0; }
.my-1   { margin-top: 0.25rem; margin-bottom: 0.25rem; }
.my-2   { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-3   { margin-top: 0.75rem; margin-bottom: 0.75rem; }
.my-4   { margin-top: 1rem; margin-bottom: 1rem; }
.my-6   { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.my-8   { margin-top: 2rem; margin-bottom: 2rem; }
.my-12  { margin-top: 3rem; margin-bottom: 3rem; }
.my-16  { margin-top: 4rem; margin-bottom: 4rem; }
.my-24  { margin-top: 6rem; margin-bottom: 6rem; }
.mt-0   { margin-top: 0; }
.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-7   { margin-top: 1.75rem; }
.mt-8   { margin-top: 2rem; }
.mt-10  { margin-top: 2.5rem; }
.mt-12  { margin-top: 3rem; }
.mt-14  { margin-top: 3.5rem; }
.mt-16  { margin-top: 4rem; }
.mt-20  { margin-top: 5rem; }
.mt-24  { margin-top: 6rem; }
.mt-32  { margin-top: 8rem; }
.mt-auto { margin-top: auto; }
.mb-0   { margin-bottom: 0; }
.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-7   { margin-bottom: 1.75rem; }
.mb-8   { margin-bottom: 2rem; }
.mb-10  { margin-bottom: 2.5rem; }
.mb-12  { margin-bottom: 3rem; }
.mb-14  { margin-bottom: 3.5rem; }
.mb-16  { margin-bottom: 4rem; }
.mb-20  { margin-bottom: 5rem; }
.mb-24  { margin-bottom: 6rem; }
.mb-32  { margin-bottom: 8rem; }
.mb-auto { margin-bottom: auto; }
.ml-0   { margin-left: 0; }
.ml-1   { margin-left: 0.25rem; }
.ml-2   { margin-left: 0.5rem; }
.ml-3   { margin-left: 0.75rem; }
.ml-4   { margin-left: 1rem; }
.ml-6   { margin-left: 1.5rem; }
.ml-8   { margin-left: 2rem; }
.ml-auto { margin-left: auto; }
.mr-0   { margin-right: 0; }
.mr-1   { margin-right: 0.25rem; }
.mr-2   { margin-right: 0.5rem; }
.mr-3   { margin-right: 0.75rem; }
.mr-4   { margin-right: 1rem; }
.mr-6   { margin-right: 1.5rem; }
.mr-8   { margin-right: 2rem; }
.mr-auto { margin-right: auto; }
.-mt-px { margin-top: -1px; }
.-mt-1  { margin-top: -0.25rem; }
.-mt-2  { margin-top: -0.5rem; }
.-mb-px { margin-bottom: -1px; }
.-mb-1  { margin-bottom: -0.25rem; }

/* ============================================================
   8. SPACING — PADDING
   ============================================================ */

.p-0   { padding: 0; }
.p-px  { padding: 1px; }
.p-0\.5 { padding: 0.125rem; }
.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-7   { padding: 1.75rem; }
.p-8   { padding: 2rem; }
.p-9   { padding: 2.25rem; }
.p-10  { padding: 2.5rem; }
.p-11  { padding: 2.75rem; }
.p-12  { padding: 3rem; }
.p-14  { padding: 3.5rem; }
.p-16  { padding: 4rem; }
.p-20  { padding: 5rem; }
.p-24  { padding: 6rem; }
.px-0  { padding-left: 0; padding-right: 0; }
.px-1  { padding-left: 0.25rem; padding-right: 0.25rem; }
.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-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; }
.px-12 { padding-left: 3rem; padding-right: 3rem; }
.px-14 { padding-left: 3.5rem; padding-right: 3.5rem; }
.px-16 { padding-left: 4rem; padding-right: 4rem; }
.py-0  { padding-top: 0; padding-bottom: 0; }
.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-6  { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-7  { padding-top: 1.75rem; padding-bottom: 1.75rem; }
.py-8  { padding-top: 2rem; padding-bottom: 2rem; }
.py-9  { padding-top: 2.25rem; padding-bottom: 2.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-11 { padding-top: 2.75rem; padding-bottom: 2.75rem; }
.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-0  { padding-top: 0; }
.pt-1  { padding-top: 0.25rem; }
.pt-2  { padding-top: 0.5rem; }
.pt-3  { padding-top: 0.75rem; }
.pt-4  { padding-top: 1rem; }
.pt-5  { padding-top: 1.25rem; }
.pt-6  { padding-top: 1.5rem; }
.pt-8  { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-0  { padding-bottom: 0; }
.pb-1  { padding-bottom: 0.25rem; }
.pb-2  { padding-bottom: 0.5rem; }
.pb-3  { padding-bottom: 0.75rem; }
.pb-4  { padding-bottom: 1rem; }
.pb-5  { padding-bottom: 1.25rem; }
.pb-6  { padding-bottom: 1.5rem; }
.pb-8  { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-12 { padding-bottom: 3rem; }
.pb-16 { padding-bottom: 4rem; }
.pl-0  { padding-left: 0; }
.pl-1  { padding-left: 0.25rem; }
.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; }
.pl-12 { padding-left: 3rem; }
.pr-0  { padding-right: 0; }
.pr-1  { padding-right: 0.25rem; }
.pr-2  { padding-right: 0.5rem; }
.pr-3  { padding-right: 0.75rem; }
.pr-4  { padding-right: 1rem; }
.pr-6  { padding-right: 1.5rem; }
.pr-8  { padding-right: 2rem; }
.pr-12 { padding-right: 3rem; }

/* Space Between */
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-10 > * + * { margin-top: 2.5rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* ============================================================
   9. TYPOGRAPHY
   ============================================================ */

/* Font Size */
.text-xs   { font-size: 0.75rem;  line-height: 1rem; }
.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; }
.text-6xl  { font-size: 3.75rem;  line-height: 1; }
.text-7xl  { font-size: 4.5rem;   line-height: 1; }
.text-8xl  { font-size: 6rem;     line-height: 1; }
.text-9xl  { font-size: 8rem;     line-height: 1; }

/* Font Weight */
.font-thin        { font-weight: 100; }
.font-extralight  { font-weight: 200; }
.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-black       { font-weight: 900; }

/* Font Style */
.italic     { font-style: italic; }
.not-italic { font-style: normal; }

/* Line Height */
.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-3 { line-height: 0.75rem; }
.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-9 { line-height: 2.25rem; }
.leading-10 { line-height: 2.5rem; }

/* Letter Spacing */
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-tight   { letter-spacing: -0.025em; }
.tracking-normal  { letter-spacing: 0em; }
.tracking-wide    { letter-spacing: 0.025em; }
.tracking-wider   { letter-spacing: 0.05em; }
.tracking-widest  { letter-spacing: 0.1em; }

/* Text Align */
.text-left    { text-align: left; }
.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-justify { text-align: justify; }
.text-start   { text-align: start; }
.text-end     { text-align: end; }

/* Text Transform */
.uppercase    { text-transform: uppercase; }
.lowercase    { text-transform: lowercase; }
.capitalize   { text-transform: capitalize; }
.normal-case  { text-transform: none; }

/* Text Decoration */
.underline         { text-decoration-line: underline; }
.overline          { text-decoration-line: overline; }
.line-through      { text-decoration-line: line-through; }
.no-underline      { text-decoration-line: none; }
.underline-offset-4 { text-underline-offset: 4px; }
.underline-offset-2 { text-underline-offset: 2px; }
.decoration-1      { text-decoration-thickness: 1px; }
.decoration-2      { text-decoration-thickness: 2px; }

/* Text Overflow */
.truncate     { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-ellipsis { text-overflow: ellipsis; }
.text-clip    { text-overflow: clip; }

/* Whitespace */
.whitespace-normal  { white-space: normal; }
.whitespace-nowrap  { white-space: nowrap; }
.whitespace-pre     { white-space: pre; }
.whitespace-pre-line { white-space: pre-line; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* Text Wrap */
.text-wrap    { text-wrap: wrap; }
.text-nowrap  { text-wrap: nowrap; }
.text-balance { text-wrap: balance; }
.text-pretty  { text-wrap: pretty; }

/* ============================================================
   10. COLORS — BACKGROUND
   ============================================================ */

.bg-transparent  { background-color: transparent; }
.bg-white        { background-color: #ffffff; }
.bg-black        { background-color: #000000; }
.bg-bg-primary   { background-color: var(--color-bg-primary); }
.bg-bg-secondary { background-color: var(--color-bg-secondary); }
.bg-ink-primary  { background-color: var(--color-ink-primary); }
.bg-ink-muted    { background-color: var(--color-ink-muted); }
.bg-accent       { background-color: var(--color-accent); }
.bg-accent-light { background-color: var(--color-accent-light); }

/* Arbitrary BG colors */
.bg-\[\#FAFCFC\] { background-color: #FAFCFC; }
.bg-\[\#EEF4F4\] { background-color: #EEF4F4; }
.bg-\[\#1C2E2E\] { background-color: #1C2E2E; }
.bg-\[\#1A7A76\] { background-color: #1A7A76; }
.bg-\[\#145F5C\] { background-color: #145F5C; }
.bg-\[\#5C7272\] { background-color: #5C7272; }
.bg-\[\#D4EEEC\] { background-color: #D4EEEC; }
.bg-\[\#E8F4F3\] { background-color: #E8F4F3; }
.bg-\[\#F0F8F7\] { background-color: #F0F8F7; }
.bg-\[\#263A3A\] { background-color: #263A3A; }
.bg-\[\#243232\] { background-color: #243232; }

/* ============================================================
   11. COLORS — TEXT
   ============================================================ */

.text-white        { color: #ffffff; }
.text-black        { color: #000000; }
.text-transparent  { color: transparent; }
.text-ink-primary  { color: var(--color-ink-primary); }
.text-ink-muted    { color: var(--color-ink-muted); }
.text-accent       { color: var(--color-accent); }
.text-bg-primary   { color: var(--color-bg-primary); }
.text-bg-secondary { color: var(--color-bg-secondary); }

/* Arbitrary text colors */
.text-\[\#FAFCFC\] { color: #FAFCFC; }
.text-\[\#EEF4F4\] { color: #EEF4F4; }
.text-\[\#1C2E2E\] { color: #1C2E2E; }
.text-\[\#1A7A76\] { color: #1A7A76; }
.text-\[\#5C7272\] { color: #5C7272; }
.text-\[\#145F5C\] { color: #145F5C; }
.text-\[\#D4EEEC\] { color: #D4EEEC; }
.text-\[\#263A3A\] { color: #263A3A; }
.text-\[\#ffffff\] { color: #ffffff; }

/* ============================================================
   12. COLORS — BORDER
   ============================================================ */

.border-transparent  { border-color: transparent; }
.border-white        { border-color: #ffffff; }
.border-black        { border-color: #000000; }
.border-ink-primary  { border-color: var(--color-ink-primary); }
.border-ink-muted    { border-color: var(--color-ink-muted); }
.border-accent       { border-color: var(--color-accent); }
.border-bg-primary   { border-color: var(--color-bg-primary); }
.border-bg-secondary { border-color: var(--color-bg-secondary); }

/* Arbitrary border colors */
.border-\[\#1C2E2E\] { border-color: #1C2E2E; }
.border-\[\#1A7A76\] { border-color: #1A7A76; }
.border-\[\#5C7272\] { border-color: #5C7272; }
.border-\[\#EEF4F4\] { border-color: #EEF4F4; }
.border-\[\#D4EEEC\] { border-color: #D4EEEC; }

/* Opacity border variants */
.border-\[\#5C7272\]\/10 { border-color: rgba(92,114,114,0.10); }
.border-\[\#5C7272\]\/20 { border-color: rgba(92,114,114,0.20); }
.border-\[\#5C7272\]\/30 { border-color: rgba(92,114,114,0.30); }
.border-\[\#5C7272\]\/40 { border-color: rgba(92,114,114,0.40); }
.border-\[\#1A7A76\]\/30 { border-color: rgba(26,122,118,0.30); }
.border-\[\#1A7A76\]\/50 { border-color: rgba(26,122,118,0.50); }
.border-\[\#1C2E2E\]\/10 { border-color: rgba(28,46,46,0.10); }
.border-\[\#1C2E2E\]\/20 { border-color: rgba(28,46,46,0.20); }

/* ============================================================
   13. BORDERS
   ============================================================ */

.border-0   { border-width: 0; }
.border     { border-width: 1px; }
.border-2   { border-width: 2px; }
.border-4   { border-width: 4px; }
.border-8   { border-width: 8px; }
.border-t   { border-top-width: 1px; }
.border-t-0 { border-top-width: 0; }
.border-t-2 { border-top-width: 2px; }
.border-t-4 { border-top-width: 4px; }
.border-r   { border-right-width: 1px; }
.border-r-2 { border-right-width: 2px; }
.border-b   { border-bottom-width: 1px; }
.border-b-0 { border-bottom-width: 0; }
.border-b-2 { border-bottom-width: 2px; }
.border-b-4 { border-bottom-width: 4px; }
.border-l   { border-left-width: 1px; }
.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-dotted { border-style: dotted; }
.border-none   { border-style: none; }

/* Border Radius */
.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-3xl  { border-radius: 24px; }
.rounded-full { border-radius: 9999px; }
.rounded-t-none { border-top-left-radius: 0; border-top-right-radius: 0; }
.rounded-t-md { border-top-left-radius: 6px; border-top-right-radius: 6px; }
.rounded-t-lg { border-top-left-radius: 8px; border-top-right-radius: 8px; }

/* Divide */
.divide-y > * + * { border-top-width: 1px; border-top-style: solid; }
.divide-x > * + * { border-right-width: 1px; border-right-style: solid; }
.divide-y-0 > * + * { border-top-width: 0; }
.divide-\[\#5C7272\]\/20 > * + * { border-color: rgba(92,114,114,0.20); }

/* ============================================================
   14. EFFECTS — SHADOW & OPACITY
   ============================================================ */

.shadow-none { box-shadow: none; }
.shadow-sm   { box-shadow: var(--shadow-xs); }
.shadow      { box-shadow: var(--shadow-sm); }
.shadow-md   { box-shadow: var(--shadow-md); }
.shadow-lg   { box-shadow: var(--shadow-lg); }
.shadow-xl   { box-shadow: var(--shadow-xl); }
.shadow-inner { box-shadow: inset 0 2px 4px 0 rgba(28,46,46,0.06); }

.opacity-0    { opacity: 0; }
.opacity-5    { opacity: 0.05; }
.opacity-10   { opacity: 0.10; }
.opacity-20   { opacity: 0.20; }
.opacity-25   { opacity: 0.25; }
.opacity-30   { opacity: 0.30; }
.opacity-40   { opacity: 0.40; }
.opacity-50   { opacity: 0.50; }
.opacity-60   { opacity: 0.60; }
.opacity-70   { opacity: 0.70; }
.opacity-75   { opacity: 0.75; }
.opacity-80   { opacity: 0.80; }
.opacity-90   { opacity: 0.90; }
.opacity-95   { opacity: 0.95; }
.opacity-100  { opacity: 1; }

/* Blur / Backdrop */
.blur        { filter: blur(8px); }
.blur-sm     { filter: blur(4px); }
.blur-md     { filter: blur(12px); }
.blur-lg     { filter: blur(16px); }
.blur-xl     { filter: blur(24px); }
.blur-none   { filter: blur(0); }
.backdrop-blur-sm  { backdrop-filter: blur(4px); }
.backdrop-blur     { backdrop-filter: blur(8px); }
.backdrop-blur-md  { backdrop-filter: blur(12px); }
.backdrop-blur-xl  { backdrop-filter: blur(24px); }

/* ============================================================
   15. TRANSFORMS
   ============================================================ */

.transform         { transform: translateX(var(--tw-translate-x,0)) translateY(var(--tw-translate-y,0)) rotate(var(--tw-rotate,0)) scaleX(var(--tw-scale-x,1)) scaleY(var(--tw-scale-y,1)); }
.scale-90          { transform: scale(0.90); }
.scale-95          { transform: scale(0.95); }
.scale-100         { transform: scale(1.00); }
.scale-105         { transform: scale(1.05); }
.scale-110         { transform: scale(1.10); }
.-scale-x-100      { transform: scaleX(-1); }
.rotate-0          { transform: rotate(0deg); }
.rotate-45         { transform: rotate(45deg); }
.rotate-90         { transform: rotate(90deg); }
.rotate-180        { transform: rotate(180deg); }
.-rotate-90        { transform: rotate(-90deg); }
.-rotate-45        { transform: rotate(-45deg); }
.translate-x-0     { transform: translateX(0); }
.-translate-x-1\/2 { transform: translateX(-50%); }
.translate-x-1\/2  { transform: translateX(50%); }
.translate-y-0     { transform: translateY(0); }
.-translate-y-1\/2 { transform: translateY(-50%); }
.translate-y-1\/2  { transform: translateY(50%); }
.-translate-y-full { transform: translateY(-100%); }
.translate-y-full  { transform: translateY(100%); }

/* ============================================================
   16. TRANSITIONS
   ============================================================ */

.transition         { transition-property: color, background-color, border-color, fill, stroke, opacity, box-shadow, transform, filter; transition-timing-function: ease; transition-duration: 150ms; }
.transition-all     { transition-property: all; transition-timing-function: ease; transition-duration: 150ms; }
.transition-colors  { transition-property: color, background-color, border-color, fill, stroke; transition-timing-function: ease; transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: ease; transition-duration: 150ms; }
.transition-shadow  { transition-property: box-shadow; transition-timing-function: ease; transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: ease; transition-duration: 150ms; }
.duration-75        { transition-duration: 75ms; }
.duration-100       { transition-duration: 100ms; }
.duration-150       { transition-duration: 150ms; }
.duration-200       { transition-duration: 200ms; }
.duration-300       { transition-duration: 300ms; }
.duration-500       { transition-duration: 500ms; }
.duration-700       { transition-duration: 700ms; }
.duration-1000      { transition-duration: 1000ms; }
.ease-linear        { transition-timing-function: linear; }
.ease-in            { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out           { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out        { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ============================================================
   17. OVERFLOW & VISIBILITY
   ============================================================ */

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

.visible   { visibility: visible; }
.invisible { visibility: hidden; }
.collapse  { visibility: collapse; }

/* ============================================================
   18. CURSOR & POINTER EVENTS
   ============================================================ */

.cursor-auto     { cursor: auto; }
.cursor-default  { cursor: default; }
.cursor-pointer  { cursor: pointer; }
.cursor-wait     { cursor: wait; }
.cursor-text     { cursor: text; }
.cursor-move     { cursor: move; }
.cursor-not-allowed { cursor: not-allowed; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ============================================================
   19. OBJECT FIT / POSITION
   ============================================================ */

.object-contain    { object-fit: contain; }
.object-cover      { object-fit: cover; }
.object-fill       { object-fit: fill; }
.object-none       { object-fit: none; }
.object-scale-down { object-fit: scale-down; }
.object-bottom     { object-position: bottom; }
.object-center     { object-position: center; }
.object-left       { object-position: left; }
.object-right      { object-position: right; }
.object-top        { object-position: top; }

/* ============================================================
   20. OUTLINE & RING
   ============================================================ */

.outline-none   { outline: 2px solid transparent; outline-offset: 2px; }
.outline        { outline-style: solid; }
.outline-offset-0 { outline-offset: 0; }
.outline-offset-2 { outline-offset: 2px; }
.ring-0         { box-shadow: 0 0 0 0 var(--color-accent); }
.ring-1         { box-shadow: 0 0 0 1px var(--color-accent); }
.ring-2         { box-shadow: 0 0 0 2px var(--color-accent); }
.ring-inset     { --tw-ring-inset: inset; }
.ring-accent    { box-shadow: 0 0 0 2px var(--color-accent); }

/* ============================================================
   21. LIST STYLE
   ============================================================ */

.list-none     { list-style-type: none; }
.list-disc     { list-style-type: disc; }
.list-decimal  { list-style-type: decimal; }
.list-inside   { list-style-position: inside; }
.list-outside  { list-style-position: outside; }

/* ============================================================
   22. TABLE
   ============================================================ */

.table            { display: table; }
.table-auto       { table-layout: auto; }
.table-fixed      { table-layout: fixed; }
.border-collapse  { border-collapse: collapse; }
.border-separate  { border-collapse: separate; }

/* ============================================================
   23. COLUMNS & GRID AUTO
   ============================================================ */

.columns-1  { columns: 1; }
.columns-2  { columns: 2; }
.columns-3  { columns: 3; }

.auto-cols-auto { grid-auto-columns: auto; }
.auto-cols-min  { grid-auto-columns: min-content; }
.auto-cols-max  { grid-auto-columns: max-content; }
.auto-cols-fr   { grid-auto-columns: minmax(0, 1fr); }
.auto-rows-auto { grid-auto-rows: auto; }
.auto-rows-min  { grid-auto-rows: min-content; }
.auto-rows-max  { grid-auto-rows: max-content; }
.auto-rows-fr   { grid-auto-rows: minmax(0, 1fr); }
.grid-flow-row  { grid-auto-flow: row; }
.grid-flow-col  { grid-auto-flow: column; }
.grid-flow-dense { grid-auto-flow: dense; }
.grid-flow-row-dense { grid-auto-flow: row dense; }
.grid-flow-col-dense { grid-auto-flow: column dense; }

/* ============================================================
   24. ARBITRARY VALUE CLASSES
   ============================================================ */

/* Max widths */
.max-w-\[1280px\]  { max-width: 1280px; }
.max-w-\[1200px\]  { max-width: 1200px; }
.max-w-\[1100px\]  { max-width: 1100px; }
.max-w-\[960px\]   { max-width: 960px; }
.max-w-\[900px\]   { max-width: 900px; }
.max-w-\[800px\]   { max-width: 800px; }
.max-w-\[720px\]   { max-width: 720px; }
.max-w-\[680px\]   { max-width: 680px; }
.max-w-\[640px\]   { max-width: 640px; }
.max-w-\[600px\]   { max-width: 600px; }
.max-w-\[560px\]   { max-width: 560px; }
.max-w-\[500px\]   { max-width: 500px; }
.max-w-\[480px\]   { max-width: 480px; }
.max-w-\[440px\]   { max-width: 440px; }
.max-w-\[400px\]   { max-width: 400px; }

/* Min heights */
.min-h-\[40vh\]  { min-height: 40vh; }
.min-h-\[50vh\]  { min-height: 50vh; }
.min-h-\[55vh\]  { min-height: 55vh; }
.min-h-\[60vh\]  { min-height: 60vh; }
.min-h-\[65vh\]  { min-height: 65vh; }
.min-h-\[70vh\]  { min-height: 70vh; }
.min-h-\[75vh\]  { min-height: 75vh; }
.min-h-\[80vh\]  { min-height: 80vh; }
.min-h-\[85vh\]  { min-height: 85vh; }
.min-h-\[90vh\]  { min-height: 90vh; }
.min-h-\[100px\] { min-height: 100px; }
.min-h-\[200px\] { min-height: 200px; }
.min-h-\[300px\] { min-height: 300px; }
.min-h-\[320px\] { min-height: 320px; }
.min-h-\[360px\] { min-height: 360px; }
.min-h-\[400px\] { min-height: 400px; }
.min-h-\[440px\] { min-height: 440px; }
.min-h-\[480px\] { min-height: 480px; }

/* Padding arbitrary */
.py-\[60px\]  { padding-top: 60px;  padding-bottom: 60px; }
.py-\[80px\]  { padding-top: 80px;  padding-bottom: 80px; }
.py-\[100px\] { padding-top: 100px; padding-bottom: 100px; }
.py-\[120px\] { padding-top: 120px; padding-bottom: 120px; }
.pt-\[80px\]  { padding-top: 80px; }
.pt-\[100px\] { padding-top: 100px; }
.pt-\[120px\] { padding-top: 120px; }
.pb-\[80px\]  { padding-bottom: 80px; }
.pb-\[100px\] { padding-bottom: 100px; }
.pb-\[120px\] { padding-bottom: 120px; }

/* Font sizes arbitrary */
.text-\[11px\]  { font-size: 11px;  line-height: 1.4; }
.text-\[12px\]  { font-size: 12px;  line-height: 1.4; }
.text-\[13px\]  { font-size: 13px;  line-height: 1.5; }
.text-\[14px\]  { font-size: 14px;  line-height: 1.5; }
.text-\[15px\]  { font-size: 15px;  line-height: 1.6; }
.text-\[16px\]  { font-size: 16px;  line-height: 1.6; }
.text-\[17px\]  { font-size: 17px;  line-height: 1.6; }
.text-\[18px\]  { font-size: 18px;  line-height: 1.6; }
.text-\[20px\]  { font-size: 20px;  line-height: 1.5; }
.text-\[22px\]  { font-size: 22px;  line-height: 1.4; }
.text-\[24px\]  { font-size: 24px;  line-height: 1.3; }
.text-\[28px\]  { font-size: 28px;  line-height: 1.3; }
.text-\[32px\]  { font-size: 32px;  line-height: 1.2; }
.text-\[36px\]  { font-size: 36px;  line-height: 1.15; }
.text-\[40px\]  { font-size: 40px;  line-height: 1.1; }
.text-\[48px\]  { font-size: 48px;  line-height: 1.1; }
.text-\[56px\]  { font-size: 56px;  line-height: 1.05; }
.text-\[64px\]  { font-size: 64px;  line-height: 1.0; }
.text-\[72px\]  { font-size: 72px;  line-height: 1.0; }
.text-\[80px\]  { font-size: 80px;  line-height: 0.95; }
.text-\[96px\]  { font-size: 96px;  line-height: 0.95; }
.text-\[112px\] { font-size: 112px; line-height: 0.9; }
.text-\[128px\] { font-size: 128px; line-height: 0.9; }

/* Line heights arbitrary */
.leading-\[1\.0\]  { line-height: 1.0; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.1\]  { line-height: 1.1; }
.leading-\[1\.15\] { line-height: 1.15; }
.leading-\[1\.2\]  { line-height: 1.2; }
.leading-\[1\.25\] { line-height: 1.25; }
.leading-\[1\.3\]  { line-height: 1.3; }
.leading-\[1\.35\] { line-height: 1.35; }
.leading-\[1\.4\]  { line-height: 1.4; }
.leading-\[1\.45\] { line-height: 1.45; }
.leading-\[1\.5\]  { line-height: 1.5; }
.leading-\[1\.55\] { line-height: 1.55; }
.leading-\[1\.6\]  { line-height: 1.6; }
.leading-\[1\.65\] { line-height: 1.65; }
.leading-\[1\.7\]  { line-height: 1.7; }
.leading-\[1\.75\] { line-height: 1.75; }
.leading-\[1\.8\]  { line-height: 1.8; }

/* Letter spacing arbitrary */
.tracking-\[-0\.04em\]  { letter-spacing: -0.04em; }
.tracking-\[-0\.03em\]  { letter-spacing: -0.03em; }
.tracking-\[-0\.02em\]  { letter-spacing: -0.02em; }
.tracking-\[-0\.01em\]  { letter-spacing: -0.01em; }
.tracking-\[0\.01em\]   { letter-spacing: 0.01em; }
.tracking-\[0\.02em\]   { letter-spacing: 0.02em; }
.tracking-\[0\.04em\]   { letter-spacing: 0.04em; }
.tracking-\[0\.06em\]   { letter-spacing: 0.06em; }
.tracking-\[0\.08em\]   { letter-spacing: 0.08em; }
.tracking-\[0\.10em\]   { letter-spacing: 0.10em; }
.tracking-\[0\.12em\]   { letter-spacing: 0.12em; }
.tracking-\[0\.15em\]   { letter-spacing: 0.15em; }
.tracking-\[0\.18em\]   { letter-spacing: 0.18em; }
.tracking-\[0\.20em\]   { letter-spacing: 0.20em; }
.tracking-\[0\.25em\]   { letter-spacing: 0.25em; }
.tracking-\[0\.30em\]   { letter-spacing: 0.30em; }

/* Opacity arbitrary */
.opacity-\[0\.06\]  { opacity: 0.06; }
.opacity-\[0\.08\]  { opacity: 0.08; }
.opacity-\[0\.12\]  { opacity: 0.12; }
.opacity-\[0\.15\]  { opacity: 0.15; }
.opacity-\[0\.18\]  { opacity: 0.18; }
.opacity-\[0\.20\]  { opacity: 0.20; }
.opacity-\[0\.25\]  { opacity: 0.25; }
.opacity-\[0\.30\]  { opacity: 0.30; }
.opacity-\[0\.35\]  { opacity: 0.35; }
.opacity-\[0\.40\]  { opacity: 0.40; }
.opacity-\[0\.50\]  { opacity: 0.50; }
.opacity-\[0\.60\]  { opacity: 0.60; }
.opacity-\[0\.70\]  { opacity: 0.70; }
.opacity-\[0\.80\]  { opacity: 0.80; }

/* Width arbitrary */
.w-\[1px\]    { width: 1px; }
.w-\[2px\]    { width: 2px; }
.w-\[40px\]   { width: 40px; }
.w-\[48px\]   { width: 48px; }
.w-\[56px\]   { width: 56px; }
.w-\[64px\]   { width: 64px; }
.w-\[72px\]   { width: 72px; }
.w-\[80px\]   { width: 80px; }
.w-\[100px\]  { width: 100px; }
.w-\[120px\]  { width: 120px; }
.w-\[140px\]  { width: 140px; }
.w-\[160px\]  { width: 160px; }
.w-\[200px\]  { width: 200px; }
.w-\[240px\]  { width: 240px; }
.w-\[280px\]  { width: 280px; }
.w-\[320px\]  { width: 320px; }
.w-\[calc\(100\%-1\.5rem\)\] { width: calc(100% - 1.5rem); }
.w-\[calc\(100\%-2rem\)\]    { width: calc(100% - 2rem); }

/* Height arbitrary */
.h-\[1px\]    { height: 1px; }
.h-\[2px\]    { height: 2px; }
.h-\[3px\]    { height: 3px; }
.h-\[40px\]   { height: 40px; }
.h-\[48px\]   { height: 48px; }
.h-\[56px\]   { height: 56px; }
.h-\[64px\]   { height: 64px; }
.h-\[72px\]   { height: 72px; }
.h-\[80px\]   { height: 80px; }
.h-\[100px\]  { height: 100px; }
.h-\[120px\]  { height: 120px; }
.h-\[140px\]  { height: 140px; }
.h-\[160px\]  { height: 160px; }
.h-\[180px\]  { height: 180px; }
.h-\[200px\]  { height: 200px; }
.h-\[220px\]  { height: 220px; }
.h-\[240px\]  { height: 240px; }
.h-\[280px\]  { height: 280px; }
.h-\[300px\]  { height: 300px; }
.h-\[320px\]  { height: 320px; }
.h-\[360px\]  { height: 360px; }
.h-\[400px\]  { height: 400px; }
.h-\[440px\]  { height: 440px; }
.h-\[480px\]  { height: 480px; }
.h-\[500px\]  { height: 500px; }
.h-\[520px\]  { height: 520px; }
.h-\[560px\]  { height: 560px; }
.h-\[600px\]  { height: 600px; }

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

/* Gap arbitrary */
.gap-\[1px\]  { gap: 1px; }
.gap-\[2px\]  { gap: 2px; }
.gap-\[3px\]  { gap: 3px; }

/* Translate arbitrary */
.translate-x-\[-50\%\] { transform: translateX(-50%); }
.translate-y-\[-50\%\] { transform: translateY(-50%); }

/* Background rgba */
.bg-\[rgba\(26\,122\,118\,0\.08\)\]  { background-color: rgba(26,122,118,0.08); }
.bg-\[rgba\(26\,122\,118\,0\.10\)\]  { background-color: rgba(26,122,118,0.10); }
.bg-\[rgba\(26\,122\,118\,0\.12\)\]  { background-color: rgba(26,122,118,0.12); }
.bg-\[rgba\(26\,122\,118\,0\.15\)\]  { background-color: rgba(26,122,118,0.15); }
.bg-\[rgba\(28\,46\,46\,0\.05\)\]    { background-color: rgba(28,46,46,0.05); }
.bg-\[rgba\(28\,46\,46\,0\.08\)\]    { background-color: rgba(28,46,46,0.08); }
.bg-\[rgba\(238\,244\,244\,0\.90\)\] { background-color: rgba(238,244,244,0.90); }
.bg-\[rgba\(250\,252\,252\,0\.95\)\] { background-color: rgba(250,252,252,0.95); }

/* Top/Left arbitrary */
.top-\[50\%\]   { top: 50%; }
.left-\[50\%\]  { left: 50%; }
.top-\[8px\]    { top: 8px; }
.bottom-\[8px\] { bottom: 8px; }
.right-\[8px\]  { right: 8px; }
.left-\[8px\]   { left: 8px; }
.top-\[16px\]   { top: 16px; }
.bottom-\[16px\] { bottom: 16px; }

/* Z-index arbitrary */
.z-\[100\] { z-index: 100; }
.z-\[200\] { z-index: 200; }
.z-\[300\] { z-index: 300; }

/* Line clamp */
.line-clamp-1 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 1; }
.line-clamp-2 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.line-clamp-3 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.line-clamp-4 { overflow: hidden; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; }

/* Gradient */
.bg-gradient-to-b  { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.bg-gradient-to-t  { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-r  { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.from-transparent  { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.to-transparent    { --tw-gradient-to: transparent; }
.from-\[\#1C2E2E\] { --tw-gradient-from: #1C2E2E; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(28,46,46,0)); }
.to-\[\#1C2E2E\]   { --tw-gradient-to: #1C2E2E; }
.from-\[\#FAFCFC\] { --tw-gradient-from: #FAFCFC; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(250,252,252,0)); }
.to-\[\#FAFCFC\]   { --tw-gradient-to: #FAFCFC; }
.to-\[\#EEF4F4\]   { --tw-gradient-to: #EEF4F4; }
.via-\[\#FAFCFC\]  { --tw-gradient-via: #FAFCFC; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to, rgba(250,252,252,0)); }

/* ============================================================
   25. MARQUEE ANIMATION
   ============================================================ */

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee-container {
  overflow: hidden;
  width: 100%;
}
.marquee-container:hover .animate-marquee {
  animation-play-state: paused;
}

/* AOS fade */
[data-aos="fade-up"] {
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}
[data-aos="fade-in"] {
  opacity: 0;
  transition: opacity 0.6s ease;
}
[data-aos="fade-in"].aos-animate {
  opacity: 1;
}

/* ============================================================
   26. HOVER STATES
   ============================================================ */

.hover\:text-\[\#1A7A76\]:hover    { color: #1A7A76; }
.hover\:text-\[\#1C2E2E\]:hover    { color: #1C2E2E; }
.hover\:text-\[\#145F5C\]:hover    { color: #145F5C; }
.hover\:text-accent:hover          { color: var(--color-accent); }
.hover\:text-white:hover           { color: #ffffff; }
.hover\:bg-\[\#145F5C\]:hover      { background-color: #145F5C; }
.hover\:bg-\[\#1A7A76\]:hover      { background-color: #1A7A76; }
.hover\:bg-\[\#EEF4F4\]:hover      { background-color: #EEF4F4; }
.hover\:bg-\[\#1C2E2E\]:hover      { background-color: #1C2E2E; }
.hover\:bg-accent:hover            { background-color: var(--color-accent); }
.hover\:border-\[\#1A7A76\]:hover  { border-color: #1A7A76; }
.hover\:border-accent:hover        { border-color: var(--color-accent); }
.hover\:opacity-80:hover           { opacity: 0.80; }
.hover\:opacity-90:hover           { opacity: 0.90; }
.hover\:opacity-100:hover          { opacity: 1.00; }
.hover\:shadow-md:hover            { box-shadow: var(--shadow-md); }
.hover\:shadow-lg:hover            { box-shadow: var(--shadow-lg); }
.hover\:scale-105:hover            { transform: scale(1.05); }
.hover\:underline:hover            { text-decoration: underline; }
.hover\:no-underline:hover         { text-decoration: none; }
.hover\:translate-y-\[-2px\]:hover { transform: translateY(-2px); }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:text-\[\#1A7A76\] { color: #1A7A76; }
.group:hover .group-hover\:border-\[\#1A7A76\] { border-color: #1A7A76; }

/* Focus states */
.focus\:outline-none:focus          { outline: none; }
.focus\:border-\[\#1A7A76\]:focus   { border-color: #1A7A76; }
.focus\:border-accent:focus         { border-color: var(--color-accent); }
.focus\:ring-2:focus                { box-shadow: 0 0 0 2px var(--color-accent); }
.focus\:ring-\[\#1A7A76\]:focus     { box-shadow: 0 0 0 2px #1A7A76; }

/* Active states */
.active\:scale-95:active            { transform: scale(0.95); }
.active\:opacity-90:active          { opacity: 0.90; }

/* ============================================================
   27. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* sm: ≥640px */
@media (min-width: 640px) {
  .sm\:flex           { display: flex; }
  .sm\:hidden         { display: none; }
  .sm\:block          { display: block; }
  .sm\:grid-cols-2    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:text-sm        { font-size: 0.875rem; line-height: 1.25rem; }
  .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-2xl       { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl       { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:text-4xl       { font-size: 2.25rem; line-height: 2.5rem; }
  .sm\:px-6           { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:px-8           { padding-left: 2rem; padding-right: 2rem; }
  .sm\:py-12          { padding-top: 3rem; padding-bottom: 3rem; }
  .sm\:py-16          { padding-top: 4rem; padding-bottom: 4rem; }
  .sm\:gap-6          { gap: 1.5rem; }
  .sm\:gap-8          { gap: 2rem; }
  .sm\:flex-row       { flex-direction: row; }
  .sm\:flex-col       { flex-direction: column; }
  .sm\:items-center   { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:col-span-2     { grid-column: span 2 / span 2; }
  .sm\:w-auto         { width: auto; }
  .sm\:w-1\/2         { width: 50%; }
  .sm\:mt-0           { margin-top: 0; }
  .sm\:mb-0           { margin-bottom: 0; }
}

/* md: ≥768px */
@media (min-width: 768px) {
  .md\:flex           { display: flex; }
  .md\:hidden         { display: none; }
  .md\:block          { display: block; }
  .md\:inline-block   { display: inline-block; }
  .md\:inline-flex    { display: inline-flex; }
  .md\:grid           { display: grid; }
  .md\:flex-row       { flex-direction: row; }
  .md\:flex-col       { flex-direction: column; }
  .md\:flex-row-reverse { flex-direction: row-reverse; }
  .md\:flex-wrap      { flex-wrap: wrap; }
  .md\:items-start    { align-items: flex-start; }
  .md\:items-center   { align-items: center; }
  .md\:items-end      { align-items: flex-end; }
  .md\:justify-start  { justify-content: flex-start; }
  .md\:justify-center { justify-content: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:justify-end    { justify-content: flex-end; }
  .md\:self-center    { align-self: center; }
  .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\:grid-cols-5    { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .md\:grid-cols-6    { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .md\:grid-cols-12   { grid-template-columns: repeat(12, minmax(0, 1fr)); }
  .md\:col-span-1     { grid-column: span 1 / span 1; }
  .md\:col-span-2     { grid-column: span 2 / span 2; }
  .md\:col-span-3     { grid-column: span 3 / span 3; }
  .md\:col-span-4     { grid-column: span 4 / span 4; }
  .md\:col-span-5     { grid-column: span 5 / span 5; }
  .md\:col-span-6     { grid-column: span 6 / span 6; }
  .md\:col-span-7     { grid-column: span 7 / span 7; }
  .md\:col-span-8     { grid-column: span 8 / span 8; }
  .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\:gap-x-8        { column-gap: 2rem; }
  .md\:gap-x-12       { column-gap: 3rem; }
  .md\:gap-x-16       { column-gap: 4rem; }
  .md\:gap-x-24       { column-gap: 6rem; }
  .md\:gap-y-8        { row-gap: 2rem; }
  .md\:gap-y-12       { row-gap: 3rem; }
  .md\:text-sm        { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base      { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg        { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl        { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl       { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl       { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl       { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl       { font-size: 3rem; line-height: 1; }
  .md\:text-6xl       { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl       { font-size: 4.5rem; line-height: 1; }
  .md\:text-8xl       { font-size: 6rem; line-height: 1; }
  .md\:text-\[11px\]  { font-size: 11px; }
  .md\:text-\[13px\]  { font-size: 13px; }
  .md\:text-\[14px\]  { font-size: 14px; }
  .md\:text-\[15px\]  { font-size: 15px; }
  .md\:text-\[18px\]  { font-size: 18px; }
  .md\:text-\[22px\]  { font-size: 22px; }
  .md\:text-\[28px\]  { font-size: 28px; }
  .md\:text-\[36px\]  { font-size: 36px; }
  .md\:text-\[48px\]  { font-size: 48px; }
  .md\:text-\[56px\]  { font-size: 56px; }
  .md\:text-\[64px\]  { font-size: 64px; }
  .md\:text-\[80px\]  { font-size: 80px; }
  .md\:text-\[96px\]  { font-size: 96px; }
  .md\:leading-\[1\.0\]  { line-height: 1.0; }
  .md\:leading-\[1\.05\] { line-height: 1.05; }
  .md\:leading-\[1\.1\]  { line-height: 1.1; }
  .md\:leading-\[1\.2\]  { line-height: 1.2; }
  .md\:leading-\[1\.3\]  { line-height: 1.3; }
  .md\:leading-\[1\.4\]  { line-height: 1.4; }
  .md\:tracking-\[-0\.04em\] { letter-spacing: -0.04em; }
  .md\:tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
  .md\:tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
  .md\:tracking-\[0\.10em\]  { letter-spacing: 0.10em; }
  .md\:tracking-\[0\.15em\]  { letter-spacing: 0.15em; }
  .md\:tracking-\[0\.20em\]  { letter-spacing: 0.20em; }
  .md\:px-6           { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:px-8           { padding-left: 2rem; padding-right: 2rem; }
  .md\:px-10          { padding-left: 2.5rem; padding-right: 2.5rem; }
  .md\:px-12          { padding-left: 3rem; padding-right: 3rem; }
  .md\:py-6           { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .md\:py-8           { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:py-10          { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .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\:py-\[60px\]    { padding-top: 60px;  padding-bottom: 60px; }
  .md\:py-\[80px\]    { padding-top: 80px;  padding-bottom: 80px; }
  .md\:py-\[100px\]   { padding-top: 100px; padding-bottom: 100px; }
  .md\:py-\[120px\]   { padding-top: 120px; padding-bottom: 120px; }
  .md\:pt-\[80px\]    { padding-top: 80px; }
  .md\:pt-\[100px\]   { padding-top: 100px; }
  .md\:pt-\[120px\]   { padding-top: 120px; }
  .md\:pb-\[80px\]    { padding-bottom: 80px; }
  .md\:pb-\[100px\]   { padding-bottom: 100px; }
  .md\:pb-\[120px\]   { padding-bottom: 120px; }
  .md\:p-8            { padding: 2rem; }
  .md\:p-10           { padding: 2.5rem; }
  .md\:p-12           { padding: 3rem; }
  .md\:p-16           { padding: 4rem; }
  .md\:pl-8           { padding-left: 2rem; }
  .md\:pl-12          { padding-left: 3rem; }
  .md\:pr-8           { padding-right: 2rem; }
  .md\:pr-12          { padding-right: 3rem; }
  .md\:mt-0           { margin-top: 0; }
  .md\:mt-4           { margin-top: 1rem; }
  .md\:mt-8           { margin-top: 2rem; }
  .md\:mt-12          { margin-top: 3rem; }
  .md\:mt-16          { margin-top: 4rem; }
  .md\:mb-0           { margin-bottom: 0; }
  .md\:mb-4           { margin-bottom: 1rem; }
  .md\:mb-8           { margin-bottom: 2rem; }
  .md\:mb-12          { margin-bottom: 3rem; }
  .md\:mb-16          { margin-bottom: 4rem; }
  .md\:mx-0           { margin-left: 0; margin-right: 0; }
  .md\:mx-auto        { margin-left: auto; margin-right: auto; }
  .md\:w-auto         { width: auto; }
  .md\:w-full         { width: 100%; }
  .md\:w-1\/2         { width: 50%; }
  .md\:w-1\/3         { width: 33.333333%; }
  .md\:w-2\/3         { width: 66.666667%; }
  .md\:w-1\/4         { width: 25%; }
  .md\:w-3\/4         { width: 75%; }
  .md\:w-\[40\%\]     { width: 40%; }
  .md\:w-\[45\%\]     { width: 45%; }
  .md\:w-\[50\%\]     { width: 50%; }
  .md\:w-\[55\%\]     { width: 55%; }
  .md\:w-\[60\%\]     { width: 60%; }
  .md\:max-w-\[480px\]  { max-width: 480px; }
  .md\:max-w-\[640px\]  { max-width: 640px; }
  .md\:max-w-\[720px\]  { max-width: 720px; }
  .md\:max-w-\[800px\]  { max-width: 800px; }
  .md\:max-w-\[960px\]  { max-width: 960px; }
  .md\:max-w-7xl        { max-width: 80rem; }
  .md\:min-h-\[60vh\]   { min-height: 60vh; }
  .md\:min-h-\[70vh\]   { min-height: 70vh; }
  .md\:min-h-\[80vh\]   { min-height: 80vh; }
  .md\:min-h-\[85vh\]   { min-height: 85vh; }
  .md\:aspect-\[16\/9\] { aspect-ratio: 16 / 9; }
  .md\:aspect-\[21\/9\] { aspect-ratio: 21 / 9; }
  .md\:h-\[280px\]    { height: 280px; }
  .md\:h-\[320px\]    { height: 320px; }
  .md\:h-\[360px\]    { height: 360px; }
  .md\:h-\[400px\]    { height: 400px; }
  .md\:h-\[440px\]    { height: 440px; }
  .md\:h-\[480px\]    { height: 480px; }
  .md\:h-\[520px\]    { height: 520px; }
  .md\:h-\[560px\]    { height: 560px; }
  .md\:h-\[600px\]    { height: 600px; }
  .md\:border-b       { border-bottom-width: 1px; }
  .md\:border-b-0     { border-bottom-width: 0; }
  .md\:border-l       { border-left-width: 1px; }
  .md\:border-l-0     { border-left-width: 0; }
  .md\:border-r       { border-right-width: 1px; }
  .md\:border-t       { border-top-width: 1px; }
  .md\:border-t-0     { border-top-width: 0; }
  .md\:rounded-lg     { border-radius: 8px; }
  .md\:rounded-none   { border-radius: 0; }
  .md\:text-left      { text-align: left; }
  .md\:text-center    { text-align: center; }
  .md\:text-right     { text-align: right; }
  .md\:justify-start  { justify-content: flex-start; }
  .md\:justify-end    { justify-content: flex-end; }
  .md\:inline-block   { display: inline-block; }
  .md\:flex-nowrap    { flex-wrap: nowrap; }
}

/* lg: ≥1024px */
@media (min-width: 1024px) {
  .lg\:flex           { display: flex; }
  .lg\:hidden         { display: none; }
  .lg\:block          { display: block; }
  .lg\:grid           { display: grid; }
  .lg\:flex-row       { flex-direction: row; }
  .lg\:items-center   { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .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\:grid-cols-5    { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:grid-cols-6    { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .lg\:col-span-4     { grid-column: span 4 / span 4; }
  .lg\:col-span-6     { grid-column: span 6 / span 6; }
  .lg\:col-span-8     { grid-column: span 8 / span 8; }
  .lg\:gap-6          { gap: 1.5rem; }
  .lg\:gap-8          { gap: 2rem; }
  .lg\:gap-10         { gap: 2.5rem; }
  .lg\:gap-12         { gap: 3rem; }
  .lg\:gap-16         { gap: 4rem; }
  .lg\:gap-x-16       { column-gap: 4rem; }
  .lg\:gap-x-24       { column-gap: 6rem; }
  .lg\:text-4xl       { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl       { font-size: 3rem; line-height: 1; }
  .lg\:text-6xl       { font-size: 3.75rem; line-height: 1; }
  .lg\:text-7xl       { font-size: 4.5rem; line-height: 1; }
  .lg\:text-8xl       { font-size: 6rem; line-height: 1; }
  .lg\:text-\[56px\]  { font-size: 56px; }
  .lg\:text-\[64px\]  { font-size: 64px; }
  .lg\:text-\[80px\]  { font-size: 80px; }
  .lg\:text-\[96px\]  { font-size: 96px; }
  .lg\:text-\[112px\] { font-size: 112px; }
  .lg\:text-\[128px\] { font-size: 128px; }
  .lg\:leading-\[1\.0\]  { line-height: 1.0; }
  .lg\:leading-\[1\.05\] { line-height: 1.05; }
  .lg\:leading-\[1\.1\]  { line-height: 1.1; }
  .lg\:leading-\[1\.2\]  { line-height: 1.2; }
  .lg\:tracking-\[-0\.04em\] { letter-spacing: -0.04em; }
  .lg\:tracking-\[-0\.03em\] { letter-spacing: -0.03em; }
  .lg\:tracking-\[-0\.02em\] { letter-spacing: -0.02em; }
  .lg\:px-8           { padding-left: 2rem; padding-right: 2rem; }
  .lg\:px-12          { padding-left: 3rem; padding-right: 3rem; }
  .lg\:px-16          { padding-left: 4rem; padding-right: 4rem; }
  .lg\:py-16          { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20          { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24          { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-32          { padding-top: 8rem; padding-bottom: 8rem; }
  .lg\:py-\[80px\]    { padding-top: 80px; padding-bottom: 80px; }
  .lg\:py-\[100px\]   { padding-top: 100px; padding-bottom: 100px; }
  .lg\:py-\[120px\]   { padding-top: 120px; padding-bottom: 120px; }
  .lg\:p-8            { padding: 2rem; }
  .lg\:p-10           { padding: 2.5rem; }
  .lg\:p-12           { padding: 3rem; }
  .lg\:p-16           { padding: 4rem; }
  .lg\:mt-0           { margin-top: 0; }
  .lg\:mt-8           { margin-top: 2rem; }
  .lg\:mb-0           { margin-bottom: 0; }
  .lg\:mb-8           { margin-bottom: 2rem; }
  .lg\:w-1\/2         { width: 50%; }
  .lg\:w-1\/3         { width: 33.333333%; }
  .lg\:w-2\/3         { width: 66.666667%; }
  .lg\:w-\[45\%\]     { width: 45%; }
  .lg\:w-\[55\%\]     { width: 55%; }
  .lg\:w-\[40\%\]     { width: 40%; }
  .lg\:w-\[60\%\]     { width: 60%; }
  .lg\:min-h-\[70vh\] { min-height: 70vh; }
  .lg\:min-h-\[80vh\] { min-height: 80vh; }
  .lg\:min-h-\[90vh\] { min-height: 90vh; }
  .lg\:h-\[400px\]    { height: 400px; }
  .lg\:h-\[480px\]    { height: 480px; }
  .lg\:h-\[560px\]    { height: 560px; }
  .lg\:h-\[600px\]    { height: 600px; }
  .lg\:h-\[640px\]    { height: 640px; }
  .lg\:text-left      { text-align: left; }
  .lg\:text-center    { text-align: center; }
  .lg\:border-l       { border-left-width: 1px; }
  .lg\:border-l-0     { border-left-width: 0; }
}

/* xl: ≥1280px */
@media (min-width: 1280px) {
  .xl\:grid-cols-3    { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .xl\:grid-cols-4    { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .xl\:grid-cols-6    { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .xl\:col-span-4     { grid-column: span 4 / span 4; }
  .xl\:col-span-8     { grid-column: span 8 / span 8; }
  .xl\:gap-12         { gap: 3rem; }
  .xl\:gap-16         { gap: 4rem; }
  .xl\:gap-20         { gap: 5rem; }
  .xl\:text-\[80px\]  { font-size: 80px; }
  .xl\:text-\[96px\]  { font-size: 96px; }
  .xl\:text-\[112px\] { font-size: 112px; }
  .xl\:text-\[128px\] { font-size: 128px; }
  .xl\:text-9xl       { font-size: 8rem; line-height: 1; }
  .xl\:px-12          { padding-left: 3rem; padding-right: 3rem; }
  .xl\:px-16          { padding-left: 4rem; padding-right: 4rem; }
  .xl\:py-\[120px\]   { padding-top: 120px; padding-bottom: 120px; }
  .xl\:py-\[140px\]   { padding-top: 140px; padding-bottom: 140px; }
  .xl\:w-\[55\%\]     { width: 55%; }
  .xl\:w-\[60\%\]     { width: 60%; }
  .xl\:block          { display: block; }
  .xl\:flex           { display: flex; }
  .xl\:hidden         { display: none; }
}

/* 2xl: ≥1536px */
@media (min-width: 1536px) {
  .2xl\:grid-cols-4   { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .2xl\:gap-16        { gap: 4rem; }
  .2xl\:text-\[128px\] { font-size: 128px; }
  .2xl\:px-16         { padding-left: 4rem; padding-right: 4rem; }
}

/* ============================================================
   28. COMPONENT STYLES (Documentary / Archive family)
   ============================================================ */

/* Section number markers */
.section-marker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  opacity: 0.70;
}

/* Archive metadata label */
.meta-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

/* Caption overlay */
.caption-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(28,46,46,0.80), transparent);
  color: #FAFCFC;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
}

/* Hairline border */
.hairline {
  border: 1px solid rgba(92,114,114,0.20);
}
.hairline-t {
  border-top: 1px solid rgba(92,114,114,0.20);
}
.hairline-b {
  border-bottom: 1px solid rgba(92,114,114,0.20);
}

/* Accordion */
.accordion-item {
  border-bottom: 1px solid rgba(92,114,114,0.20);
}
.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 500;
  color: var(--color-ink-primary);
  transition: color 150ms ease;
}
.accordion-header:hover {
  color: var(--color-accent);
}
.accordion-body {
  display: none;
  padding-bottom: 1.25rem;
  color: var(--color-ink-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.accordion-item.open .accordion-body {
  display: block;
}
.accordion-item.open .accordion-icon {
  transform: rotate(45deg);
}
.accordion-icon {
  transition: transform 200ms ease;
  flex-shrink: 0;
  margin-left: 1rem;
  color: var(--color-accent);
}

/* Archival tag/chip */
.archive-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border: 1px solid rgba(26,122,118,0.30);
  background-color: rgba(26,122,118,0.07);
  color: var(--color-accent);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Image card overlay group */
.image-card {
  position: relative;
  overflow: hidden;
}
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}
.image-card:hover img {
  transform: scale(1.04);
}
.image-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(to top, rgba(28,46,46,0.75), transparent);
  color: rgba(250,252,252,0.90);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* Counter stat block */
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(92,114,114,0.20);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.0;
  color: var(--color-ink-primary);
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
}

/* Process step */
.process-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(92,114,114,0.20);
}
.process-step-number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--color-accent);
  flex-shrink: 0;
  padding-top: 0.25rem;
  min-width: 40px;
}
.process-step-content h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-ink-primary);
  margin-bottom: 0.5rem;
}
.process-step-content p {
  font-size: 0.9375rem;
  color: var(--color-ink-muted);
  line-height: 1.7;
}

/* CTA link with arrow */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: gap 200ms ease, color 150ms ease;
}
.cta-link:hover {
  gap: 0.75rem;
  color: var(--color-accent-dark);
}

/* Primary button */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--color-ink-primary);
  color: var(--color-bg-primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 150ms ease, transform 150ms ease;
  cursor: pointer;
}
.btn-primary:hover {
  background-color: #263A3A;
  transform: translateY(-1px);
}

/* Secondary button */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  border: 1px solid var(--color-ink-primary);
  color: var(--color-ink-primary);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background-color: transparent;
  transition: all 150ms ease;
  cursor: pointer;
}
.btn-secondary:hover {
  background-color: var(--color-ink-primary);
  color: var(--color-bg-primary);
}

/* Accent button */
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background-color: var(--color-accent);
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background-color 150ms ease, transform 150ms ease;
  cursor: pointer;
}
.btn-accent:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-1px);
}

/* Swiper overrides */
.swiper-pagination-bullet {
  background-color: var(--color-ink-muted);
  opacity: 0.40;
}
.swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  opacity: 1;
}

/* Form input base */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="number"],
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background-color: var(--color-bg-primary);
  border: 1px solid rgba(92,114,114,0.30);
  color: var(--color-ink-primary);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  transition: border-color 150ms ease;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--color-accent);
}
input::placeholder,
textarea::placeholder {
  color: var(--color-ink-muted);
  opacity: 0.60;
}
select {
  cursor: pointer;
}
label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  margin-bottom: 0.5rem;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--color-bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(92,114,114,0.30); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(92,114,114,0.50); }

/* Selection */
::selection {
  background-color: rgba(26,122,118,0.20);
  color: var(--color-ink-primary);
}

/* ============================================================
   29. PRINT
   ============================================================ */

@media print {
  header, footer, .cookie-banner { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
