/* =========================================
   ETF GROUP — Global Styles
   Palette: Carement Brand Colors
   Teal #004040 · Coral #f07860 · Deep #050f10
   ========================================= */

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

:root {
  /* Backgrounds */
  --black:   #050f10;
  --deep:    #081618;
  --surface: #0d2226;
  --border:  #1a3a40;

  /* Brand Teal (left wing) */
  --teal:       #2a7d8a;
  --teal-light: #4aaabb;
  --teal-dark:  #1a5060;
  --teal-deep:  #004040;   /* wordmark exact */

  /* Brand Coral (right wing) */
  --coral:       #ef7560;
  --coral-light: #f7a07a;
  --coral-dark:  #c45a44;

  /* Text */
  --cream:  #dff0ee;
  --muted:  #5a7a80;
  --white:  #ffffff;

  /* Legacy alias so old references still work */
  --gold:       var(--coral);
  --gold-light: var(--coral-light);
  --gold-dark:  var(--coral-dark);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --nav-h:      80px;
  --max-w:      1280px;
  --section-pad: 100px;
  --radius:      2px;

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--teal-dark); }
::selection { background: var(--coral); color: var(--black); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.display {
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.headline    { font-size: clamp(2rem, 4vw, 3.5rem); }
.subheadline { font-size: clamp(1.4rem, 2.5vw, 2rem); }
p { color: var(--cream); opacity: 0.85; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
.coral { color: var(--coral); }
.teal  { color: var(--teal-light); }
.muted { color: var(--muted); }

/* ---- LAYOUT ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 40px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }
.section { padding: var(--section-pad) 0; }
.section--dark    { background: var(--deep); }
.section--surface { background: var(--surface); }

/* ---- ACCENT LINE ---- */
.accent-line { width: 60px; height: 2px; background: var(--coral); margin: 20px 0; }
.accent-line--teal { background: var(--teal); }
.accent-line--center { margin: 20px auto; }
/* keep old class working */
.gold-line { width: 60px; height: 2px; background: var(--coral); margin: 20px 0; }
.gold-line--center { margin: 20px auto; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-coral, .btn-gold {
  background: var(--coral);
  color: var(--white);
}
.btn-coral::after, .btn-gold::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--coral-light);
  transform: translateX(-101%);
  transition: transform 0.4s var(--ease);
}
.btn-coral:hover::after, .btn-gold:hover::after { transform: translateX(0); }
.btn-coral span, .btn-gold span { position: relative; z-index: 1; }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-light); }

.btn-outline {
  background: transparent;
  color: var(--coral);
  border: 1px solid var(--coral);
}
.btn-outline:hover { background: var(--coral); color: var(--white); }

.btn-outline-teal {
  background: transparent;
  color: var(--teal-light);
  border: 1px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
  font-size: 0.75rem;
}
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-light); }

/* ---- LABELS ---- */
.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
}
.label--teal { color: var(--teal-light); }

