/* ================================
   ANDRUT STUDIO — Modern Design
   ================================ */

:root {
  --bg-dark:    #0C0C0E;
  --bg-dark-2:  #141416;
  --bg-light:   #F5F4F1;
  --bg-white:   #FFFFFF;
  --accent:     #FF5C28;
  --accent-h:   #FF7A4A;
  --text:       #0C0C0E;
  --text-muted: #6B6869;
  --border:     #E8E5DE;
  --shadow:     0 4px 24px rgba(0,0,0,.08);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.15);
  --radius:     12px;
  --ease:       all .3s cubic-bezier(.4,0,.2,1);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

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

/* ── Typography ── */

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.label.light { color: rgba(255,92,40,.85); }

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  color: var(--text);
  margin-bottom: 16px;
}

.accent-line {
  width: 48px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 28px;
}
.accent-line.centered { margin: 16px auto 48px; }

/* ── Buttons ── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 2px solid var(--accent);
  transition: var(--ease);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--accent-h);
  border-color: var(--accent-h);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,92,40,.35);
}
.btn-primary.large { padding: 18px 44px; font-size: 16px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 2px solid rgba(255,255,255,.4);
  transition: var(--ease);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.8);
}

/* ================================
   NAVBAR
   ================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 24px 0;
  transition: var(--ease);
}
.navbar.scrolled {
  background: rgba(12,12,14,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,.07);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
}
.nav-brand span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  padding: 8px 16px;
  border-radius: 6px;
  transition: var(--ease);
}
.nav-link:hover,
.nav-link.active  { color: #fff; background: rgba(255,255,255,.08); }

.nav-link.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
}
.nav-link.nav-cta:hover { background: var(--accent-h); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 10001;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: var(--ease);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ================================
   HERO
   ================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url(../img/1st-section.jpg);
  background-size: cover;
  background-position: center;
  opacity: .28;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(150deg, rgba(12,12,14,.92) 0%, rgba(12,12,14,.45) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 820px;
}

.hero-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,92,40,.1);
  border: 1px solid rgba(255,92,40,.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(52px, 8.5vw, 100px);
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.0;
  margin-bottom: 28px;
}
.hero-title em { color: var(--accent); font-style: normal; }

.hero-desc {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,.6);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 44px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.hero-scroll span {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}
.scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%,100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%      { opacity: 1; transform: scaleY(1); }
}

/* ================================
   STATS
   ================================ */

.stats-section {
  background: var(--bg-dark-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 56px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  text-align: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.05em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-number span { color: var(--accent); }

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  letter-spacing: .02em;
}

/* ================================
   SERVICES
   ================================ */

.services-section { padding: 120px 0; background: var(--bg-light); }

.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.left-intro p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.85;
}

