/* ============================================================
   ARN SHARED STYLESHEET — style.css
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,700;0,900;1,400;1,700&family=Barlow+Condensed:wght@300;400;600;700;900&family=Barlow:wght@300;400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Barlow', 'Trebuchet MS', sans-serif; background: #faf7f2; color: #0a1628; overflow-x: hidden; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── VARIABLES ── */
:root {
  --navy: #0a1628; --navy2: #0d2045;
  --red: #b22234; --red2: #8b0000;
  --gold: #c9aa71; --gold2: #e8c97a;
  --cream: #faf7f2; --white: #ffffff;
  --gray: #6b7280; --light: #e8e4dc; --border: #d1d5db;
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.08);
  --tr: 0.3s cubic-bezier(.4,0,.2,1);
}

/* ── TYPOGRAPHY ── */
.gold-text { color: var(--gold); }
.red-text  { color: var(--red); }
.font-display { font-family: 'Playfair Display', Georgia, serif; }
.font-cond    { font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif; }
.text-center  { text-align: center; }
p { margin-bottom: 14px; line-height: 1.75; }
.lead { font-size: 1.12rem; font-weight: 500; line-height: 1.65; margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }

/* ── SECTION HELPERS ── */
.section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--red); margin-bottom: 12px; display: block;
}
.section-tag.gold { color: var(--gold); }
.section-title {
  font-family: 'Playfair Display', Georgia, serif; font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; margin-bottom: 20px; color: var(--navy);
}
.section-title.light { color: #fff; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background var(--tr), box-shadow var(--tr);
  background: rgba(10,22,40,0.2); backdrop-filter: blur(6px);
}
#navbar.scrolled {
  background: rgba(10,22,40,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.nav-wrap {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px; padding: 0 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-arn { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--gold); letter-spacing: 0.04em; }
.logo-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.45); line-height: 1.2; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.8); padding: 7px 14px; border-radius: 3px;
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(201,170,113,0.1); }
.nav-cta { background: var(--red) !important; color: #fff !important; margin-left: 6px; border-radius: 3px; }
.nav-cta:hover { background: var(--red2) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--tr); }
@media(max-width:900px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 70px; left: 0; right: 0;
    background: rgba(10,22,40,0.98); flex-direction: column;
    padding: 20px 24px; gap: 4px; border-top: 1px solid rgba(201,170,113,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a:last-child { border-bottom: none; }
}

/* ── PAGE HERO ── */
.page-hero {
  position: relative; min-height: 46vh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.ph-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #060e1c 0%, #0a1628 35%, #0d2045 70%, #130508 100%);
}
.ph-bg-img {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0.15;
}
.ph-stars {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.14) 1px, transparent 1px),
                    radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px; background-position: 0 0, 25px 25px;
}
.ph-inner { position: relative; z-index: 2; text-align: center; padding: 100px 24px 48px; color: #fff; }
.ph-tag { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px; }
.ph-title { font-family: 'Playfair Display', Georgia, serif; font-weight: 900; font-size: clamp(2.8rem, 6vw, 5rem); line-height: 1.05; margin-bottom: 12px; }
.ph-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── BUTTONS ── */
.btn { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 13px 28px; border-radius: 2px; border: 2px solid transparent; transition: all var(--tr); cursor: pointer; }
.btn-red   { background: var(--red);  color: #fff; border-color: var(--red); }
.btn-red:hover   { background: var(--red2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(178,34,52,0.4); }
.btn-gold  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover  { background: var(--gold2); transform: translateY(-2px); }
.btn-navy  { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover  { background: var(--navy2); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline-gold  { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline-gold:hover  { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ── QUOTE BLOCK ── */
.quote-block { border-left: 3px solid var(--gold); padding: 20px 24px; margin: 24px 0; background: rgba(201,170,113,0.06); border-radius: 0 4px 4px 0; }
.quote-block p { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.6; }
.quote-block.dark p { color: rgba(255,255,255,0.85); }
.quote-cite { font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem; letter-spacing: 0.12em; color: var(--gold); display: block; }

/* ── IMAGE FRAME ── */
.img-frame { position: relative; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow); }
.img-frame::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 55%, rgba(10,22,40,0.88) 100%); }
.img-frame img { width: 100%; height: 500px; object-fit: cover; object-position: top center; transition: transform 0.6s ease; display: block; background: #e5e7eb; }
.img-frame img.portrait { object-position: center top; }
.img-frame:hover img { transform: scale(1.03); }
.img-caption { position: absolute; bottom: 18px; left: 18px; right: 18px; z-index: 2; color: #fff; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; }
.img-caption em { display: block; color: var(--gold); font-size: 0.75rem; margin-top: 2px; }
.img-chip { position: absolute; top: -12px; right: -12px; background: var(--red); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 0.1em; padding: 7px 16px; border-radius: 50px; box-shadow: 0 4px 16px rgba(178,34,52,0.4); white-space: nowrap; z-index: 3; }

/* ── TWO COL GRIDS ── */
.two-col { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.two-col.rev { grid-template-columns: 420px 1fr; }
.two-col-start { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
@media(max-width:960px) { .two-col, .two-col.rev, .two-col-start { grid-template-columns: 1fr; gap: 40px; } }

/* ── CARDS ── */
.cards-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin-top: 32px; }
.cards-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin-top: 32px; }

/* ── DARK CARD ── */
.dark-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 28px; transition: all var(--tr); }
.dark-card:hover { background: rgba(255,255,255,0.06); border-color: rgba(201,170,113,0.25); transform: translateY(-4px); }
.dark-card .dc-icon { font-size: 2rem; margin-bottom: 14px; }
.dark-card h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--gold); margin-bottom: 8px; }
.dark-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* ── PILLAR CARD ── */
.pillar-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(201,170,113,0.12); border-radius: 8px; padding: 36px 28px; transition: all var(--tr); position: relative; overflow: hidden; }
.pillar-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--red), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform var(--tr); }
.pillar-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.pillar-card:hover::before { transform: scaleX(1); }
.pillar-icon { font-size: 2.4rem; margin-bottom: 16px; }
.pillar-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.pillar-card p { color: rgba(255,255,255,0.6); font-size: 0.92rem; line-height: 1.65; margin: 0; }

