/* ==========================================================================
   SINN — DESIGN SYSTEM  (styleguide.css)
   Light Scandinavian luxury — quiet, confident, architectural.
   Reference: Aman × Mies × Dezeen.
   --------------------------------------------------------------------------

   SINN LIGHT — single token family for ALL pages.
   Used by: index.html, om.html, personvern.html, host.html, property.html,
            handoff.html, logg-inn.html, root /index.html
   Tokens: --bg-primary, --bg-canvas, --ink, --accent, --rule, etc.
   Bone background. Deep teal accent. Inter Tight, single typeface.
   No gold. No serif display. No italic accents. No grain. No Roman numerals.

   Legacy dark + Cormorant Garamond tokens were removed 2026-05-22 —
   no page consumed them and they were polluting the global :root.

   --------------------------------------------------------------------------
   TOKEN API — Sinn Light (consume via var(--token)):
     Palette ............ --bg-primary, --bg-canvas, --bg-deep, --ink,
                          --ink-soft, --ink-muted, --rule, --rule-strong,
                          --accent, --accent-deep, --accent-warm
     Type ............... --font-sans, --font-mono; fluid --fs-*; --lh-*; --ls-*
     Spacing ............ --space-1..--space-32
     Layout ............. --container-max|narrow|text, --gutter,
                          --section-py-sm|md|lg
     Radii .............. --radius-none|xs|sm|md
     Borders ............ --border-hair, --border-rule
     Shadows ............ --shadow-quiet, --shadow-lift
     Motion ............. --ease-out|in|soft; --dur-fast..--dur-slow;
                          --transition-base
     Z-index ............ --z-base|elevated|sticky|overlay|modal
     A11y ............... --touch-target-min  (44px)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@200;300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ==========================================================================
   1. SINN LIGHT — DESIGN TOKENS (:root)
   ========================================================================== */
