*,*::before,*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Soft Off-Whites */
  --bg-primary: #FAFAFA;
  --bg-secondary: #F5F5F5;
  --bg-tertiary: #FFFFFF;

  /* High Contrast Text */
  --text-primary: #111111;
  --text-secondary: #4A4A4A;
  --text-tertiary: #888888;

  /* Subtle Brand Accents (Deep Elegant Slate / Blue) */
  --brand-primary: #2C3E50;
  --brand-secondary: #4A6572;
  --brand-light: #E8ECEF;
  --brand-highlight: #D4AF37; /* Very subtle gold accent */

  --border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 15px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.12);
  
  --transition: cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}

/* CUSTOM CURSOR */
#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--brand-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition), background 0.3s var(--transition);
}
#cursor-ring {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(44, 62, 80, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--transition), height 0.3s var(--transition), opacity 0.3s var(--transition);
}
body.cursor-hover #cursor {
  width: 50px;
  height: 50px;
  background: rgba(44, 62, 80, 0.1);
  mix-blend-mode: multiply;
}
body.cursor-hover #cursor-ring {
  width: 60px;
  height: 60px;
  border-color: transparent;
}

/* PRELOADER */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-style: italic;
  color: var(--brand-primary);
  animation: pulse 1.5s infinite alternate;
}

/* SCROLL PROGRESS */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--brand-primary);
  z-index: 200;
  width: 0%;
  transition: width 0.1s;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5rem;
  transition: all 0.5s var(--transition);
}
nav.scrolled {
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(20px);
  padding: 1rem 5rem;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
}
.nav-logo::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--brand-primary);
  transform: translateX(-101%);
  transition: transform 0.4s var(--transition);
}
.nav-logo:hover::after {
  transform: translateX(0);
}
.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand-primary);
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  transition: all 0.3s var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--brand-primary);
}
.nav-links a:hover::after, .nav-links a.active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.nav-cta {
  background: var(--text-primary) !important;
  color: #fff !important;
  padding: 0.7rem 1.8rem;
  border-radius: 100px;
  transition: all 0.3s var(--transition) !important;
}
.nav-cta:hover {
  background: var(--brand-primary) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}
.nav-cta::after {
  display: none !important;
}

#menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: none;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 90;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  color: var(--text-primary);
  text-decoration: none;
  font-style: italic;
  transition: transform 0.3s var(--transition), color 0.3s;
}
.mobile-menu a:hover {
  color: var(--brand-secondary);
  transform: translateX(10px);
}
#close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: none;
  color: var(--text-primary);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  padding: 8rem 5rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(232,236,239,0.5) 0%, var(--bg-primary) 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  animation: fadeUp 0.8s 0.2s cubic-bezier(0.25,1,0.5,1) forwards;
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--brand-highlight);
  border-radius: 50%;
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s cubic-bezier(0.25,1,0.5,1) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--brand-secondary);
}
.typed-wrap {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  color: var(--text-secondary);
  font-weight: 300;
  margin-bottom: 1.5rem;
  min-height: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s cubic-bezier(0.25,1,0.5,1) forwards;
}
#typed-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--brand-primary);
  vertical-align: middle;
  animation: blink 0.8s infinite;
  margin-left: 2px;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s cubic-bezier(0.25,1,0.5,1) forwards;
}
.hero-btns {
  display: flex;
  gap: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s cubic-bezier(0.25,1,0.5,1) forwards;
}
.btn-primary {
  background: var(--text-primary);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--brand-primary);
  transition: transform 0.4s var(--transition);
  z-index: 0;
}
.btn-primary:hover::before {
  transform: translateX(100%);
}
.btn-primary span {
  position: relative;
  z-index: 1;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.btn-secondary {
  background: var(--bg-tertiary);
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border: 1px solid var(--border);
  transition: all 0.4s var(--transition);
  display: inline-block;
}
.btn-secondary:hover {
  background: var(--bg-secondary);
  border-color: var(--text-tertiary);
  transform: translateY(-4px);
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: scaleIn 1s 0.5s cubic-bezier(0.25,1,0.5,1) forwards;
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9) translateX(40px); }
  to { opacity: 1; transform: scale(1) translateX(0); }
}
.hero-photo-wrap {
  position: relative;
  width: 400px;
  height: 520px;
}
.hero-image-frame {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--transition);
}
.hero-image-frame:hover img {
  transform: scale(1.05);
}
.hero-initials {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--brand-secondary);
  opacity: 0.3;
}
.float-card {
  position: absolute;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  z-index: 2;
  transition: transform 0.3s var(--transition);
}
.float-card:hover {
  transform: scale(1.05);
}
.float-card.c1 {
  bottom: 40px;
  left: -60px;
  animation: floatCard 5s ease-in-out infinite;
}
.float-card.c2 {
  top: 50px;
  right: -50px;
  animation: floatCard 6s 1.5s ease-in-out infinite;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}
