/* ===================================================================
   RAYMOND ARIWOOLA — Corporate & Polished
   Tone: Clean executive presence, refined & authoritative
   =================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

/* ===========================
   THEME VARIABLES
   =========================== */
[data-theme="navy"] {
  --bg-primary: #0b1628;
  --bg-secondary: #0f1d33;
  --bg-card: rgba(15, 29, 51, 0.65);
  --bg-card-hover: rgba(15, 29, 51, 0.92);
  --text-primary: #e8ecf2;
  --text-secondary: #8b99b0;
  --text-muted: #5a6a82;
  --accent-1: #c9a84c;
  --accent-2: #e8d48b;
  --accent-gradient: linear-gradient(135deg, #c9a84c, #e8d48b);
  --hero-glow-1: rgba(201, 168, 76, 0.06);
  --hero-glow-2: rgba(201, 168, 76, 0.04);
  --border-color: rgba(201, 168, 76, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.2);
  --nav-bg: rgba(11, 22, 40, 0.9);
  --divider: rgba(201, 168, 76, 0.15);
  --badge-bg: rgba(201, 168, 76, 0.08);
  --badge-text: #c9a84c;
}

[data-theme="dark"] {
  --bg-primary: #111111;
  --bg-secondary: #1a1a1a;
  --bg-card: rgba(26, 26, 26, 0.7);
  --bg-card-hover: rgba(26, 26, 26, 0.95);
  --text-primary: #f0f0f0;
  --text-secondary: #999;
  --text-muted: #666;
  --accent-1: #b8977e;
  --accent-2: #d4b896;
  --accent-gradient: linear-gradient(135deg, #b8977e, #d4b896);
  --hero-glow-1: rgba(184, 151, 126, 0.06);
  --hero-glow-2: rgba(184, 151, 126, 0.04);
  --border-color: rgba(255, 255, 255, 0.06);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(17, 17, 17, 0.92);
  --divider: rgba(255, 255, 255, 0.06);
  --badge-bg: rgba(184, 151, 126, 0.1);
  --badge-text: #d4b896;
}

[data-theme="light"] {
  --bg-primary: #faf9f7;
  --bg-secondary: #f0eeeb;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-hover: rgba(255, 255, 255, 1);
  --text-primary: #1a1a1a;
  --text-secondary: #5a5a5a;
  --text-muted: #999;
  --accent-1: #1a3a5c;
  --accent-2: #2c5f8a;
  --accent-gradient: linear-gradient(135deg, #1a3a5c, #2c5f8a);
  --hero-glow-1: rgba(26, 58, 92, 0.04);
  --hero-glow-2: rgba(26, 58, 92, 0.02);
  --border-color: rgba(0, 0, 0, 0.06);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.04);
  --nav-bg: rgba(250, 249, 247, 0.92);
  --divider: rgba(0, 0, 0, 0.06);
  --badge-bg: rgba(26, 58, 92, 0.06);
  --badge-text: #1a3a5c;
}

[data-theme="vibrant"] {
  --bg-primary: #0d0d1a;
  --bg-secondary: #13132b;
  --bg-card: rgba(19, 19, 43, 0.7);
  --bg-card-hover: rgba(19, 19, 43, 0.95);
  --text-primary: #ececff;
  --text-secondary: #9898c8;
  --text-muted: #6a6a99;
  --accent-1: #7c6aef;
  --accent-2: #a78bfa;
  --accent-gradient: linear-gradient(135deg, #7c6aef, #a78bfa);
  --hero-glow-1: rgba(124, 106, 239, 0.08);
  --hero-glow-2: rgba(167, 139, 250, 0.05);
  --border-color: rgba(124, 106, 239, 0.1);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.3);
  --nav-bg: rgba(13, 13, 26, 0.92);
  --divider: rgba(124, 106, 239, 0.12);
  --badge-bg: rgba(124, 106, 239, 0.1);
  --badge-text: #a78bfa;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

::selection {
  background: var(--accent-1);
  color: #fff;
}

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.25;
}

.section__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-1);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent-1);
}