:root {
  /* ---- Palette: bone, ink, teal ---------------------------------------- */
  --bg-primary:    #F4F1EA;   /* warm bone — page bg */
  --bg-canvas:     #FAF7F0;   /* lighter cream for elevated cards/sections */
  --bg-deep:       #1A1A18;   /* full-bleed photo overlays only */

  --ink:           #1F1B17;   /* deep brown-black — primary text */
  --ink-soft:      #5A5550;   /* secondary text */
  --ink-muted:     #8C857B;   /* tertiary text, captions */

  --rule:          #E0DAC9;   /* subtle hairline borders */
  --rule-strong:   #C9C2B0;   /* visible borders */

  --accent:        #1F4A47;   /* deep teal — primary CTA, links */
  --accent-deep:   #143432;   /* hover */
  --accent-warm:   #D9C9A8;   /* warm sand — quiet accents only */

  --accent-soft:   rgba(31, 74, 71, 0.10);  /* teal tint for focus rings */

  /* ---- Borders (composed shorthand) ------------------------------------ */
  --border-hair:   1px solid var(--rule);
  --border-rule:   1px solid var(--rule-strong);

  /* ---- Typography ------------------------------------------------------ */
  --font-sans:  'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;

  /* Fluid type scale */
  --fs-display-xl: clamp(3.25rem, 6vw, 5.5rem);    /* 52–88 */
  --fs-display:    clamp(2.5rem, 4.5vw, 4rem);     /* 40–64 */
  --fs-h1:         clamp(2rem, 3.5vw, 2.75rem);    /* 32–44 */
  --fs-h2:         clamp(1.5rem, 2.5vw, 2rem);     /* 24–32 */
  --fs-h3:         clamp(1.125rem, 1.6vw, 1.375rem); /* 18–22 */
  --fs-h4:         1.125rem;                       /* 18 */
  --fs-body-lg:    1.0625rem;                      /* 17 */
  --fs-body:       1rem;                           /* 16 */
  --fs-body-sm:    0.9375rem;                      /* 15 */
  --fs-caption:    0.8125rem;                      /* 13 */
  --fs-micro:      0.6875rem;                      /* 11 */

  --lh-tight:   1.05;
  --lh-snug:    1.2;
  --lh-normal:  1.5;
  --lh-relaxed: 1.7;

  /* Display tight, eyebrow open, body neutral */
  --ls-display:    -0.025em;
  --ls-heading:    -0.015em;
  --ls-body:        0;
  --ls-eyebrow:     0.16em;
  --ls-eyebrow-lg:  0.22em;
  --ls-ui:          0.06em;

  /* ---- Spacing scale --------------------------------------------------- */
  --space-1:    4px;
  --space-2:    8px;
  --space-3:   12px;
  --space-4:   16px;
  --space-6:   24px;
  --space-8:   32px;
  --space-12:  48px;
  --space-16:  64px;
  --space-20:  80px;
  --space-24:  96px;
  --space-32: 128px;

  /* ---- Layout ---------------------------------------------------------- */
  --container-max:    1320px;
  --container-narrow: 1040px;
  --container-text:    680px;
  --gutter:           clamp(1.5rem, 4vw, 3rem);

  --section-py-sm:    clamp(56px, 8vh, 80px);
  --section-py-md:    clamp(80px, 12vh, 120px);
  --section-py-lg:    clamp(96px, 16vh, 160px);

  /* ---- Radii (almost-square, never pill) ------------------------------- */
  --radius-none: 0;
  --radius-xs:   2px;
  --radius-sm:   3px;
  --radius-md:   4px;

  /* ---- Shadows (whisper, never glow) ----------------------------------- */
  --shadow-quiet: 0 1px 2px rgba(31, 27, 23, 0.04),
                  0 1px 1px rgba(31, 27, 23, 0.02);
  --shadow-lift:  0 8px 24px -12px rgba(31, 27, 23, 0.12),
                  0 2px  4px -2px rgba(31, 27, 23, 0.06);

  /* ---- Motion ---------------------------------------------------------- */
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:  150ms;
  --dur-base:  240ms;
  --dur-slow:  420ms;
  --transition-base: all var(--dur-base) var(--ease-soft);

  /* ---- Z-index --------------------------------------------------------- */
  --z-base:     1;
  --z-elevated: 10;
  --z-sticky:   100;
  --z-overlay:  900;
  --z-modal:    1000;

  /* ---- A11y / touch ---------------------------------------------------- */
  --touch-target-min: 44px;
}

/* ==========================================================================
   2. RESET / BASE
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

/* Sinn-light pages opt in via body.sinn-light (or by setting bg directly).
   We do not set body bg here to avoid clobbering legacy pages. */
body.sinn-light {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-normal);
  color: var(--ink);
  background-color: var(--bg-primary);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.full-height { min-height: 100vh; min-height: 100dvh; }

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

body.sinn-light :where(a) {
  color: var(--accent);
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
body.sinn-light :where(a):hover { color: var(--accent-deep); }

body.sinn-light :where(button, [role="button"], a, input[type="submit"], input[type="button"]) {
  min-height: var(--touch-target-min);
}

body.sinn-light :where(input, textarea, select) {
  font-size: max(16px, var(--fs-body));
  font-family: inherit;
}

body.sinn-light ::selection {
  background: var(--accent);
  color: var(--bg-canvas);
}

/* ==========================================================================
   3. A11Y — focus, motion, contrast
   ========================================================================== */
body.sinn-light :focus { outline: none; }
body.sinn-light :focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
    scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: more) {
  body.sinn-light {
    --ink-soft:    #3F3B36;
    --ink-muted:   #6B655C;
    --rule:        #B8B19E;
    --rule-strong: #8C857B;
  }
  body.sinn-light :focus-visible { outline-width: 3px; }
}

/* ==========================================================================
   4. TYPOGRAPHY — single typeface, hierarchy via weight + size + tracking
   ========================================================================== */