/* ========================================= */
/*  NAVIGATION                               */
/* ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(5, 15, 16, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo { display: flex; flex-direction: column; line-height: 1; }
.nav__logo-main {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 0.08em;
}
.nav__logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}
.nav__links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav__links a {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.75;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--coral);
  transition: width 0.35s var(--ease);
}
.nav__links a:hover, .nav__links a.active { opacity: 1; }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 16px; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.nav__hamburger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: all 0.3s var(--ease); }
.nav__mobile {
  display: none;
  position: fixed; inset: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.3s, color 0.3s;
}
.nav__mobile a:hover { opacity: 1; color: var(--coral); }
.nav__mobile-close {
  position: absolute;
  top: 28px; right: 28px;
  cursor: pointer; font-size: 1.5rem;
  color: var(--muted);
  background: none; border: none;
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
}

/* ========================================= */
/*  HERO                                     */
/* ========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(5,15,16,0.97) 0%, rgba(5,15,16,0.80) 55%, rgba(5,15,16,0.95) 100%);
}
/* Teal mesh background */
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 75% 40%, rgba(42,125,138,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(239,117,96,0.06) 0%, transparent 60%);
}
.hero__noise {
  position: absolute; inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero__content { position: relative; z-index: 1; padding-top: var(--nav-h); }
.hero__eyebrow {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero__eyebrow-line { width: 40px; height: 1px; background: var(--coral); }
.hero__title {
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 300; line-height: 1.0; margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.4s forwards;
}
.hero__title em { font-style: italic; color: var(--coral); }
.hero__title .teal-em { font-style: italic; color: var(--teal-light); }
.hero__desc {
  font-size: 1.05rem; max-width: 520px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.6s forwards;
  margin-bottom: 44px; line-height: 1.8;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.8s forwards;
}
.hero__scroll {
  position: absolute; bottom: 48px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.hero__scroll-label { font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--coral), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero__stats { position: absolute; bottom: 0; right: 0; display: flex; border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.hero__stat { padding: 28px 36px; border-right: 1px solid var(--border); }
.hero__stat-number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300; color: var(--coral); line-height: 1; }
.hero__stat-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }
@media (max-width: 768px) { .hero__stats { display: none; } }

/* ========================================= */
/*  SECTION SHARED                           */
/* ========================================= */
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-eyebrow { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.section-eyebrow--center { justify-content: center; }
.section-eyebrow-line { flex: 0 0 32px; height: 1px; background: var(--coral); }
.section-eyebrow-line--teal { background: var(--teal); }

/* ========================================= */
/*  ABOUT STRIP                              */
/* ========================================= */
.about-strip { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
@media (max-width: 768px) { .about-strip { grid-template-columns: 1fr; gap: 40px; } }
.about-strip__visual {
  position: relative; aspect-ratio: 4/5;
  background: var(--surface); overflow: hidden;
}
.about-strip__visual-inner { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.about-strip__monogram { font-family: var(--font-display); font-size: 12rem; font-weight: 200; color: rgba(42,125,138,0.08); line-height: 1; user-select: none; }
.about-strip__accent { position: absolute; bottom: -20px; right: -20px; width: 200px; height: 200px; border: 1px solid var(--coral); opacity: 0.2; }
.about-strip__values { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.about-strip__value { padding: 20px; border: 1px solid var(--border); transition: border-color 0.3s; }
.about-strip__value:hover { border-color: var(--teal-dark); }
.about-strip__value-icon { font-size: 1.5rem; margin-bottom: 10px; }
.about-strip__value h4 { font-size: 0.9rem; font-weight: 400; margin-bottom: 6px; color: var(--teal-light); letter-spacing: 0.05em; }
.about-strip__value p { font-size: 0.8rem; opacity: 0.6; line-height: 1.5; }

/* ========================================= */
/*  SUBSIDIARIES GRID                        */
/* ========================================= */
.subs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2px; }
.sub-card {
  background: var(--surface); padding: 48px 40px;
  position: relative; border: 1px solid var(--border);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  overflow: hidden;
}
.sub-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 0; background: var(--coral);
  transition: height 0.4s var(--ease);
}
.sub-card:hover { border-color: var(--teal-dark); }
.sub-card:hover::before { height: 100%; }
.sub-card--featured { grid-column: span 2; background: linear-gradient(135deg, var(--surface) 0%, rgba(42,125,138,0.07) 100%); }
@media (max-width: 768px) { .sub-card--featured { grid-column: span 1; } }
.sub-card__number { font-family: var(--font-display); font-size: 4rem; font-weight: 200; color: rgba(42,125,138,0.15); line-height: 1; margin-bottom: 20px; }
.sub-card__tag { margin-bottom: 16px; }
.sub-card__name { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 16px; }
.sub-card p { font-size: 0.9rem; opacity: 0.65; line-height: 1.7; margin-bottom: 28px; }
.sub-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--coral); padding-bottom: 4px;
  border-bottom: 1px solid rgba(239,117,96,0.3); transition: border-color 0.3s, gap 0.3s;
}
.sub-card__link:hover { gap: 16px; border-color: var(--coral); }

/* ========================================= */
/*  NEWS CARDS                               */
/* ========================================= */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; }
.news-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--border); overflow: hidden;
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease); cursor: pointer;
}
.news-card:hover { border-color: var(--teal-dark); transform: translateY(-4px); }
.news-card__thumb { aspect-ratio: 16/9; background: var(--surface); overflow: hidden; display: flex; align-items: center; justify-content: center; position: relative; }
.news-card__thumb-placeholder { font-family: var(--font-display); font-size: 5rem; font-weight: 200; color: rgba(42,125,138,0.12); }
.news-card__cat { position: absolute; top: 16px; left: 16px; padding: 4px 12px; background: var(--coral); color: var(--white); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.news-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.news-card__meta { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.news-card__date, .news-card__author { font-size: 0.7rem; color: var(--muted); letter-spacing: 0.1em; }
.news-card__title { font-size: 1.3rem; margin-bottom: 12px; line-height: 1.3; transition: color 0.3s; }
.news-card:hover .news-card__title { color: var(--teal-light); }
.news-card__excerpt { font-size: 0.85rem; opacity: 0.6; line-height: 1.7; flex: 1; margin-bottom: 20px; }
.news-card__read { display: inline-flex; align-items: center; gap: 6px; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); transition: gap 0.3s; }
.news-card:hover .news-card__read { gap: 14px; }

/* ========================================= */
/*  CONTACT                                  */
/* ========================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info__item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.contact-info__icon { width: 36px; height: 36px; border: 1px solid var(--teal-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.9rem; }
.contact-info__label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.contact-info__value { font-size: 0.9rem; color: var(--cream); }

/* Form */
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: var(--surface); border: 1px solid var(--border);
  color: var(--cream); font-family: var(--font-body); font-size: 0.9rem;
  padding: 14px 18px; outline: none; transition: border-color 0.3s; resize: vertical; appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal-dark); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); opacity: 0.5; }

