/* src/styles.scss */
:root {
  --navy-900: #0a1a35;
  --navy-800: #0f2848;
  --navy-700: #142f55;
  --navy-600: #1a3b6b;
  --navy-500: #25579b;
  --gold-500: #d4a052;
  --gold-400: #e0b56b;
  --gold-300: #ebcb8c;
  --off-white: #f5f3ef;
  --paper: #faf8f4;
  --gray-100: #f2f4f8;
  --gray-200: #e5e9f0;
  --gray-300: #c9d0db;
  --gray-500: #8892a7;
  --gray-700: #4a5468;
  --ink: #16223a;
  --serif:
    "Playfair Display",
    "Cormorant Garamond",
    Georgia,
    serif;
  --serif-italic:
    "Cormorant Garamond",
    "Playfair Display",
    Georgia,
    serif;
  --sans:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  --max-w: 1280px;
  --shadow-sm: 0 2px 6px rgba(15, 40, 72, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 40, 72, 0.10);
  --shadow-lg: 0 25px 60px rgba(15, 40, 72, 0.18);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1,
h2,
h3,
h4 {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--navy-800);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p {
  margin: 0;
}
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-500);
}
.gold-divider {
  width: 60px;
  height: 3px;
  background: var(--gold-500);
  border-radius: 2px;
  margin-bottom: 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-800);
  border-color: var(--gold-500);
}
.btn--gold:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 160, 82, 0.35);
}
.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.btn--ghost-dark {
  background: transparent;
  color: var(--navy-800);
  border-color: var(--navy-800);
}
.btn--ghost-dark:hover {
  background: var(--navy-800);
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.in-view {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.in-view {
  opacity: 1;
  transform: translateX(0);
}
.reveal-zoom {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-zoom.in-view {
  opacity: 1;
  transform: scale(1);
}
.stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.in-view > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger.in-view > *:nth-child(1) {
  transition-delay: 0.05s;
}
.stagger.in-view > *:nth-child(2) {
  transition-delay: 0.15s;
}
.stagger.in-view > *:nth-child(3) {
  transition-delay: 0.25s;
}
.stagger.in-view > *:nth-child(4) {
  transition-delay: 0.35s;
}
.stagger.in-view > *:nth-child(5) {
  transition-delay: 0.45s;
}
.stagger.in-view > *:nth-child(6) {
  transition-delay: 0.55s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom,
  .stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
  html {
    scroll-behavior: auto;
  }
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--off-white);
}
::-webkit-scrollbar-thumb {
  background: var(--navy-600);
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--navy-800);
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