body.sinn-light .display-xl,
body.sinn-light .display {
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--ink);
  font-feature-settings: "kern" 1, "liga" 1, "calt" 1, "ss01" 1;
  text-wrap: balance;
}
body.sinn-light .display-xl { font-size: var(--fs-display-xl); }
body.sinn-light .display    { font-size: var(--fs-display); }

body.sinn-light :where(h1, .h1, h2, .h2, h3, .h3, h4, .h4) {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-heading);
  color: var(--ink);
  text-wrap: balance;
}
body.sinn-light h1, body.sinn-light .h1 { font-size: var(--fs-h1); font-weight: 300; letter-spacing: var(--ls-display); line-height: var(--lh-tight); }
body.sinn-light h2, body.sinn-light .h2 { font-size: var(--fs-h2); font-weight: 400; }
body.sinn-light h3, body.sinn-light .h3 { font-size: var(--fs-h3); font-weight: 500; }
body.sinn-light h4, body.sinn-light .h4 { font-size: var(--fs-h4); font-weight: 500; }

body.sinn-light :where(p, .body) {
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: var(--lh-relaxed);
  color: var(--ink-soft);
  text-wrap: pretty;
}
body.sinn-light .body-lg { font-size: var(--fs-body-lg); line-height: var(--lh-relaxed); }
body.sinn-light .body-sm { font-size: var(--fs-body-sm); line-height: var(--lh-normal); }

/* Eyebrow — uppercase tracked label */
body.sinn-light .eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ink-muted);
  display: inline-block;
}
body.sinn-light .eyebrow--lg {
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-eyebrow-lg);
}

/* Caption — sparser, used under cards */
body.sinn-light .caption {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 400;
  letter-spacing: var(--ls-ui);
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: var(--lh-normal);
}

/* Mono — property data tables only */
body.sinn-light .mono,
body.sinn-light .numeric {
  font-family: var(--font-mono);
  font-weight: 400;
  font-variant-numeric: lining-nums tabular-nums;
  letter-spacing: 0;
}

/* Text colour utilities */
body.sinn-light .text-ink       { color: var(--ink); }
body.sinn-light .text-ink-soft  { color: var(--ink-soft); }
body.sinn-light .text-ink-muted { color: var(--ink-muted); }
body.sinn-light .text-accent    { color: var(--accent); }

/* Rules / dividers — hairline only */
body.sinn-light .rule {
  border: 0;
  height: 1px;
  background: var(--rule);
  margin: var(--space-12) 0;
}
body.sinn-light .rule--short {
  width: 48px;
  background: var(--ink);
  opacity: 0.6;
}

/* ==========================================================================
   5. LAYOUT — containers, sections, grid
   ========================================================================== */
body.sinn-light .container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
body.sinn-light .container--narrow { max-width: var(--container-narrow); }
body.sinn-light .container--text   { max-width: var(--container-text); }

body.sinn-light .section            { padding-block: var(--section-py-md); }
body.sinn-light .section--sm        { padding-block: var(--section-py-sm); }
body.sinn-light .section--lg        { padding-block: var(--section-py-lg); }
body.sinn-light .section--canvas    { background: var(--bg-canvas); }

body.sinn-light .grid { display: grid; gap: var(--space-8); }
body.sinn-light .grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
body.sinn-light .grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
body.sinn-light .grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

@media (max-width: 900px) {
  body.sinn-light .grid--3,
  body.sinn-light .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body.sinn-light .grid--2,
  body.sinn-light .grid--3,
  body.sinn-light .grid--4 { grid-template-columns: 1fr; }
}

/* ==========================================================================
   6. BUTTONS — .btn  +  --primary | --ghost | --link
   --------------------------------------------------------------------------
   .btn--primary : solid teal bg, cream text — main CTAs
   .btn--ghost   : transparent + 1px ink border, ink text
   .btn--link    : text link with arrow, hairline underline
   ========================================================================== */
