html {
  scroll-behavior: smooth;
}

:root {
  --ink: #0B1E3A;
  --blue: #3A6CF3;
  --blue-dark: #183A8A;
  --gold: #C5A059;
  --gold-light: #F2D574;
  --white: #FFFFFF;
  --off-white: #F8FAFC;
  --glass: rgba(255, 255, 255, 0.95);
  --radius: 12px;
  --font-main: "Montserrat", sans-serif;

  /* Extended shared aliases used across the site */
  --navy-deep: #051329;
  --navy-light: #0B1E3A;
  --pearl: #F8FAFC;
  --text-grey: #5C6C88;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--ink);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover,
a:focus {
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

ul,
ol {
  padding-left: 1.25rem;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875em;
}

main,
section,
article,
aside,
header,
footer,
nav {
  display: block;
}

iframe,
video {
  max-width: 100%;
}

svg {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Layout */
.lux-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Shared typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  color: var(--ink);
}

.lux-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 16px;
  background: rgba(58, 108, 243, 0.08);
  padding: 8px 16px;
  border-radius: 99px;
}

.lux-eyebrow-gold {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-bottom: 24px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 8px 16px;
  border-radius: 99px;
  background: rgba(212, 175, 55, 0.05);
}

.lux-h1 {
  font-family: var(--font-main);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 24px;
}

.lux-h2 {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}

.lux-h2-dark,
.lux-h2-navy {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--navy-deep);
}

.lux-h2-white {
  font-family: var(--font-main);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--white);
}

.lux-p {
  font-family: var(--font-main);
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-grey);
  font-weight: 400;
  line-height: 1.8;
  max-width: 65ch;
  margin: 0 0 24px;
}

.lux-p-center,
.lux-p-center-dark,
.lux-p-center-light {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.lux-p-center,
.lux-p-center-dark {
  color: var(--text-grey);
}

.lux-p-center-light {
  color: #CBD5E1;
}

.lux-p-body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-grey);
  margin: 0 0 24px;
}

.text-gradient {
  background: linear-gradient(90deg, #fff 0%, #aabce8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gold-text {
  color: var(--gold-light);
}

.text-gold {
  color: var(--gold);
}

.text-navy {
  color: var(--navy-deep);
}

.text-white {
  color: var(--white);
}

.text-grey {
  color: var(--text-grey);
}

.bg-pearl {
  background-color: var(--pearl);
}

.bg-white {
  background-color: var(--white);
}

.bg-navy {
  background-color: var(--navy-deep);
}

./* Core button foundation */
.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 99px;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.gold-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #B89628 100%);
  color: var(--navy-deep);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.gold-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, #E5C354 0%, #C4A336 100%);
}

.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.outline-light:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-deep);
}

.lux-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--navy-deep);
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid rgba(11, 30, 58, 0.1);
  transition: all 0.3s ease;
}

.lux-link-btn .arrow {
  color: var(--gold);
  transition: transform 0.3s ease;
}

.lux-link-btn:hover {
  border-bottom-color: var(--gold);
  color: var(--gold);
}

.lux-link-btn:hover .arrow {
  transform: translateX(5px);
}

/* .lux-link-gold is owned by core/sections.css because it is used inside section-level CTA systems. */

/* .lux-list is owned by core/sections.css because list markers vary by section system. */

/* Shared utility classes */
.relative-z {
  position: relative;
  z-index: 2;
}

.is-invalid {
  border-color: #c62828 !important;
  box-shadow: 0 0 0 1px rgba(198, 40, 40, 0.15);
}

.form-error-message {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #c62828;
}

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

.no-scroll {
  overflow: hidden;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.w-100 {
  width: 100%;
}

.max-width-readable {
  max-width: 760px;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

/* Responsive foundation */
@media (max-width: 991px) {
  .lux-container {
    padding: 0 20px;
  }
}

@media (max-width: 767px) {
  .lux-container {
    padding: 0 18px;
  }

  .lux-h1 {
    font-size: clamp(34px, 9vw, 48px);
  }

  .lux-h2,
  .lux-h2-dark,
  .lux-h2-navy,
  .lux-h2-white {
    font-size: clamp(28px, 7vw, 36px);
  }

  .lux-p,
  .lux-p-body,
  .lux-p-center,
  .lux-p-center-dark,
  .lux-p-center-light {
    font-size: 15px;
    line-height: 1.75;
  }

  .lux-btn {
    width: 100%;
  }

  .text-left,
  .text-right {
    text-align: center;
  }
}

/* ------------------------------
   Ownership note
   ------------------------------
   base.css should contain tokens, reset rules, typography foundations,
   layout foundations, and small global utilities only.
   Full components belong in core/components.css.
   Full section systems belong in core/sections.css.
*/