.service-list {
  list-style: none;
  margin-bottom: 36px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.list-dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.right-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card {
  background: var(--bg-white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.card-icon {
  width: 46px; height: 46px;
  background: rgba(255,92,40,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 18px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.card-line {
  width: 32px; height: 2px;
  background: var(--accent);
  margin-bottom: 12px;
  border-radius: 2px;
}
.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ================================
   PORTFOLIO
   ================================ */

.portfolio-section { padding: 120px 0; background: var(--bg-dark); }
.portfolio-section .section-title { color: #fff; }
.section-header-center { text-align: center; margin-bottom: 8px; }

.portfolio-carousel { padding: 0 24px; max-width: 1200px; margin: 0 auto; }

.portfolio-item {
  background: var(--bg-dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.06);
  transition: var(--ease);
  margin: 8px;
}
.portfolio-item:hover {
  border-color: rgba(255,92,40,.4);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,.4);
}

.portfolio-thumb {
  overflow: hidden;
  aspect-ratio: 4/3;
}
.portfolio-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-item:hover .portfolio-thumb img { transform: scale(1.06); }

.portfolio-info {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portfolio-info h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
}
.portfolio-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
}

/* Owl overrides */
.owl-controls { margin-top: 40px; text-align: center; }
.owl-page span {
  display: inline-block;
  width: 8px; height: 8px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  margin: 0 4px;
  transition: var(--ease);
}
.owl-page.active span {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ================================
   PROFILE / CREDENTIALS
   ================================ */

.profile-section {
  padding: 120px 0;
  background: var(--bg-dark);
}

.profile-section .section-title { color: #fff; }
.profile-section .accent-line   { background: var(--accent); }

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

.profile-bio {
  font-size: 15px;
  color: rgba(255,255,255,.55);
  line-height: 1.85;
  margin-bottom: 20px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: .01em;
  transition: var(--ease);
}
.tag:hover {
  background: rgba(255,92,40,.15);
  border-color: rgba(255,92,40,.35);
  color: #fff;
}

/* Credentials card */
.credentials-card {
  background: var(--bg-dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 36px;
}

.credential-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.credential-header i {
  font-size: 20px;
  color: var(--accent);
}
.credential-header h3 {
  font-size: 16px;
  color: #fff;
  letter-spacing: -.01em;
}

.credential-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.cred-icon {
  width: 36px; height: 36px;
  background: rgba(255,92,40,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cred-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
}
.cred-label {
  font-size: 12px;
  color: rgba(255,255,255,.4);
  margin-top: 2px;
  line-height: 1.4;
}

.rating-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 24px;
}
.rating-stars { color: #F5A623; font-size: 14px; letter-spacing: 1px; }
.rating-text {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.rating-text strong { color: #fff; }

.review-quote {
  position: relative;
  padding: 20px 20px 20px 24px;
  border-left: 3px solid var(--accent);
  margin-bottom: 28px;
  background: rgba(255,92,40,.04);
  border-radius: 0 8px 8px 0;
}
.quote-icon {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 8px;
  display: block;
  opacity: .7;
}
.review-quote p {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 10px;
}
.reviewer {
  font-size: 12px;
  color: rgba(255,255,255,.35);
  font-style: normal;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.65);
  padding: 12px 22px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 500;
  transition: var(--ease);
  width: 100%;
  justify-content: center;
}
.btn-outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(255,92,40,.06);
}

/* ================================
   OUR STORY — Timeline
   ================================ */

.story-section { padding: 120px 0; background: var(--bg-white); }

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}

.timeline-item { position: relative; }

.timeline-badge {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,92,40,.08);
  border: 1px solid rgba(255,92,40,.2);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.timeline-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--ease);
}
.timeline-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}
.timeline-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.timeline-text { padding: 24px; }
.timeline-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}
.timeline-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ================================
   CONTACT CTA
   ================================ */

.contact-section {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--bg-dark);
  overflow: hidden;
}
.contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url(../img/1st-section.jpg);
  background-size: cover;
  background-position: center;
  opacity: .08;
}
/* Gradient overlay */
.contact-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,92,40,.12) 0%, transparent 70%);
}

.contact-section .container {
  position: relative;
  z-index: 1;
  padding-top: 110px;
  padding-bottom: 110px;
}
.contact-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.contact-content h2 {
  font-size: clamp(40px, 6vw, 64px);
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -.03em;
}
.contact-content p {
  color: rgba(255,255,255,.55);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 40px;
}

/* ================================
   FOOTER
   ================================ */

.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 80px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 64px;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .06em;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--accent); }

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.75;
  max-width: 260px;
}

.footer-nav h4, .footer-contact h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 20px;
}
.footer-nav ul { list-style: none; }
.footer-nav ul li { margin-bottom: 12px; }
.footer-nav ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: var(--ease);
}
.footer-nav ul li a:hover { color: #fff; }

.footer-contact a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  margin-bottom: 24px;
  transition: var(--ease);
}
.footer-contact a:hover { color: var(--accent); }

.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: var(--ease);
}
.social-links a:hover { background: var(--accent); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}
.back-top {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  display: flex; align-items: center; gap: 6px;
  transition: var(--ease);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
}
.back-top:hover { color: var(--accent); }

