.fade-up { opacity: 1 !important; transform: none !important; }

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy:          #0A1628;
  --gold:          #C49A2B;
  --gold-hover:    #E0B535;
  --gold-pale:     #F5EDD6;
  --cream:         #F8F5EF;
  --white:         #FFFFFF;
  --body:          #1E1E1C;
  --muted:         #6A6A65;
  --border:        #DDD9D0;
  --cocoa:         #2E1000;
  --coffee-dark:   #1A2E1A;
  --success:       #1A7A4A;
  
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  
  --space-xs:   8px;
  --space-sm:   16px;
  --space-md:   32px;
  --space-lg:   64px;
  --space-xl:   96px;
  --space-2xl:  128px;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  24px;
  --max-width:  1240px;
}

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

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

section, .section {
  width: 100%;
  max-width: 100%;
  position: relative;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  width: 100%;
}

.section-pad { padding: clamp(60px, 8vw, 120px) 0; }
.section-pad-sm { padding: clamp(40px, 5vw, 72px) 0; }

h1 { font-family: var(--font-heading); font-size: clamp(40px, 6vw, 80px); font-weight: 600; line-height: 1.05; letter-spacing: -0.01em; color: var(--navy); }
h2 { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 54px); font-weight: 600; line-height: 1.1; color: var(--navy); }
h3 { font-family: var(--font-heading); font-size: clamp(20px, 2.5vw, 32px); font-weight: 600; line-height: 1.2; color: var(--navy); }
h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); }
p { font-size: 16px; line-height: 1.75; color: var(--muted); }
p.lead { font-size: clamp(17px, 2vw, 21px); line-height: 1.65; color: var(--body); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
  margin-right: 10px;
  vertical-align: middle;
  margin-bottom: 2px;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px; justify-content: center;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  padding: 15px 30px; border-radius: var(--radius-sm);
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-hover); transform: translateY(-1px); }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: #1a2d45; transform: translateY(-1px); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }
.btn-lg { padding: 18px 40px; font-size: 13px; }
.btn svg, .btn .arrow { transition: transform 0.2s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

.tag {
  display: inline-block; font-size: 10px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 20px;
  background: var(--gold-pale); color: var(--cocoa);
}

.stat-number {
  font-family: var(--font-heading); font-size: clamp(36px, 5vw, 64px);
  font-weight: 300; color: var(--gold); line-height: 1;
}

.ruled { border: none; border-top: 0.5px solid var(--border); margin: 0; }

.img-cover { width: 100%; height: 100%; object-fit: cover; display: block; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