.fc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1;
}
.fc-lbl {
  font-size: 0.8rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 0.3rem;
  white-space: nowrap;
}

/* MARQUEE */
.marquee-wrap {
  overflow: hidden;
  background: var(--text-primary);
  color: #fff;
  padding: 1.2rem 0;
  white-space: nowrap;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  padding: 0 3rem;
  letter-spacing: 0.03em;
  font-weight: 300;
}
.marquee-sep {
  color: var(--brand-secondary);
  font-size: 1rem;
}

/* SECTIONS */
section {
  padding: 8rem 5rem;
  position: relative;
}
.sec-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.sec-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--brand-secondary);
}
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.sec-sub {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25,1,0.5,1), transform 0.8s cubic-bezier(0.25,1,0.5,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT */
.about {
  background: var(--bg-secondary);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: center;
}
.about-image-cont {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--bg-primary);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
  line-height: 1.8;
}
.about-text p strong {
  color: var(--text-primary);
  font-weight: 500;
}
.skills-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}
.skill-tag {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  transition: all 0.3s var(--transition);
  cursor: default;
}
.skill-tag:hover {
  background: var(--text-primary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* EXPERIENCE */
.experience {
  background: var(--bg-primary);
}
.exp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.exp-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.exp-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(44, 62, 80, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.4s;
  z-index: -1;
}
.exp-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0,0,0,0.1);
}
.exp-card:hover::after {
  opacity: 1;
}
.exp-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  transition: transform 0.4s var(--transition);
}
.exp-card:hover .exp-icon {
  transform: scale(1.1) rotate(5deg);
}
.exp-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.exp-org {
  font-size: 0.85rem;
  color: var(--brand-secondary);
  font-weight: 500;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.exp-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.7;
}

/* STATS */
.stats-strip {
  background: var(--text-primary);
  color: #fff;
  padding: 5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  position: relative;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item::after {
  content: '';
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.stat-item:last-child::after {
  display: none;
}
.stat-item .big {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* WRITING */
.writing {
  background: var(--bg-secondary);
}
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}
.post-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--transition);
}
.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.post-thumb {
  height: 200px;
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  transition: transform 0.4s var(--transition);
  overflow: hidden;
}
.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card:hover .post-thumb {
  transform: scale(1.02);
}
.post-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.post-cat {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}
.post-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  font-weight: 600;
}
.post-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.post-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.post-date {
  font-size: 0.85rem;
  color: var(--text-tertiary);
}
.post-arrow {
  width: 36px;
  height: 36px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all 0.3s var(--transition);
}
.post-card:hover .post-arrow {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
  transform: rotate(45deg);
}

/* CONTACT */
.contact {
  background: var(--text-primary);
  color: #fff;
  padding: 8rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.05) 0%, transparent 70%);
}
.contact .sec-label {
  color: rgba(255,255,255,0.5);
  justify-content: center;
}
.contact .sec-label::before {
  background: rgba(255,255,255,0.5);
}
.contact .sec-title {
  color: #fff;
}
.contact .sec-sub {
  color: rgba(255,255,255,0.7);
  margin: 0 auto 3rem;
}
.contact-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.c-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-decoration: none;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s var(--transition);
  backdrop-filter: blur(10px);
}
.c-link:hover {
  background: #fff;
  color: var(--text-primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* FOOTER */
footer {
  background: #0A0A0A;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem 5rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
}
footer a:hover {
  color: #fff;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* RESPONSIVE */
@media(max-width:1024px) {
  section { padding: 6rem 3rem; }
  .hero { padding: 8rem 3rem 4rem; grid-template-columns: 1fr; text-align: center; }
  .hero-visual { grid-row: 1; margin-bottom: 3rem; }
  .hero-badge, .hero-btns { justify-content: center; margin-left: auto; margin-right: auto; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .stats-strip { padding: 4rem 3rem; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
  .stat-item:nth-child(2)::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 4rem; }
  .about-img { max-width: 400px; margin: 0 auto; }
  .sec-label { justify-content: center; }
  .sec-title, .sec-sub { text-align: center; margin-left: auto; margin-right: auto; }
}

@media(max-width:768px) {
  nav, nav.scrolled { padding: 1.2rem 2rem; }
  .nav-links { display: none; }
  #menu-btn { display: block; }
  section { padding: 5rem 1.5rem; }
  .hero { padding: 7rem 1.5rem 3rem; }
  .hero h1 { font-size: 3rem; }
  .stats-strip { grid-template-columns: 1fr; gap: 3rem; padding: 3rem 1.5rem; }
  .stat-item::after { display: none; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.5rem; }
}
