/* ==========================================================================
   YARA MUR — UTILITY CLASSES
   Safe-Cropping Object-Positioning, Typography & Layout Helpers
   ========================================================================== */

/* Safe Cropping Focal Point Rules */
.crop-face-top {
  object-position: center 15% !important;
}

.crop-portrait-upper {
  object-position: center 25% !important;
}

.crop-center {
  object-position: center center !important;
}

.crop-portrait-full {
  object-position: center 35% !important;
}

/* Aspect Ratio Utilities */
.aspect-portrait { aspect-ratio: 0.75; }
.aspect-tall-portrait { aspect-ratio: 0.67; }
.aspect-square { aspect-ratio: 1.0; }
.aspect-landscape { aspect-ratio: 1.78; }

/* Typography Modifiers */
.text-serif { font-family: var(--font-serif); }
.text-sans { font-family: var(--font-sans); }
.text-mono { font-family: var(--font-mono); }

.text-gold { color: var(--accent-gold); }
.text-crimson { color: var(--accent-crimson-bright); }
.text-muted { color: var(--text-muted); }

.font-italic { font-style: italic; }
.font-light { font-weight: 300; }
.font-regular { font-weight: 400; }
.font-semibold { font-weight: 600; }

.uppercase { text-transform: uppercase; }
.tracking-wide { letter-spacing: 0.15em; }
.tracking-widest { letter-spacing: 0.3em; }

/* Display Helpers */
.hidden { display: none !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