/* ── QUICK FACTS ── */
.quick-facts { background: var(--navy); border-radius: 8px; padding: 28px; }
.qf-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.06); gap: 16px; font-size: 0.88rem; }
.qf-row:last-child { border-bottom: none; }
.qf-label { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); white-space: nowrap; }
.qf-val { color: rgba(255,255,255,0.72); text-align: right; }

/* ── TIMELINE ── */
.timeline { position: relative; max-width: 780px; margin: 40px auto 0; }
.timeline::before { content: ''; position: absolute; left: 84px; top: 0; bottom: 0; width: 1px; background: linear-gradient(to bottom, var(--gold), rgba(201,170,113,0.1)); }
.tl-item { display: grid; grid-template-columns: 60px 24px 1fr; gap: 16px; align-items: start; margin-bottom: 36px; }
.tl-year { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.05rem; color: var(--navy); text-align: right; padding-top: 2px; }
.tl-year.gold { color: var(--gold); }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--navy); border: 2px solid var(--light); margin-top: 3px; position: relative; z-index: 1; }
.tl-dot.gold { background: var(--gold); border-color: var(--gold); width: 18px; height: 18px; margin-top: 1px; box-shadow: 0 0 12px rgba(201,170,113,0.5); }
.tl-dot.star { background: var(--gold); border-color: var(--gold2); width: 22px; height: 22px; margin-top: 0; box-shadow: 0 0 20px rgba(201,170,113,0.7); }
.tl-body h4 { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1.05rem; color: var(--navy); margin-bottom: 4px; }
.tl-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; margin: 0; }
.tl-star .tl-body { background: linear-gradient(135deg,rgba(201,170,113,0.1),rgba(201,170,113,0.05)); border: 1px solid rgba(201,170,113,0.3); border-radius: 8px; padding: 16px 20px; }
.tl-star .tl-body h4 { color: var(--gold); font-size: 1.15rem; }

