/* src/styles.scss */
:root {
  --bg-dark-primary: #111518;
  --bg-dark-surface: #181E24;
  --bg-dark-card: #202730;
  --bg-light-primary: #FAFAF8;
  --bg-light-surface: #FFFFFF;
  --bg-light-card: #F4F3EE;
  --color-gold-primary: #C5A265;
  --color-gold-light: #DFBC7A;
  --color-gold-dark: #9A7B44;
  --color-gold-gradient:
    linear-gradient(
      135deg,
      #DFBC7A 0%,
      #C5A265 50%,
      #9A7B44 100%);
  --text-dark-primary: #12161A;
  --text-dark-muted: #5A6578;
  --text-dark-subtle: #8996A9;
  --text-light-primary: #F8FAFC;
  --text-light-muted: #CBD5E1;
  --text-light-subtle: #94A3B8;
  --border-dark: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(197, 162, 101, 0.3);
  --border-light: rgba(18, 22, 26, 0.08);
  --font-serif:
    "Cormorant Garamond",
    Georgia,
    serif;
  --font-sans:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,0.15);
  --shadow-gold: 0 10px 30px rgba(197, 162, 101, 0.2);
  --glass-dark: rgba(18, 22, 26, 0.75);
  --glass-light: rgba(255, 255, 255, 0.85);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  box-sizing: border-box;
}
body {
  font-family: var(--font-sans);
  background-color: var(--bg-light-primary);
  color: var(--text-dark-primary);
  line-height: 1.6;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden !important;
  box-sizing: border-box;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark-primary);
}
::-webkit-scrollbar-thumb {
  background: #3A4552;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-gold-primary);
}
h1,
h2,
h3,
h4,
.font-serif {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.text-gold {
  color: var(--color-gold-primary);
}
.text-gold-gradient {
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
  box-sizing: border-box;
}
.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 60px;
  box-sizing: border-box;
}
.section-padding {
  padding: 100px 0;
}
@media (max-width: 1200px) {
  .container,
  .container-wide {
    padding: 0 24px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .section-padding {
    padding: 60px 0;
  }
}
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}
.section-header .subtitle {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold-primary);
  margin-bottom: 12px;
  display: inline-block;
}
.section-header .title {
  font-size: 2.8rem;
  line-height: 1.15;
  color: var(--text-dark-primary);
  margin-bottom: 16px;
}
.section-header .title.light {
  color: var(--text-light-primary);
}
.section-header .description {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
  font-weight: 400;
}
.section-header .description.light {
  color: var(--text-light-muted);
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 40px;
  }
  .section-header .title {
    font-size: 2.1rem;
  }
}
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--color-gold-gradient);
  margin: 20px auto;
  border-radius: 2px;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #12161A;
  background: var(--color-gold-gradient);
  border: 1px solid var(--color-gold-primary);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  filter: brightness(1.08);
}
.btn-gold:active {
  transform: translateY(0);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  transform: translateY(-2px);
}
.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold-primary);
  background: transparent;
  border: 1px solid var(--color-gold-primary);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-smooth);
}
.btn-outline-gold:hover {
  background: var(--color-gold-gradient);
  color: #12161A;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.link-arrow svg {
  transition: transform var(--transition-smooth);
}
.link-arrow:hover {
  color: var(--color-gold-primary);
}
.link-arrow:hover svg {
  transform: translateX(6px);
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.95s cubic-bezier(0.16, 1, 0.3, 1), transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}
.delay-5 {
  transition-delay: 0.5s;
}

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