@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Kalam:wght@700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700;1,900&display=swap');

:root {
  /* Brand Colors from Brandbook */
  --gold: #F4B247;          /* Sunset Gold */
  --gold-light: #FFE29F;
  --gold-dark: #C98A25;
  --orange: #D6601F;        /* Burnt Orange */
  --orange-light: #F07A38;
  --orange-dark: #A9430D;
  
  /* Pure Clean Deep Black Backgrounds */
  --black: #000000;         /* Pure Deep Black */
  --black-pure: #000000;
  --black2: #080808;
  --black3: #0e0e0e;
  --dark: #101010;          /* Sleek Card Surface */
  --dark-surface: #101010;  /* Card / Panel Background */
  --dark-elevated: #1a1a1a; /* Hover / Elevated Elements */
  --dark-border: rgba(255, 255, 255, 0.09);
  --dark-border-gold: rgba(244, 178, 71, 0.32);
  --dark-border-strong: rgba(244, 178, 71, 0.5);

  /* Typography Colors */
  --cream: #F3EEE5;         /* Cream White */
  --cream-muted: #A8A29E;   /* Secondary Text */
  --mid: #78716C;           /* Tertiary / Label text */
  --white: #FFFFFF;

  /* Aliases for compatibility */
  --red: #F4B247;
  --red2: #D6601F;
  --grey: #101010;
  --grey2: #1e1e1e;
  --light: #A8A29E;

  /* Gradients */
  --gradient-sunset: linear-gradient(135deg, #F4B247 0%, #D6601F 100%);
  --gradient-gold: linear-gradient(135deg, #FFE29F 0%, #F4B247 50%, #D6601F 100%);
  --gradient-sunset-hover: linear-gradient(135deg, #FFE29F 0%, #F4B247 100%);
  --gradient-dark: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.98) 100%);
  --gradient-card: linear-gradient(180deg, rgba(18,18,18,0.9) 0%, rgba(8,8,8,0.98) 100%);

  /* Glows & Shadows */
  --glow-gold: 0 0 25px rgba(244, 178, 71, 0.35);
  --glow-orange: 0 0 30px rgba(214, 96, 31, 0.4);
  --shadow-card: 0 15px 35px rgba(0,0,0,0.85);

  /* Fonts: Pure Montserrat + Handwritten Cursive Script Font */
  --font-head: 'Montserrat', sans-serif;
  --font-sub: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  --font-hand: 'Caveat', 'Kalam', cursive;
  --font-script: 'Caveat', 'Kalam', cursive;

  /* Layout */
  --nav-h: 68px;
  --max-w: 1850px;
  --trans: 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Consistent section spacing */
  --section-py: 90px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #000000; }
::-webkit-scrollbar-thumb { background: #222222; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--orange); color: #fff; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-py) 0; position: relative; }

/* BRAND SLASH STYLING */
.slash {
  color: var(--orange);
  font-weight: 800;
  margin: 0 6px;
  display: inline-block;
  opacity: 0.95;
  text-shadow: 0 0 10px rgba(214, 96, 31, 0.4);
}

/* SECTION LABELS & EDITORIAL TITLES */
.s-label {
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.s-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gradient-sunset);
}

.s-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 36px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.s-title .gold, .s-title .red {
  background: var(--gradient-sunset);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* TITLE WITH EDITORIAL EXTENSION LINE */
.s-title-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 36px;
}
.s-title-bar .title-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.15) 0%, transparent 100%);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 28px;
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--trans);
  cursor: pointer;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.btn-red, .btn-sunset {
  background: var(--gradient-sunset);
  color: #000000;
  font-weight: 900;
  box-shadow: 0 4px 18px rgba(214, 96, 31, 0.35);
  border: none;
}
.btn-red:hover, .btn-sunset:hover {
  background: var(--gradient-sunset-hover);
  box-shadow: 0 6px 26px rgba(244, 178, 71, 0.55);
  transform: translateY(-2px);
  color: #000000;
}

.btn-outline-red, .btn-outline-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: rgba(244, 178, 71, 0.04);
  font-weight: 800;
}
.btn-outline-red:hover, .btn-outline-gold:hover {
  background: var(--gradient-sunset);
  color: #000000;
  border-color: transparent;
  box-shadow: var(--glow-gold);
  transform: translateY(-2px);
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--cream);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  font-weight: 800;
}
.btn-outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(244, 178, 71, 0.1);
  transform: translateY(-2px);
}
.btn-sm { padding: 8px 18px; font-size: 11px; letter-spacing: 1.5px; }

/* DIVIDER */
.divider { border: none; border-top: 1px solid var(--dark-border); margin: 0; }

/* GOLD ACCENT BAR */
.gold-bar, .red-bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-sunset);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* FADE IN ANIMATION */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; }
.anim.in { animation: fadeInUp 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards; }

/* COOKIE CONSENT */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--dark-border-gold);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p {
  font-size: 13px;
  color: var(--cream-muted);
  line-height: 1.5;
  max-width: 640px;
}
.cookie-bar p a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  padding: 10px 24px;
  background: var(--gradient-sunset);
  color: #000000;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: var(--trans);
}
.cookie-accept:hover { background: var(--gradient-sunset-hover); transform: translateY(-1px); }
.cookie-reject {
  padding: 10px 24px;
  background: transparent;
  color: var(--cream-muted);
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--dark-border);
  border-radius: 4px;
  transition: var(--trans);
}
.cookie-reject:hover { border-color: var(--cream); color: var(--cream); }

/* RESPONSIVE */
@media (max-width: 768px) {
  :root { --section-py: 64px; --nav-h: 60px; }
  .container { padding: 0 18px; }
  .cookie-bar { flex-direction: column; gap: 14px; padding: 18px; }
  .cookie-bar p { text-align: center; font-size: 12px; }
  .cookie-btns { width: 100%; justify-content: center; }
  .cookie-accept, .cookie-reject { padding: 12px 24px; font-size: 12px; }
  .s-title-bar { flex-direction: column; align-items: flex-start; gap: 8px; }
  .s-title-bar .title-line { width: 100%; }
}