body.sinn-light .btn {
  --btn-pad-y: 14px;
  --btn-pad-x: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  min-height: var(--touch-target-min);
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: background-color var(--dur-base) var(--ease-soft),
              border-color    var(--dur-base) var(--ease-soft),
              color           var(--dur-base) var(--ease-soft);
  white-space: nowrap;
}

body.sinn-light .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

body.sinn-light .btn:disabled,
body.sinn-light .btn[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary — solid teal */
body.sinn-light .btn--primary {
  background: var(--accent);
  color: var(--bg-canvas);
  border-color: var(--accent);
}
body.sinn-light .btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
  color: var(--bg-canvas);
}

/* Ghost — transparent + ink border */
body.sinn-light .btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
body.sinn-light .btn--ghost:hover {
  background: var(--ink);
  color: var(--bg-canvas);
  border-color: var(--ink);
}

/* On dark photo overlays — invert ghost */
body.sinn-light .btn--ghost-light {
  background: transparent;
  color: var(--bg-canvas);
  border: 1px solid var(--bg-canvas);
}
body.sinn-light .btn--ghost-light:hover {
  background: var(--bg-canvas);
  color: var(--ink);
}

/* Link — quiet inline link */
body.sinn-light .btn--link {
  background: transparent;
  border: 0;
  padding: var(--space-2) 0;
  color: var(--ink);
  min-height: auto;
  letter-spacing: 0.14em;
  position: relative;
}
body.sinn-light .btn--link::after {
  content: '→';
  display: inline-block;
  margin-left: var(--space-2);
  transition: transform var(--dur-base) var(--ease-soft);
}
body.sinn-light .btn--link:hover { color: var(--accent); }
body.sinn-light .btn--link:hover::after { transform: translateX(4px); }

/* Sizes */
body.sinn-light .btn--sm { --btn-pad-y: 10px; --btn-pad-x: 20px; font-size: var(--fs-micro); }
body.sinn-light .btn--lg { --btn-pad-y: 18px; --btn-pad-x: 40px; }
body.sinn-light .btn--block { display: flex; width: 100%; }

/* ==========================================================================
   7. FORMS — minimal underlined fields
   ========================================================================== */
body.sinn-light .field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

body.sinn-light .field__label {
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--ink-muted);
}

body.sinn-light .input,
body.sinn-light .textarea,
body.sinn-light .select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: max(16px, var(--fs-body));
  font-weight: 400;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule-strong);
  padding: var(--space-3) 0;
  border-radius: 0;
  transition: border-color var(--dur-base) var(--ease-out);
  outline: none;
  appearance: none;
  min-height: var(--touch-target-min);
}

body.sinn-light .input::placeholder,
body.sinn-light .textarea::placeholder {
  color: var(--ink-muted);
  font-weight: 400;
}

body.sinn-light .input:hover,
body.sinn-light .textarea:hover,
body.sinn-light .select:hover { border-bottom-color: var(--ink-soft); }

body.sinn-light .input:focus,
body.sinn-light .textarea:focus,
body.sinn-light .select:focus { border-bottom-color: var(--accent); }

body.sinn-light .textarea {
  min-height: 120px;
  resize: vertical;
  line-height: var(--lh-normal);
}

body.sinn-light .select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%),
                    linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: var(--space-8);
  cursor: pointer;
}
body.sinn-light .select option {
  background: var(--bg-canvas);
  color: var(--ink);
}

/* ==========================================================================
   8. CARDS — light cream, hairline, very subtle shadow
   ========================================================================== */
body.sinn-light .card {
  background: var(--bg-canvas);
  border: var(--border-hair);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--dur-slow) var(--ease-soft),
              box-shadow   var(--dur-slow) var(--ease-soft);
  position: relative;
}
body.sinn-light .card:hover {
  border-color: var(--rule-strong);
  box-shadow: var(--shadow-lift);
}

