/* ============================================
   Gino Alborino – Executive Website
   High-Contrast, No-Gradient Design
   ============================================ */

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: hsl(220, 60%, 15%);
  --navy-light: hsl(220, 40%, 22%);
  --teal: hsl(180, 50%, 30%);
  --gold: hsl(40, 85%, 50%);
  --gold-light: hsl(40, 85%, 55%);
  --white: #ffffff;
  --off-white: hsl(220, 14%, 96%);
  --text: hsl(220, 20%, 10%);
  --text-muted: hsl(220, 10%, 45%);
  --border: hsl(220, 13%, 88%);
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Plus Jakarta Sans', 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

::selection { background: hsla(40, 85%, 50%, 0.25); }

/* === Utilities === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; color: var(--text-muted); line-height: 1.75; margin-top: 1rem; }
.text-lg strong { color: var(--text); }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.gold { color: var(--gold-light); }

/* === Buttons === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem; font-size: 0.9rem; font-weight: 700;
  font-family: var(--font-body);
  border: 2px solid transparent; cursor: pointer;
  transition: all 0.25s ease; text-decoration: none;
}
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-light); border-color: var(--navy-light); }
.btn--gold { background: var(--gold); color: var(--text); border-color: var(--gold); }
.btn--gold:hover { background: hsl(40, 85%, 45%); border-color: hsl(40, 85%, 45%); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--outline-gold { background: transparent; color: var(--gold-light); border-color: var(--gold-light); }
.btn--outline-gold:hover { background: var(--gold); color: var(--text); border-color: var(--gold); }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.825rem; }
.btn--full { width: 100%; justify-content: center; }

/* === Navigation === */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: transparent; border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.nav.scrolled { background: rgba(255,255,255,0.97); border-bottom-color: var(--border); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.nav__logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.2rem;
  color: var(--white); transition: color 0.3s;
}
.nav.scrolled .nav__logo { color: var(--text); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a {
  font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7);
  transition: color 0.25s;
}
.nav__links a:hover { color: var(--white); }
.nav.scrolled .nav__links a { color: var(--text-muted); }
.nav.scrolled .nav__links a:hover { color: var(--text); }
.nav__cta {
  padding: 0.5rem 1.25rem !important; background: var(--navy) !important;
  color: var(--white) !important; font-weight: 600 !important;
}
.nav.scrolled .nav__cta { background: var(--navy) !important; color: var(--white) !important; }
.nav__toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav__toggle span { display: block; width: 22px; height: 2px; background: var(--white); margin: 5px 0; transition: all 0.3s; }
.nav.scrolled .nav__toggle span { background: var(--text); }

/* === Hero === */
.hero {
  position: relative; min-height: 90vh;
  display: flex; align-items: center;
  background: var(--navy); color: var(--white); overflow: hidden;
}
.hero__accent-1 { position: absolute; top: 0; right: 0; width: 33%; height: 100%; background: var(--teal); opacity: 0.07; }
.hero__accent-2 { position: absolute; bottom: 0; left: 0; width: 16rem; height: 16rem; background: var(--gold); opacity: 0.06; border-radius: 50%; transform: translate(-50%, 50%); }
.hero__inner {
  position: relative; max-width: 1200px; margin: 0 auto; padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; align-items: center;
}
.hero__content { }
.hero__tag {
  display: inline-block; padding: 0.375rem 1rem;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.05; margin-top: 1.5rem; letter-spacing: -0.02em;
}
.hero__subtitle {
  font-size: 1.125rem; color: rgba(255,255,255,0.7);
  max-width: 560px; line-height: 1.7; margin-top: 1.5rem;
}
.hero__buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.hero__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__pillar-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--gold-light);
}
.hero__pillar-text { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 0.25rem; }
.hero__photo-wrap { position: relative; display: flex; align-items: center; justify-content: center; }
.hero__photo {
  width: 320px; height: 320px; border-radius: 0.5rem; overflow: hidden;
  border: 4px solid rgba(255,255,255,0.1); box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero__photo-accent {
  position: absolute; bottom: -12px; right: -12px;
  width: 80px; height: 80px; background: var(--gold);
}

/* === Sections === */
.section { padding: 6rem 0; }
.section--white { background: var(--white); }
.section--gray { background: var(--off-white); }
.section--dark { background: var(--navy); color: var(--white); }
.section__label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--teal);
}
.section__label--gold { color: var(--gold-light); }
.section__title {
  font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800; letter-spacing: -0.02em; margin-top: 0.5rem; color: var(--text);
}
.section__title--white { color: var(--white); }
.section__desc { font-size: 1.1rem; color: var(--text-muted); max-width: 640px; margin: 1rem auto 0; }
.accent-bar { width: 64px; height: 4px; background: var(--gold); margin-top: 1rem; }
.accent-bar--center { margin-left: auto; margin-right: auto; }

/* === Grid Layouts === */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }

/* === Cards === */
.card {
  background: var(--white); padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -2px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: 0 20px 40px -8px rgba(0,0,0,0.1); transform: translateY(-2px); }
.card__icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.card__icon--navy { background: var(--navy); }
.card__icon--teal { background: var(--teal); }
.card__title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.card__desc { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

/* === Credentials === */
.subsection-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }
.credential-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.6rem 0; border-bottom: 1px solid var(--border); color: var(--text-muted); font-size: 0.95rem;
}
.credential-list li:last-child { border-bottom: none; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 0.5rem; }
.dot--gold { background: var(--gold); }
.lang-tags { display: flex; gap: 0.75rem; }
.lang-tag {
  padding: 0.4rem 1.25rem; background: var(--navy);
  color: var(--white); font-size: 0.85rem; font-weight: 600;
}