/* ================================
   LIGHTBOX (plugin compat)
   ================================ */

body::after {
  content: url(../img/close.png) url(../img/loading.gif) url(../img/prev.png) url(../img/next.png);
  display: none;
}
body.lb-disable-scrolling { overflow: hidden; }

.lightboxOverlay {
  position: fixed; inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,.9);
  display: none;
}
.lightbox {
  position: fixed; inset: 0;
  z-index: 100000;
  text-align: center;
  line-height: 0;
  font-weight: normal;
}
.lightbox .lb-image {
  display: block; height: auto;
  max-width: inherit;
  border-radius: 4px;
  border: 4px solid white;
}
.lightbox a img { border: none; }
.lb-outerContainer {
  position: relative;
  width: 250px; height: 250px;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
  zoom: 1;
}
.lb-outerContainer::after { content: ""; display: table; clear: both; }
.lb-loader {
  position: absolute; top: 43%; left: 0;
  height: 25%; width: 100%;
  text-align: center; line-height: 0;
}
.lb-cancel {
  display: block; width: 32px; height: 32px;
  margin: 0 auto;
  background: url(../img/loading.gif) no-repeat;
}
.lb-nav { position: absolute; top: 0; left: 0; height: 100%; width: 100%; z-index: 10; }
.lb-container > .nav { left: 0; }
.lb-nav a {
  outline: none;
  background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
}
.lb-prev, .lb-next { height: 100%; cursor: pointer; display: block; }
.lb-nav a.lb-prev {
  width: 34%; left: 0; float: left;
  background: url(../img/prev.png) left 48% no-repeat;
  opacity: 0; transition: opacity .4s;
}
.lb-nav a.lb-prev:hover  { opacity: 1; }
.lb-nav a.lb-next {
  width: 64%; right: 0; float: right;
  background: url(../img/next.png) right 48% no-repeat;
  opacity: 0; transition: opacity .4s;
}
.lb-nav a.lb-next:hover  { opacity: 1; }
.lb-dataContainer {
  margin: 0 auto; padding-top: 5px;
  width: 100%; zoom: 1;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.lb-dataContainer::after { content: ""; display: table; clear: both; }
.lb-data { padding: 0 4px; color: #ccc; }
.lb-data .lb-details { width: 85%; float: left; text-align: left; line-height: 1.1em; }
.lb-data .lb-caption { font-size: 13px; font-weight: bold; line-height: 1em; }
.lb-data .lb-caption a { color: #4ae; }
.lb-data .lb-number { display: block; clear: left; padding-bottom: 1em; font-size: 12px; color: #999; }
.lb-data .lb-close {
  display: block; float: right;
  width: 30px; height: 30px;
  background: url(../img/close.png) top right no-repeat;
  opacity: .7; transition: opacity .2s;
}
.lb-data .lb-close:hover { opacity: 1; cursor: pointer; }

/* ================================
   RESPONSIVE
   ================================ */

@media (max-width: 1024px) {
  .section-intro  { grid-template-columns: 1fr; gap: 48px; }
  .profile-grid   { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand   { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  /* Mobile nav drawer */
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 280px;
    background: var(--bg-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right .35s ease;
    border-left: 1px solid rgba(255,255,255,.07);
    z-index: 10000;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; }

  .services-section,
  .portfolio-section,
  .profile-section,
  .story-section { padding: 80px 0; }

  .stats-grid          { grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,.06); }
  .stat-item           { background: var(--bg-dark-2); border-right: none; padding: 28px 16px; }
  .stat-number         { font-size: 40px; }

  .right-cards         { grid-template-columns: 1fr; }
  .timeline            { grid-template-columns: 1fr; }
  .credential-stats    { grid-template-columns: 1fr; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title   { font-size: 38px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary,
  .btn-ghost    { justify-content: center; }
  .right-cards  { grid-template-columns: 1fr; }
  .stats-grid   { grid-template-columns: 1fr 1fr; }
  .stat-number  { font-size: 34px; }
}