/* ========================================= */
/*  SHOP LOCATION CARDS                      */
/* ========================================= */
.shops-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px,1fr)); gap: 2px; }
.shop-card { background: var(--surface); padding: 32px; border: 1px solid var(--border); transition: border-color 0.3s; }
.shop-card:hover { border-color: var(--teal-dark); }
.shop-card__icon { width: 40px; height: 40px; border: 1px solid var(--coral); display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 16px; color: var(--coral); }
.shop-card__name { font-size: 1.05rem; font-family: var(--font-display); margin-bottom: 8px; color: var(--teal-light); }
.shop-card__addr { font-size: 0.8rem; opacity: 0.55; line-height: 1.6; margin-bottom: 16px; }
.shop-card__link { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--coral); }
.shop-card__link:hover { text-decoration: underline; }

/* ========================================= */
/*  FOOTER                                   */
/* ========================================= */
.footer { background: var(--deep); border-top: 1px solid var(--border); padding: 80px 0 40px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 520px) { .footer__grid { grid-template-columns: 1fr; } }
.footer__logo-main { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; color: var(--coral); letter-spacing: 0.08em; display: block; margin-bottom: 4px; }
.footer__logo-sub { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 20px; }
.footer__brand p { font-size: 0.85rem; opacity: 0.5; line-height: 1.7; max-width: 260px; }
.footer__col h5 { font-family: var(--font-body); font-size: 0.65rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 12px; }
.footer__col ul li a { font-size: 0.85rem; color: var(--cream); opacity: 0.55; transition: opacity 0.3s, color 0.3s; }
.footer__col ul li a:hover { opacity: 1; color: var(--teal-light); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--border); }
.footer__copyright { font-size: 0.75rem; color: var(--muted); opacity: 0.5; }
.footer__bottom-links { display: flex; gap: 24px; }
.footer__bottom-links a { font-size: 0.75rem; color: var(--muted); opacity: 0.5; transition: opacity 0.3s; }
.footer__bottom-links a:hover { opacity: 1; }

/* ========================================= */
/*  PAGE HERO (inner pages)                  */
/* ========================================= */
.page-hero { padding: 160px 0 80px; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero::before { content: attr(data-label); position: absolute; top: 50%; right: -20px; transform: translateY(-50%) rotate(90deg); font-family: var(--font-display); font-size: 10rem; font-weight: 200; color: rgba(42,125,138,0.04); white-space: nowrap; pointer-events: none; }

/* ========================================= */
/*  PRODUCTS                                 */
/* ========================================= */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 2px; }
.product-card { background: var(--surface); position: relative; overflow: hidden; border: 1px solid var(--border); transition: border-color 0.3s, transform 0.3s; cursor: pointer; }
.product-card:hover { border-color: var(--teal-dark); }
.product-card__img { aspect-ratio: 3/4; background: var(--deep); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card__icon { font-size: 4rem; opacity: 0.15; transition: transform 0.5s var(--ease), opacity 0.3s; }
.product-card:hover .product-card__icon { transform: scale(1.1); opacity: 0.25; }
.product-card__body { padding: 24px; }
.product-card__cat { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.product-card__name { font-size: 1.1rem; margin-bottom: 8px; }
.product-card__desc { font-size: 0.8rem; opacity: 0.5; line-height: 1.6; }

/* ========================================= */
/*  ARTICLE VIEW                             */
/* ========================================= */
.article-wrap { max-width: 760px; margin: 0 auto; }
.article__meta { display: flex; align-items: center; gap: 20px; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); flex-wrap: wrap; }
.article__content { font-size: 1.05rem; line-height: 1.9; }
.article__content p { margin-bottom: 24px; opacity: 0.85; }

/* ========================================= */
/*  TIMELINE                                 */
/* ========================================= */
.timeline { border-left: 1px solid var(--border); padding-left: 32px; }
.timeline__item { margin-bottom: 36px; position: relative; }
.timeline__dot {
  position: absolute; left: -40px; top: 2px;
  width: 16px; height: 16px;
  border: 1px solid var(--coral); background: var(--black);
  display: flex; align-items: center; justify-content: center;
}
.timeline__dot--filled { background: var(--coral); }
.timeline__dot-inner { width: 6px; height: 6px; background: var(--coral); }
.timeline__year { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--coral); margin-bottom: 8px; }
.timeline__title { font-size: 1.05rem; margin-bottom: 6px; }
.timeline__desc { font-size: 0.85rem; opacity: 0.55; line-height: 1.6; }