/* ── MILESTONES BAND ── */
.milestones { background: var(--navy); padding: 18px 24px; overflow-x: auto; }
.milestones-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 4px; }
.ms-item { display: flex; flex-direction: column; align-items: center; padding: 4px 14px; }
.ms-year { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 1.3rem; color: #fff; line-height: 1; }
.ms-item.feat .ms-year { color: var(--gold); }
.ms-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); white-space: nowrap; }
.ms-arr { color: var(--red); font-size: 0.8rem; opacity: 0.5; padding: 0 4px; }

/* ── STAT GRID ── */
.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box { background: var(--cream); border: 1px solid var(--light); border-radius: 8px; padding: 28px 20px; text-align: center; box-shadow: var(--shadow-sm); transition: all var(--tr); }
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.stat-num { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 2rem; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.stat-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gray); }
.stat-box.dark { background: var(--navy); border-color: var(--gold); }
.stat-box.dark .stat-num, .stat-box.dark .stat-lbl { color: var(--gold); }

/* ── CTA BANNER ── */
.cta-banner { position: relative; background: linear-gradient(135deg, var(--red2) 0%, var(--red) 60%, #8b1a2d 100%); padding: 90px 24px; text-align: center; overflow: hidden; }
.cta-stars { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px); background-size: 28px 28px; animation: drift 50s linear infinite; }
@keyframes drift { 0% { transform: translateY(0); } 100% { transform: translateY(-40px); } }
.cta-inner { position: relative; z-index: 2; }
.cta-banner h2 { font-family: 'Playfair Display', Georgia, serif; font-weight: 900; font-size: clamp(2.2rem,5vw,3.8rem); color: #fff; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 28px; font-style: italic; font-size: 1.05rem; }
.cta-chip { display: inline-block; font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 0.72rem; letter-spacing: 0.28em; color: var(--gold); border: 1px solid rgba(201,170,113,0.45); padding: 6px 20px; border-radius: 50px; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── CONTACT FORM ── */
.cf { display: flex; flex-direction: column; gap: 14px; }
.cf input, .cf select, .cf textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--border);
  border-radius: 4px; font-family: 'Barlow', sans-serif; font-size: 0.92rem;
  color: var(--navy); background: #fff; outline: none;
  transition: border-color var(--tr), box-shadow var(--tr);
}
.cf input:focus, .cf select:focus, .cf textarea:focus {
  border-color: var(--navy); box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
}
.cf textarea { resize: vertical; min-height: 130px; }
.form-success {
  display: none; background: #dcfce7; color: #15803d;
  border: 1px solid #bbf7d0; border-radius: 4px;
  padding: 14px 18px; font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; letter-spacing: 0.04em; text-align: center; font-size: 0.95rem;
}
.contact-info-card { background: var(--navy); border-radius: 8px; padding: 36px 32px; color: #fff; height: 100%; }
.contact-info-card h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.6rem; color: var(--gold); margin-bottom: 16px; }
.contact-info-card p { color: rgba(255,255,255,0.7); margin-bottom: 24px; }
.ci-link { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.ci-link:last-child { border-bottom: none; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; }
.ci-link a { color: var(--gold); font-weight: 500; transition: opacity var(--tr); }
.ci-link a:hover { opacity: 0.75; }
.ci-link span { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ── FOOTER ── */
.footer { background: var(--navy); padding: 56px 24px 28px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-logo { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; }
.footer-logo .logo-arn { font-size: 2rem; }
.footer-logo span { font-family: 'Barlow Condensed', sans-serif; color: rgba(255,255,255,0.45); font-size: 0.82rem; }
.footer-nav { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px; }
.footer-nav a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.42); transition: color var(--tr); }
.footer-nav a:hover { color: var(--gold); }
.footer-ext { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.footer-ext a { font-size: 0.82rem; color: var(--gold); opacity: 0.6; transition: opacity var(--tr); }
.footer-ext a:hover { opacity: 1; }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.06); margin: 20px 0; }
.footer-copy { color: rgba(255,255,255,0.22); font-size: 0.75rem; line-height: 1.8; }

/* ── REVEAL ANIMATION ── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media(max-width:768px) { .section { padding: 56px 20px; } .stat-grid { grid-template-columns: 1fr 1fr; } .tl-item { grid-template-columns: 48px 18px 1fr; } }
@media(max-width:480px) { .stat-grid { grid-template-columns: 1fr; } .img-chip { position: static; display: inline-block; margin-top: 12px; } }