/* === Featured Award === */
.featured-award {
  display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; box-shadow: 0 20px 40px -8px rgba(0,0,0,0.1); margin-top: 3rem;
}
.featured-award__image { position: relative; background: var(--off-white); min-height: 300px; }
.featured-award__image img { width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0; left: 0; }
.featured-award__content {
  background: var(--navy); color: var(--white);
  padding: 2.5rem 3rem; display: flex; flex-direction: column; justify-content: center;
}
.featured-award__icon { margin-bottom: 1rem; }
.featured-award__title { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; }
.featured-award__org { font-size: 0.85rem; color: rgba(255,255,255,0.5); font-weight: 600; margin-top: 0.5rem; }
.featured-award__desc { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-top: 1rem; }
.featured-award__content .btn { margin-top: 1.5rem; }

/* === Award Cards === */
.award-card {
  background: var(--white); padding: 1.75rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06); transition: box-shadow 0.3s;
}
.award-card:hover { box-shadow: 0 20px 40px -8px rgba(0,0,0,0.1); }
.award-card__title { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; }
.award-card__org { font-size: 0.825rem; color: var(--teal); font-weight: 600; margin-top: 0.25rem; }
.award-card__desc { font-size: 0.875rem; color: var(--text-muted); margin-top: 0.75rem; line-height: 1.6; }
.award-card .btn { margin-top: 1rem; }

/* === Timeline === */
.timeline { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.timeline__item {
  display: grid; grid-template-columns: 1fr 3fr;
  background: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06); overflow: hidden;
  transition: box-shadow 0.3s;
}
.timeline__item:hover { box-shadow: 0 20px 40px -8px rgba(0,0,0,0.1); }
.timeline__period {
  background: var(--navy); color: var(--white);
  padding: 1.5rem 2rem; display: flex; flex-direction: column; justify-content: center;
}
.timeline__year { font-size: 1.35rem; font-weight: 800; }
.timeline__org { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.timeline__details { padding: 1.5rem 2rem; }
.timeline__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 1rem; }
.timeline__list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.5rem; line-height: 1.6;
}
.timeline__list li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0; margin-top: 0.5rem;
}

/* === Testimonials === */
.testimonial {
  border: 1px solid rgba(255,255,255,0.1); padding: 2rem;
  transition: border-color 0.3s;
}
.testimonial:hover { border-color: rgba(255,255,255,0.2); }
.testimonial__quote {
  font-size: 1.1rem; font-style: italic; color: rgba(255,255,255,0.9);
  line-height: 1.75;
}
.testimonial__source {
  font-size: 0.85rem; font-weight: 600; color: var(--gold-light);
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.1);
}

/* === CTA === */
.cta-buttons { display: flex; gap: 1rem; justify-content: center; margin-top: 2rem; flex-wrap: wrap; }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.contact-link {
  display: flex; gap: 1rem; padding: 1rem;
  background: var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.25s;
}
.contact-link:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.contact-link__icon {
  width: 48px; height: 48px; background: var(--navy);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-link__label { font-size: 0.825rem; color: var(--text-muted); }
.contact-link__value { font-weight: 600; color: var(--text); margin-top: 0.125rem; }
.contact-link:hover .contact-link__value { color: var(--teal); }
.contact-form-wrap { }
.contact-form {
  background: var(--white); padding: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.06);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--text); margin-bottom: 0.5rem;
}
.form-group input, .form-group textarea {
  width: 100%; padding: 0.65rem 1rem;
  border: 1px solid var(--border); background: var(--white);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px hsla(220, 60%, 15%, 0.1);
}
.form-group textarea { resize: vertical; }
.form-status {
  margin-top: 1rem; padding: 0.75rem; font-size: 0.875rem; display: none;
}
.form-status--success { display: block; background: hsl(140, 50%, 94%); color: hsl(140, 50%, 30%); }
.form-status--error { display: block; background: hsl(0, 70%, 95%); color: hsl(0, 70%, 40%); }

/* === Footer === */
.footer { background: var(--navy); color: var(--white); padding: 3rem 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
.footer__logo { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; }
.footer__tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-top: 0.5rem; }
.footer__heading { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.75rem; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer__links a:hover { color: var(--gold-light); }
.footer__social { display: flex; gap: 1rem; }
.footer__social a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.footer__social a:hover { color: var(--gold-light); }
.footer__divider { height: 1px; background: rgba(255,255,255,0.1); margin: 2rem 0; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.35);
}

/* === Animations === */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* === Responsive === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__photo-wrap { display: none; }
  .hero__photo { width: 260px; height: 260px; }
  .grid-2 { grid-template-columns: 1fr; gap: 2.5rem; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .featured-award { grid-template-columns: 1fr; }
  .featured-award__image { min-height: 240px; }
  .timeline__item { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  .nav__links { 
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); flex-direction: column; padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  .nav__links.active { display: flex; }
  .nav__links a { color: var(--text-muted) !important; padding: 0.5rem 0; }
  .nav__links a:hover { color: var(--text) !important; }
  .nav__toggle { display: block; }
  .hero__pillars { grid-template-columns: 1fr; gap: 1rem; }
  .hero__buttons { flex-direction: column; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .section { padding: 4rem 0; }
  .featured-award__content { padding: 2rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
}