body.sinn-light .card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-primary);
}
body.sinn-light .card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-soft);
}
body.sinn-light .card:hover .card__media img { transform: scale(1.02); }

body.sinn-light .card__body  { padding: var(--space-6); }
body.sinn-light .card__title {
  font-family: var(--font-sans);
  font-size: var(--fs-h4);
  font-weight: 500;
  line-height: var(--lh-snug);
  color: var(--ink);
  margin-bottom: var(--space-2);
  letter-spacing: var(--ls-heading);
}
body.sinn-light .card__meta {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  color: var(--ink-muted);
  letter-spacing: var(--ls-ui);
}

/* ==========================================================================
   9. NAV — simple, static cream
   ========================================================================== */
body.sinn-light .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-6) var(--gutter);
  border-bottom: var(--border-hair);
  background: var(--bg-primary);
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
}

body.sinn-light .nav__brand {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  min-height: var(--touch-target-min);
  display: inline-flex;
  align-items: center;
}

body.sinn-light .nav__links {
  display: flex;
  gap: var(--space-8);
  list-style: none;
}
body.sinn-light .nav__link {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 400;
  letter-spacing: 0;
  color: var(--ink-soft);
  padding: var(--space-2) 0;
  position: relative;
  min-height: var(--touch-target-min);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color var(--dur-base) var(--ease-out);
}
body.sinn-light .nav__link:hover,
body.sinn-light .nav__link.is-active { color: var(--ink); }

/* ==========================================================================
   10. BADGES — quiet
   ========================================================================== */
body.sinn-light .badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-family: var(--font-sans);
  font-size: var(--fs-micro);
  font-weight: 500;
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  padding: 4px var(--space-3);
  border: 1px solid var(--rule-strong);
  border-radius: var(--radius-xs);
  color: var(--ink-soft);
  background: var(--bg-canvas);
}
body.sinn-light .badge--accent {
  border-color: var(--accent);
  color: var(--accent);
}

/* ==========================================================================
   11. LOADER — quiet horizontal rail
   ========================================================================== */
body.sinn-light .loader {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
}
body.sinn-light .loader__rail {
  width: 200px;
  height: 1px;
  background: var(--rule);
  position: relative;
  overflow: hidden;
}
body.sinn-light .loader__rail::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg, transparent, var(--ink), transparent
  );
  animation: sinn-shimmer 1.6s linear infinite;
  background-size: 200% 100%;
}
body.sinn-light .loader__label {
  font-family: var(--font-sans);
  font-size: var(--fs-caption);
  font-weight: 400;
  letter-spacing: var(--ls-ui);
  text-transform: uppercase;
  color: var(--ink-muted);
}

@keyframes sinn-shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position:  200% 0; }
}

/* ==========================================================================
   12. MOTION — minimal reveal
   ========================================================================== */
@keyframes sinn-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.sinn-light .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-slow) var(--ease-soft),
              transform var(--dur-slow) var(--ease-soft);
}
body.sinn-light .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  body.sinn-light .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==========================================================================
   13. UTILITIES
   ========================================================================== */
body.sinn-light .sr-only,
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.sinn-light .flex            { display: flex; }
body.sinn-light .flex-col        { flex-direction: column; }
body.sinn-light .items-center    { align-items: center; }
body.sinn-light .items-end       { align-items: flex-end; }
body.sinn-light .justify-between { justify-content: space-between; }
body.sinn-light .justify-center  { justify-content: center; }
body.sinn-light .gap-2 { gap: var(--space-2); }
body.sinn-light .gap-4 { gap: var(--space-4); }
body.sinn-light .gap-6 { gap: var(--space-6); }
body.sinn-light .gap-8 { gap: var(--space-8); }

body.sinn-light .text-center { text-align: center; }
body.sinn-light .text-right  { text-align: right; }

body.sinn-light .uppercase { text-transform: uppercase; letter-spacing: var(--ls-ui); }

/* End of styleguide.css */
