/* ============================================================
   GLOBAL STYLES & VARIABLES
   ============================================================ */
:root {
  --navy: #1a2b3c;
  --gold: #c5a059;
  --gold-hover: #b08d48;
  --ice: #f8f9fa;
  --white: #ffffff;
  --dark: #0a1118;
  --transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================
   RESET & BASE CONFIGURATION
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--white);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

.playfair {
  font-family: "Playfair Display", serif;
}

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

ul {
  list-style: none;
}