/* =============================================
   VESELY INTERNATIONAL & ASSOCIATES
   Style Guide: White | Black | Gold
   ============================================= */

:root {
  --gold:       #b8960c;
  --gold-light: #d4ac0d;
  --gold-pale:  #f9f3e3;
  --black:      #0e0e0e;
  --dark:       #1a1a1a;
  --gray:       #555555;
  --gray-light: #f4f4f4;
  --white:      #ffffff;
  --border:     #e0e0e0;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 4px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.12);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---- CONTAINER ---- */
.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184,150,12,0.3);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
  padding: 10px 24px;
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn--full { width: 100%; text-align: center; }

/* ---- TYPOGRAPHY ---- */
.section__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.25;
  color: var(--black);
  margin-bottom: 20px;
}
.gold { color: var(--gold); }
.center { text-align: center; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14,14,14,0.97);
  border-bottom: 1px solid rgba(184,150,12,0.25);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.4); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.2;
}
.nav__logo span { color: var(--gold); }
.nav__logo-img {
  height: 110px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--gold); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--white);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  background-color: var(--black);
  background-image:
    radial-gradient(circle, rgba(184,150,12,0.15) 0%, transparent 60%),
    linear-gradient(rgba(184,150,12,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,12,0.07) 1px, transparent 1px);
  background-size: 100% 100%, 48px 48px, 48px 48px;
  background-position: top right, 0 0, 0 0;
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.6) 0%, transparent 60%);
  pointer-events: none;
}
.hero__inner { max-width: 760px; }
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero__sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

/* =============================================
   CLIENTS
   ============================================= */
.clients {
  background: var(--gray-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}
.clients__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.clients__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}
.clients__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
}
.clients__logos img {
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s, opacity 0.3s;
}
.clients__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__text p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.about__text .btn { margin-top: 12px; }
.about__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.about__card {
  background: var(--gray-light);
  border-radius: 8px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.about__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.about__card--gold {
  background: var(--black);
  border-color: var(--gold);
  grid-column: 1 / -1;
}
.about__card--gold .about__stat,
.about__card--gold .about__label { color: var(--white); }
.about__card--gold .about__stat { color: var(--gold); }
.about__stat {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about__label-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-top: 8px;
}
.about__label {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--gray);
  margin-top: 6px;
  text-align: center;
  line-height: 1.5;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 100px 0;
  background: var(--gray-light);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.services__intro {
  max-width: 600px;
  margin: 0 auto 60px;
  color: var(--gray);
  font-size: 1.05rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card--featured {
  background: var(--black);
  border-color: var(--gold);
  color: var(--white);
}
.service-card--featured h3 { color: var(--gold); }
.service-card--featured p,
.service-card--featured li { color: rgba(255,255,255,0.85); }
.service-card--featured li::before { background: var(--gold); }
.service-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}
.service-card__icon {
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 14px;
}
.service-card--featured h3 { color: var(--gold) !important; }
.service-card p {
  color: var(--gray);
  font-size: 0.97rem;
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-card ul { display: flex; flex-direction: column; gap: 10px; }
.service-card li {
  font-size: 0.9rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* =============================================
   VENTURES / TRAINING RESOURCES
   ============================================= */
.ventures {
  padding: 100px 0;
  background: var(--black);
}
.ventures .section__title { color: var(--white); }
.ventures__intro {
  max-width: 600px;
  margin: 0 auto 60px;
  color: rgba(255,255,255,0.6);
  font-size: 1.05rem;
}
.ventures__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.venture-card {
  background: #1a1a1a;
  border: 1px solid rgba(184,150,12,0.2);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none;
}
.venture-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(184,150,12,0.15);
}
.venture-card__img {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  min-height: 200px;
}
.venture-card__img--dark { background: #111; }
.venture-card__img img {
  max-height: 160px;
  width: 100%;
  object-fit: contain;
}
.venture-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.venture-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1.3;
}
.venture-card__body p {
  color: rgba(255,255,255,0.65);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
}
.venture-card__link {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
  transition: letter-spacing 0.2s;
}
.venture-card:hover .venture-card__link { letter-spacing: 0.08em; }

@media (max-width: 900px) {
  .ventures__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* =============================================
   WHY US
   ============================================= */
.why {
  padding: 100px 0;
  background: var(--white);
}
.why__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why__points { display: flex; flex-direction: column; gap: 28px; margin-top: 32px; }
.why__point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.why__dot {
  width: 12px; height: 12px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.why__point strong {
  display: block;
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 4px;
}
.why__point p { color: var(--gray); font-size: 0.95rem; margin: 0; }
.why__quote {
  background: var(--black);
  border-radius: 8px;
  padding: 56px 48px;
  border-left: 4px solid var(--gold);
}
.why__quote blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
  margin-bottom: 24px;
}
.why__quote cite {
  font-size: 0.85rem;
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* =============================================
   CONTACT
   ============================================= */
.contact {
  padding: 100px 0;
  background: var(--gray-light);
  border-top: 1px solid var(--border);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__text p {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.contact__details {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact__details p { margin: 0; font-size: 0.95rem; }
.contact__details a { color: var(--gold); }
.contact__details a:hover { text-decoration: underline; }

/* FORM */
.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 44px 40px;
  box-shadow: var(--shadow);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form__group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form__group input,
.form__group textarea {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  color: var(--dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,150,12,0.12);
}
.form__group textarea { resize: vertical; }
.form__note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  padding: 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer__logo {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--white);
  font-weight: 700;
}
.footer__logo-img {
  height: 90px;
  width: auto;
  display: block;
}
.footer__nav {
  display: flex;
  gap: 32px;
}
.footer__nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--gold); }
.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  width: 100%;
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .about__inner,
  .why__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .services__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  .about__visual { grid-template-columns: 1fr 1fr; }
  .why__quote { padding: 40px 32px; }
}

@media (max-width: 640px) {
  .nav__links { display: none; flex-direction: column; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 120px; left: 0; right: 0;
    background: var(--black);
    padding: 24px 32px 32px;
    border-bottom: 1px solid rgba(184,150,12,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    gap: 24px;
  }
  .nav__toggle { display: block; }
  .hero { padding: 120px 0 80px; }
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .form__row { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; }
  .about__visual { grid-template-columns: 1fr; }
  .about__card--gold { grid-column: auto; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .ventures__grid { grid-template-columns: 1fr; max-width: 100%; }
  .clients__logos { gap: 32px; }
  .clients__logos img { height: 48px; }
  .why__quote blockquote { font-size: 1.2rem; }
  .hero { padding: 140px 0 80px; }
}
