/* ================================================
   AJIT MANE — Professional Homepage Stylesheet
   Font: Cormorant Garamond (display) + Manrope (body)
   Palette: Navy · Gold · Slate · Ivory
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Manrope:wght@300;400;500;600;700&display=swap');

/* ─── TOKENS ─── */
:root {
  --navy:        #0f1f3d;
  --navy-mid:    #1a3260;
  --navy-light:  #e8edf5;
  --gold:        #b8912a;
  --gold-light:  #f5edd8;
  --gold-pale:   #fdf8ee;
  --slate:       #3d5166;
  --slate-light: #eaf0f5;
  --teal:        #1a7f74;
  --teal-light:  #e3f4f2;
  --ivory:       #faf8f4;
  --white:       #ffffff;
  --text:        #111827;
  --muted:       #5a6473;
  --hint:        #9aa3ad;
  --border:      #dde3ea;
  --border-gold: #d4b96a;
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
}

/* ─── BASE ─── */
.am-page *, .am-page *::before, .am-page *::after { box-sizing: border-box; margin: 0; padding: 0; }
.am-page {
  font-family: 'Manrope', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ─── */
.am-nav {
  background: var(--navy);
  padding: 0 52px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
}
.am-nav__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.am-nav__logo span { color: var(--gold); }
.am-nav__links { display: flex; gap: 38px; list-style: none; }
.am-nav__links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.18s;
}
.am-nav__links a:hover { color: rgba(255,255,255,0.95); }
.am-nav__links a.active { color: var(--gold); }
.am-nav__cta {
  background: transparent;
  color: var(--gold);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  border: 1.5px solid var(--border-gold);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
}
.am-nav__cta:hover { background: var(--gold); color: var(--navy); }

/* ─── HERO ─── */
.am-hero {
  background: var(--navy);
  padding: 80px 52px 0;
  overflow: hidden;
}
.am-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 60px;
  align-items: flex-end;
}
.am-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.am-hero__line {
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.am-hero__eyebrow-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.am-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 6.5vw, 84px);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 28px;
}
.am-hero__title .t-gold  { color: var(--gold); }
.am-hero__title .t-italic { font-style: italic; }
.am-hero__desc {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 38px;
  font-weight: 300;
}
.am-hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }
.am-btn-gold {
  background: var(--gold);
  color: var(--navy);
  padding: 13px 30px;
  border-radius: var(--r-sm);
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.15s;
}
.am-btn-gold:hover { opacity: 0.88; transform: translateY(-1px); }
.am-btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.75);
  padding: 13px 30px;
  border-radius: var(--r-sm);
  border: 1.5px solid rgba(255,255,255,0.2);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s;
}
.am-btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ─── HERO PANEL ─── */
.am-hero__panel {
  background: var(--white);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 32px 28px 36px;
  align-self: flex-end;
}
.am-hero__panel-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.am-avatar-ring {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--navy);
  border: 2.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.am-panel-name { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.am-panel-title { font-size: 12px; color: var(--hint); }
.am-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.am-stat-box { border-radius: var(--r-md); padding: 14px 16px; }
.am-stat-box--navy  { background: var(--navy-light); }
.am-stat-box--gold  { background: var(--gold-pale);  }
.am-stat-box--slate { background: var(--slate-light);}
.am-stat-box--teal  { background: var(--teal-light); }
.am-stat-box__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.am-stat-box--navy  .am-stat-box__num { color: var(--navy-mid); }
.am-stat-box--gold  .am-stat-box__num { color: var(--gold); }
.am-stat-box--slate .am-stat-box__num { color: var(--slate); }
.am-stat-box--teal  .am-stat-box__num { color: var(--teal); }
.am-stat-box__label { font-size: 11px; color: var(--hint); font-weight: 500; }
.am-panel-tools-title {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--hint);
  font-weight: 700;
  margin-bottom: 10px;
}
.am-panel-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.am-panel-pill {
  background: var(--ivory);
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 100px;
}

/* ─── GOLD STRIP ─── */
.am-gold-strip {
  background: var(--gold);
  padding: 18px 52px;
}
.am-gold-strip__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.am-gold-strip__item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.am-gold-strip__dot {
  width: 8px;
  height: 8px;
  background: var(--navy);
  border-radius: 50%;
  opacity: 0.4;
}
.am-gold-strip__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.02em;
}

/* ─── SKILLS ─── */
.am-skills {
  padding: 80px 52px;
  max-width: 1140px;
  margin: 0 auto;
}
.am-section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.am-section-tag__bar { width: 30px; height: 2px; background: var(--gold); }
.am-section-tag__text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.am-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.1;
}
.am-section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin-bottom: 50px;
  font-weight: 300;
}
.am-skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.am-skill-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform 0.22s, box-shadow 0.22s;
  position: relative;
  overflow: hidden;
}
.am-skill-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}
.am-skill-card--navy::before  { background: var(--navy); }
.am-skill-card--gold::before  { background: var(--gold); }
.am-skill-card--teal::before  { background: var(--teal); }
.am-skill-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(15,31,61,0.1); }

.am-skill-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.08;
  color: var(--navy);
}
.am-skill-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
}
.am-skill-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
  font-weight: 400;
}
.am-skill-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.am-skill-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}
.am-skill-card--navy .am-skill-tag { background: var(--navy-light); color: var(--navy-mid); }
.am-skill-card--gold .am-skill-tag { background: var(--gold-pale);  color: #7a5e18; }
.am-skill-card--teal .am-skill-tag { background: var(--teal-light); color: #145f57; }

/* ─── ABOUT ─── */
.am-about {
  background: var(--navy);
  padding: 80px 52px;
}
.am-about__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 72px;
  align-items: center;
}
.am-about__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  color: var(--white);
}
.am-about__heading .t-gold  { color: var(--gold); }
.am-about__heading .t-teal  { color: #4ecfb5; }
.am-about__heading em { font-style: italic; }
.am-about__divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}
.am-about__body {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  font-weight: 300;
}
.am-about__body p + p { margin-top: 16px; }
.am-about__cta {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.am-about__cta-arrow {
  width: 32px;
  height: 1.5px;
  background: var(--gold);
  position: relative;
  transition: width 0.2s;
}
.am-about__cta-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
  transform: rotate(45deg);
}
.am-about__cta:hover .am-about__cta-arrow { width: 48px; }

/* ─── FOOTER ─── */
.am-footer {
  background: #07122a;
  padding: 32px 52px;
}
.am-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.am-footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
.am-footer__logo span { color: var(--gold); }
.am-footer__copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.am-footer__links { display: flex; gap: 28px; list-style: none; }
.am-footer__links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.18s;
}
.am-footer__links a:hover { color: var(--gold); }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .am-hero__inner,
  .am-about__inner { grid-template-columns: 1fr; }
  .am-hero__panel { display: none; }
  .am-skills-grid { grid-template-columns: 1fr; }
  .am-nav { padding: 0 20px; }
  .am-nav__links { display: none; }
  .am-hero  { padding: 60px 20px 0; }
  .am-skills { padding: 60px 20px; }
  .am-about  { padding: 60px 20px; }
  .am-gold-strip { padding: 16px 20px; }
  .am-footer { padding: 24px 20px; }
}