/* ========================================= */
/*  ANIMATIONS                               */
/* ========================================= */
@keyframes fadeUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes scrollPulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================= */
/*  TOAST                                    */
/* ========================================= */
.toast { position: fixed; bottom: 32px; right: 32px; background: var(--surface); border: 1px solid var(--teal-dark); border-left: 3px solid var(--coral); padding: 16px 24px; font-size: 0.85rem; color: var(--cream); z-index: 9999; transform: translateY(20px); opacity: 0; transition: all 0.3s var(--ease); max-width: 360px; }
.toast.show { transform: none; opacity: 1; }

/* ========================================= */
/*  MODAL                                    */
/* ========================================= */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(8px); }
.modal-overlay.open { display: flex; }
.modal { background: var(--deep); border: 1px solid var(--border); max-width: 800px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; }
.modal__header { padding: 32px 40px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.modal__close { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 1.4rem; line-height: 1; flex-shrink: 0; margin-top: 4px; transition: color 0.3s; }
.modal__close:hover { color: var(--cream); }
.modal__body { padding: 40px; }

/* ========================================= */
/*  ADMIN                                    */
/* ========================================= */
.admin-login { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--black); }
.admin-login__box { width: 400px; border: 1px solid var(--border); padding: 52px 44px; }
.admin-wrap { display: flex; min-height: 100vh; }
.admin-sidebar { width: 260px; flex-shrink: 0; background: var(--deep); border-right: 1px solid var(--border); padding: 32px 0; position: fixed; top: 0; left: 0; height: 100vh; overflow-y: auto; }
.admin-sidebar__logo { padding: 0 28px 32px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.admin-sidebar__logo-main { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--coral); }
.admin-sidebar__logo-sub { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.admin-sidebar__nav { list-style: none; padding: 0 12px; }
.admin-sidebar__nav li { margin-bottom: 4px; }
.admin-sidebar__nav a { display: flex; align-items: center; gap: 12px; padding: 11px 16px; font-size: 0.82rem; font-weight: 400; letter-spacing: 0.05em; color: var(--cream); opacity: 0.55; border-radius: 2px; transition: opacity 0.2s, background 0.2s, color 0.2s; }
.admin-sidebar__nav a:hover { opacity: 1; background: var(--surface); }
.admin-sidebar__nav a.active { opacity: 1; background: rgba(42,125,138,0.12); color: var(--teal-light); }
.admin-main { flex: 1; margin-left: 260px; padding: 40px 48px; min-height: 100vh; }
.admin-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.admin-topbar h2 { font-size: 1.6rem; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.admin-table th { text-align: left; padding: 12px 16px; font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border); }
.admin-table td { padding: 16px; border-bottom: 1px solid var(--border); vertical-align: top; }
.admin-table tr:hover td { background: var(--surface); }
.admin-badge { display: inline-block; padding: 3px 10px; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; background: rgba(42,125,138,0.15); color: var(--teal-light); border: 1px solid rgba(42,125,138,0.25); }
.admin-form { max-width: 720px; }
.admin-form .form-group label { color: var(--cream); opacity: 0.6; }
.admin-actions { display: flex; gap: 10px; }
.btn-danger { background: transparent; border: 1px solid #c0392b; color: #e74c3c; font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 16px; cursor: pointer; transition: all 0.25s; }
.btn-danger:hover { background: #c0392b; color: white; }
.btn-sm { padding: 8px 18px; font-size: 0.72rem; }
.notice { background: rgba(42,125,138,0.08); border: 1px solid rgba(42,125,138,0.2); border-left: 3px solid var(--teal); padding: 16px 20px; font-size: 0.85rem; margin-bottom: 28px; line-height: 1.6; }
@media (max-width: 768px) { .admin-sidebar { display: none; } .admin-main { margin-left: 0; padding: 20px; } }