.section__title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section__subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.8;
}

.accent-text { color: var(--accent-1); }

/* ===========================
   LAYOUT
   =========================== */
.section {
  padding: 100px 0;
  position: relative;
}

.section--alt {
  background: var(--bg-secondary);
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.divider {
  width: 60px;
  height: 1px;
  background: var(--accent-gradient);
  margin: 24px 0;
}

.divider--center {
  margin: 24px auto;
}

/* ===========================
   ANIMATIONS
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal--left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal--right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

.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; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: all 0.4s ease;
}

.nav--scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

.nav__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-1);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color 0.3s ease;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--accent-1);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Theme Toggle */
.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  border-color: var(--accent-1);
}

.theme-toggle__icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-gradient);
}

.theme-palette {
  position: fixed;
  top: 68px;
  right: 32px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 8px;
  z-index: 1001;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: all 0.3s ease;
}

.theme-palette.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.theme-swatch {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.theme-swatch:hover { transform: scale(1.1); }
.theme-swatch.active { border-color: var(--text-primary); }

.theme-swatch--navy { background: linear-gradient(135deg, #c9a84c, #0b1628); }
.theme-swatch--dark { background: linear-gradient(135deg, #b8977e, #111); }
.theme-swatch--light { background: linear-gradient(135deg, #1a3a5c, #faf9f7); }
.theme-swatch--vibrant { background: linear-gradient(135deg, #7c6aef, #0d0d1a); }

/* Mobile */
.nav__menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}

.nav__menu-btn span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav__menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__menu-btn.active span:nth-child(2) { opacity: 0; }
.nav__menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  will-change: transform;
}

.hero__glow--1 {
  width: 700px;
  height: 700px;
  background: var(--hero-glow-1);
  top: -20%;
  right: -15%;
  animation: floatSlow 30s ease-in-out infinite;
}

.hero__glow--2 {
  width: 500px;
  height: 500px;
  background: var(--hero-glow-2);
  bottom: -10%;
  left: -10%;
  animation: floatSlow 30s ease-in-out infinite;
  animation-delay: -12s;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 30px); }
}

/* Geometric line decoration */
.hero__line {
  position: absolute;
  background: var(--divider);
}

.hero__line--1 {
  width: 1px;
  height: 200px;
  top: 0;
  left: 20%;
}

.hero__line--2 {
  width: 1px;
  height: 150px;
  bottom: 0;
  right: 30%;
}

.hero__line--3 {
  width: 200px;
  height: 1px;
  bottom: 25%;
  right: 0;
}

.hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--accent-1);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero__eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--accent-1);
}

.hero__name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

.hero__name em {
  font-style: italic;
  color: var(--accent-1);
}

.hero__description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 32px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-muted);
}

.hero__scroll-hint::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn--primary {
  background: var(--accent-1);
  color: var(--bg-primary);
}

.btn--primary:hover {
  filter: brightness(1.15);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn--outline:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}

/* ===========================
   ABOUT
   =========================== */
.about__grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.about__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  overflow: hidden;
  position: relative;
}

.about__image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.about__image-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.3;
}

.about__text .section__subtitle {
  margin-bottom: 32px;
}

.about__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.metric {
  background: var(--bg-primary);
  padding: 24px;
  transition: background 0.3s ease;
}

.section--alt .metric {
  background: var(--bg-secondary);
}

.metric:hover {
  background: var(--bg-card-hover);
}

.metric__number {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--accent-1);
  line-height: 1;
  margin-bottom: 6px;
}

.metric__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about__languages {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.about__languages-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-1);
}

.about__lang {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 16px;
  border-left: 1px solid var(--divider);
}

.about__lang small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===========================
   EXPERIENCE
   =========================== */
.experience__header {
  margin-bottom: 64px;
}

.experience__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.exp-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid var(--divider);
  transition: all 0.3s ease;
}

.exp-item:first-child {
  border-top: 1px solid var(--divider);
}

.exp-item:hover {
  padding-left: 8px;
}

.exp-item__meta {
  padding-top: 4px;
}

.exp-item__date {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-1);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.exp-item__company {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.exp-item__concurrent {
  display: inline-block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--badge-text);
  background: var(--badge-bg);
  padding: 2px 8px;
  margin-top: 6px;
}

.exp-item__role {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.exp-item__summary {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.exp-item__highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exp-item__highlight {
  display: flex;
  gap: 12px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.exp-item__highlight::before {
  content: '—';
  flex-shrink: 0;
  color: var(--accent-1);
  font-weight: 600;
}

/* ===========================
   SKILLS
   =========================== */
.skills__header {
  margin-bottom: 64px;
}

.skills__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--border-color);
}

.skills__cell {
  background: var(--bg-secondary);
  padding: 36px;
  transition: background 0.3s ease;
}

.skills__cell:hover {
  background: var(--bg-card-hover);
}

.skills__cell-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--accent-1);
  margin-bottom: 12px;
  opacity: 0.4;
}

.skills__cell-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.skills__cell-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skills__tag {
  font-size: 0.78rem;
  padding: 5px 14px;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.skills__tag:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}

.skills__tag--featured {
  border-color: var(--accent-1);
  color: var(--accent-1);
  font-weight: 600;
}

/* ===========================
   EDUCATION
   =========================== */
.education__header {
  margin-bottom: 64px;
}

.education__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.edu-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  padding: 32px 0;
  border-bottom: 1px solid var(--divider);
  align-items: center;
}

.edu-item:first-child {
  border-top: 1px solid var(--divider);
}

.edu-item__status {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-1);
}

.edu-item__degree {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.edu-item__school {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

.education__extras {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.education__extra-block {
  padding: 28px 0 0;
  border-top: 1px solid var(--divider);
}

.education__extra-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.education__extra-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.education__extra-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding-left: 16px;
  border-left: 2px solid var(--divider);
  line-height: 1.6;
}

.education__extra-item--award {
  border-left-color: var(--accent-1);
  color: var(--accent-1);
  font-weight: 600;
}

/* ===========================
   PORTFOLIO
   =========================== */
.portfolio__header {
  margin-bottom: 64px;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio__card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
}

.portfolio__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width 0.4s ease;
}

.portfolio__card:hover::before {
  width: 100%;
}

.portfolio__card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.portfolio__card-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--accent-1);
  opacity: 0.3;
  margin-bottom: 16px;
}

.portfolio__card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.portfolio__card-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.portfolio__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portfolio__card-tag {
  font-size: 0.72rem;
  padding: 3px 10px;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===========================
   TESTIMONIALS
   =========================== */
.testimonials__header {
  margin-bottom: 64px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 36px;
  transition: all 0.3s ease;
}

.testimonial:hover {
  box-shadow: var(--shadow-card);
}

.testimonial__mark {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--accent-1);
  opacity: 0.4;
  margin-bottom: 16px;
}

.testimonial__text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial__author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===========================
   CONTACT
   =========================== */
.contact__header {
  margin-bottom: 64px;
}

.contact__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact__info p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact__link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--divider);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.contact__link-item:first-child {
  border-top: 1px solid var(--divider);
}

.contact__link-item:hover {
  color: var(--accent-1);
  padding-left: 8px;
}

.contact__link-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.5;
}

.contact__cta-area {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.contact__cta-area p {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  line-height: 1.3;
}

.contact__cta-area p em {
  font-style: italic;
  color: var(--accent-1);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--divider);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__text {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--accent-1);
}

/* ===========================
   BACK TO TOP
   =========================== */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-color);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--accent-1);
  color: var(--accent-1);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--bg-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--text-secondary);
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent-1);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image {
    max-width: 320px;
  }

  .exp-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .edu-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact__body {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }
  .nav__container { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__menu-btn { display: flex; }

  .hero__container { padding: 0 24px; }
  .hero__scroll-hint { display: none; }
  .hero__line { display: none; }

  .skills__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .hero__cta {
    flex-direction: column;
    width: 100%;
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }

  .about__metrics {
    grid-template-columns: 1fr;
  }
}
