* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f5f4f0;
  color: #2d2d29;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  cursor: auto;
}
::selection {
  background: #7a8c8c;
  color: #f5f4f0;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ----- TYPOGRAPHY ----- */
h1, h2, h3 {
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #1e1e1c;
}
h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  position: relative;
}
h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 56px;
  height: 3px;
  background: #7a8c8c;
  border-radius: 2px;
}
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #7a8c8c;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ----- HEADER ----- */
header {
  background: rgba(245, 244, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(45, 45, 41, 0.06);
  padding: 0.9rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e1e1c;
  letter-spacing: -0.5px;
}
.logo span {
  color: #7a8c8c;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: #333333;
  transition: 0.3s;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  text-decoration: none;
}
.nav-links a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #6a9da7;
  transition: width 0.3s ease;
}
.nav-links a:hover {
  color: #000000;
}
.nav-links a:hover:after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 8px 4px;
  cursor: pointer;
  z-index: 101;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger-line {
  display: block;
  width: 28px;
  height: 2.5px;
  background: #2d2d29;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* ----- HERO ----- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: #f5f4f0;
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}
.hero:before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(122, 140, 140, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero:after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 140, 140, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-text {
  animation: fadeInUp 0.8s ease forwards;
}
.hero-text .badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #7a8c8c;
  font-weight: 600;
  margin-bottom: 1rem;
  background: rgba(122, 140, 140, 0.08);
  padding: 0.3rem 1.2rem;
  border-radius: 30px;
}
.hero-text h1 {
  position: relative;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: #1e1e1c;
  margin-bottom: 2rem;
  padding-left: 1.8rem;
}
.hero-text h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08em;
  bottom: 0.08em;
  width: 4px;
  background: #7a8c8c;
  border-radius: 2px;
}
.hero-text h1 .first-name,
.hero-text h1 .last-name {
  display: block;
  margin: 0;
  padding: 0;
}
.hero-text h1 .last-name {
  display: block;
  font-weight: 600;
  color: #2d2d29;
  white-space: nowrap;
}
.hero-text h1 .highlight {
  display: block;
  font-weight: 700;
  margin-top: 0.1rem;
  white-space: nowrap;
  background: linear-gradient(135deg, #000000 0%, #00313a 18%,#0088a6 42%,#3f7985 50%,#0088a6 58%,#00313a 82%,#000000 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 300% 300%;
  animation: gradientShift 15s ease-in-out infinite;
}
@keyframes gradientShift {
0% {
    background-position: 0% 50%;
}
50% {
    background-position: 100% 50%;
}
100% {
    background-position: 0% 50%;
}
}
.hero-sub {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  letter-spacing: 0.3px;
  margin-bottom: 1.5rem;
}
.hero-sub .accent {
  color: #000000;
  font-weight: 600;
}
.hero-description {
  font-size: 1rem;
  color: #4d4d49;
  max-width: 600px;
  line-height: 2;
  margin-top: 2.5;
  margin-bottom: 2.5rem;
  text-align: justify;
  hyphens: auto;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-weight: 600;
  border-radius: 60px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary {
  background: #2d2d29;
  color: #f5f4f0;
  border-color: #1f1f1f;
  box-shadow: 0 4px 20px rgba(45, 45, 41, 0.12);
}
.btn-primary:hover {
  background: #1e1e1c;
  border-color: #1f1f1f;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(45, 45, 41, 0.18);
}
.btn-secondary {
  background: transparent;
  color: #1f1f1f;
  border: 1px solid rgba(45, 45, 41, 0.15);
}
.btn-secondary:hover {
  background: rgba(45, 45, 41, 0.04);
  border-color: rgba(45, 45, 41, 0.25);
  transform: translateY(-3px);
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.profile-image {
  width: 380px;
  height: 440px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid rgba(45, 45, 41, 0.06);
  transition: all 0.4s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}
.profile-image:hover {
  transform: scale(1.01);
  border-color: #6a9da7;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

/* ----- SECTIONS ----- */
section {
  padding: 5rem 0;
}
.section-label {
    font-size: 0.85rem;
    color: #1d1d1d;
}
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(45, 45, 41, 0.06), transparent);
}

/* ----- ABOUT ----- */
#about {
  background: #f5f4f0;
  padding: 5.5rem 0;
}
#about h2 {
  position: relative;
  margin-bottom: 2rem;
}
#about h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 56px;
  height: 3px;
  background: #7a8c8c;
  border-radius: 2px;
}
.about-grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 4rem;
  align-items: start;
  text-align: justify;
}
.about-text p {
  font-size: 1rem;
  color: #4d4d49;
  line-height: 2.1;
  margin-bottom: 1.2rem;
  text-align: justify;
  hyphens: auto;
}
.about-text strong {
  color: #1e1e1c;
  font-weight: 600;
}
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top:115px;
}
.stat-item {
  background: rgba(245, 244, 240, 0.6);
  border: 1px solid rgba(45, 45, 41, 0.06);
  border-radius: 16px;
  padding: 2rem;
  min-height: 150px;
  text-align: center;
  transition: all 0.3s ease;
}
.stat-item:hover {
  border-color: rgba(122, 140, 140, 0.15);
  background: rgba(245, 244, 240, 0.8);
  transform: translateY(-2px);
}
.stat-number {
  font-size: 2.4rem;
  font-weight: 700;
  color: #333333;
  text-shadow: 0 1.8px 0 rgba(102, 100, 100, 0.199), 0 2px 6px rgba(39, 39, 39, 0.212);
}
.stat-label {
  font-size: 0.85rem;
  color: #5a5a55;
  margin-top: 0.2rem;
}

/* ----- PROJECTS ----- */
#projects {
  padding: 5.5rem 0;
}
#projects h2 {
  position: relative;
  margin-bottom: 2rem;
}
#projects h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 56px;
  height: 3px;
  background: #7a8c8c;
  border-radius: 2px;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.project-card {
  background: #f5f4f0;
  border: 1px solid rgba(45, 45, 41, 0.06);
  border-radius: 20px;
  padding: 2.5rem 1rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.project-card:hover {
  border-color: rgba(122, 140, 140, 0.15);
  transform: translateY(-4px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.178);
}
.project-card .icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: left;
  justify-content: left;
  font-size: 1.5rem;
  color: #1d1d1d;
  margin-bottom: 1.15rem;
  border-radius: 10px;
  background: rgba(122, 140, 140, 0.06);
  flex-shrink: 0;
}
.project-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1d1d1d;
  margin-bottom: 1rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.project-card p {
  color: #4d4d49;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
  flex: 1;
  text-align: justify;
  min-height: 80px;
  hyphens: auto;
}
.project-card .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(45, 45, 41, 0.04);
  min-height: 60px;
  align-content: flex-start;
}
.project-card .tags span {
  background: rgba(45, 45, 41, 0.03);
  padding: 0.2rem 0.9rem;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: 500;
  color: #5a5a55;
  border: 1px solid rgba(45, 45, 41, 0.04);
  letter-spacing: 0.01em;
}
.project-link {
  margin-bottom: 1rem;
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  text-align: center;
  border: 1px solid rgba(45, 45, 41, 0.12);
  border-radius: 60px;
  text-decoration: none;
  color: #1f1f1f;
  background: transparent;
  transition: all 0.25s ease;
  align-self: flex-start;
  letter-spacing: 0.01em;
  min-width: 140px;
}
.project-link:hover {
  background: rgba(45, 45, 41, 0.04);
  border-color: rgba(45, 45, 41, 0.25);
  transform: translateY(-2px);
}
.project-link i {
  margin-right: 0.5rem;
  font-size: 0.8rem;
}
.status-badge {
  margin-bottom: 1rem;
  padding: 0.3rem 1rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  display: inline-block;
  border: 1px solid rgba(122, 140, 140, 0.2);
  border-radius: 60px;
  color: #1d1d1d;
  background: rgba(122, 140, 140, 0.04);
  align-self: flex-start;
  min-width: 140px;
  text-align: center;
}

/* ----- EXPERTISE ----- */
#expertise {
background: #f0efeb;
padding: 5.5rem 0;
position: relative;
overflow: hidden;
}
#expertise:before {
content: '';
position: absolute;
top: -20%;
right: -5%;
width: 400px;
height: 400px;
background: radial-gradient(circle, rgba(122, 140, 140, 0.04) 0%, transparent 70%);
border-radius: 50%;
pointer-events: none;
}
#expertise h2 {
position: relative;
margin-bottom: 2rem;
}
#expertise h2:after {
content: '';
position: absolute;
left: 0;
bottom: -8px;
width: 56px;
height: 3px;
background: #7a8c8c;
border-radius: 2px;
}
.expertise-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1.5rem;
margin-top: 2.5rem;
}
.expertise-category {
background: #f5f4f0;
border: 1px solid rgba(45, 45, 41, 0.06);
border-radius: 20px;
padding: 1.75rem 1.5rem;
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.expertise-category:hover {
border-color: rgba(122, 140, 140, 0.15);
transform: translateY(-4px);
box-shadow: 0 5px 30px rgba(0, 0, 0, 0.178);
}
.expertise-category h4 {
font-size: 0.7rem;
font-weight: 600;
letter-spacing: 0.08em;
text-transform: uppercase;
color: #1d1d1d;
margin-bottom: 1rem;
padding-bottom: 0.75rem;
border-bottom: 1px solid rgba(45, 45, 41, 0.04);
position: relative;
}
.expertise-category h4:after {
content: '';
position: absolute;
left: 0;
bottom: -1px;
width: 36px;
height: 2px;
background: #7a8c8c;
border-radius: 2px;
transition: width .3s ease;
}
.expertise-category:hover h4:after {
width: 56px;
}
.expertise-category ul {
list-style: none;
display: flex;
flex-wrap: wrap;
gap: 0.5rem 0.75rem;
margin: 0;
padding: 0;
}
.expertise-category ul li {
font-size: 0.9rem;
color: #1d1d1d;
font-weight: 450;
padding: 0.2rem 0;
position: relative;
transition: color 0.2s ease;
}
.expertise-category ul li:not(:last-child) {
position: relative;
}
.expertise-category ul li:not(:last-child)::after {
content: '·';
display: inline-block;
margin-left: 0.5rem;
color: #1d1d1d;
font-weight: 300;
font-size: 1.1rem;
position: absolute;
right: -0.6rem;
top: 50%;
transform: translateY(-50%);
}

/* ----- COACHING ----- */
#coaching {
  padding: 5.5rem 0;
}
#coaching h2 {
  position: relative;
  margin-bottom: 2rem;
}
#coaching h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 56px;
  height: 3px;
  background: #7a8c8c;
  border-radius: 2px;
}
.coaching-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: stretch;
  margin-top: 2.5rem;
}
.coaching-content p {
  color: #4d4d49;
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1rem;
  text-align: justify;
  hyphens: auto;
}
.coaching-content p:last-child {
  margin-bottom: 0;
}
.coaching-content strong {
  color: #1e1e1c;
  font-weight: 600;
}
.coaching-traits {
display: grid;
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(3, 1fr);
gap: 0.75rem;
height: 100%;
} 
.trait {
  background: #f5f4f0;
  border: 1px solid rgba(45, 45, 41, 0.04);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
}
.trait:hover {
  border-color: rgba(122, 140, 140, 0.1);
  transform: translateY(-2px);
}
.trait i {
  color: #111111;
  font-size: 1.75rem;
  margin-bottom: 0.8rem;
  display: block;
  opacity: 0.7;
}
.trait span {
  font-size: 0.8rem;
  color: #2d2d29;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ----- PHILOSOPHY ----- */

#philosophy {
    background: #f5f4f0;
    padding: 5.5rem 0;
}

#philosophy h2 {
    position: relative;
    margin-bottom: 2rem;
}

#philosophy h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 56px;
    height: 3px;
    background: #7a8c8c;
    border-radius: 2px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
    margin-top: 2.5rem;
}

.philosophy-card {
    background: #f5f4f0;
    border: 1px solid rgba(45, 45, 41, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.philosophy-card:hover {
    border-color: rgba(122, 140, 140, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.18);
}

.philosophy-card .number {
    font-size: 3rem;
    font-weight: 700;
    color: #1d1d1d;
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.philosophy-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1d;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.philosophy-card p {
    color: #4d4d49;
    font-size: 0.90rem;
    line-height: 1.85;
    margin: 0;
    flex: 1;
    text-align: justify;
    hyphens: auto;
}
/* ----- GOALS ----- */
#goals {
  background: #f0efeb;
  padding: 5.5rem 0;
}
#goals h2 {
  position: relative;
  margin-bottom: 2rem;
}
#goals h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 56px;
  height: 3px;
  background: #7a8c8c;
  border-radius: 2px;
}
.goals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.goal-item {
  background: #f5f4f0;
  border: 1px solid rgba(45, 45, 41, 0.04);
  border-radius: 16px;
  padding: 1.75rem 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}
.goal-item:hover {
  border-color: rgba(122, 140, 140, 0.12);
  transform: translateY(-2px);
}
.goal-item .arrow {
  color: #7a8c8c;
  font-size: 1rem;
  margin-top: 0.15rem;
  opacity: 0.6;
  flex-shrink: 0;
}
.goal-item h4 {
  color: #1e1e1c;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
  letter-spacing: -0.01em;
}
.goal-item p {
  color: #5a5a55;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* ----- CONTACT ----- */
#contact {
  padding: 5.5rem 0;
}
#contact h2 {
  position: relative;
  margin-bottom: 2rem;
}
#contact h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 56px;
  height: 3px;
  background: #7a8c8c;
  border-radius: 2px;
}
.contact-minimal {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem 4rem;
  background: #f5f4f0;
  border: 1px solid rgba(45, 45, 41, 0.04);
  padding: 2.5rem 3rem;
  border-radius: 20px;
  margin-top: 2.5rem;
  transition: border-color 0.3s ease;
}
.contact-minimal:hover {
  border-color: rgba(122, 140, 140, 0.08);
}
.contact-minimal a {
  color: #2d2d29;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
}
.contact-minimal a:hover {
  color: #7a8c8c;
  border-bottom-color: #7a8c8c;
}
.contact-minimal .item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4d4d49;
}
.contact-minimal .item i {
  color: #7a8c8c;
  font-size: 1.1rem;
  width: 1.75rem;
  text-align: center;
  opacity: 0.7;
}

/* ----- FOOTER ----- */
footer {
  background: #f5f4f0;
  padding: 2.5rem 0;
  border-top: 1px solid rgba(45, 45, 41, 0.04);
  text-align: center;
  color: #8a8a84;
  font-size: 0.85rem;
}
footer i {
  color: #7a8c8c;
  margin: 0 3px;
}

/* ===== REFINED ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SUBTLE CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(106, 157, 167, 0.08);
  filter: blur(8px);
  transform: translate(-50%, -50%);
  will-change: transform;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
  opacity: 0.6;
}
.cursor-glow.interactive {
  width: 40px;
  height: 40px;
  opacity: 0.9;
}

/* SCROLLBAR  */
::-webkit-scrollbar {
    width: 9.5px;
}
::-webkit-scrollbar-thumb {
    border-radius: 999px;
    border: 2px solid #eceae4;
    background: #7a8c8c;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.15),
        0 0 8px rgba(111,173,185,0.15);

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: #5a8d97;

    box-shadow:
        inset 0 1px 1px rgba(255,255,255,0.1),
        0 0 4px rgba(90,141,151,0.1);
}

/* ==========================================================
   RESPONSIVE LAYOUTS
   ========================================================== */

/* ----- TABLET (768px–991px) ----- */
@media (max-width: 991px) {
  .container {
    padding: 0 2rem;
  }

  .hero-content {
    gap: 3rem;
  }
  .hero-text h1 {
    font-size: 3.8rem;
  }
  .profile-image {
    width: 320px;
    height: 380px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-stats {
    margin-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-item {
    flex: 1;
    min-width: 140px;
    min-height: 120px;
    padding: 1.5rem;
  }

  .project-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .coaching-traits {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .goals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-minimal {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem;
  }

  section {
    padding: 4rem 0;
  }
  #about, #projects, #expertise, #coaching, #philosophy, #goals, #contact {
    padding: 4rem 0;
  }
}

/* ----- PHONE (max-width: 767px) ----- */
@media (max-width: 767px) {
  .container {
    padding: 0 1.5rem;
  }

  /* Show hamburger, hide nav links */
  .hamburger {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(245, 244, 240, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    padding: 6rem 2rem 3rem;
    min-height: 100vh;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    z-index: 100;
    list-style: none;
    margin: 0;
  }
  .nav-links.nav-open {
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
  }

  .hamburger-active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger-active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger-active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* HERO */
  .hero {
    min-height: auto;
    padding: 3rem 0 4rem;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-image {
    order: -1;
  }
  .profile-image {
    width: clamp(200px, 50vw, 280px);
    height: clamp(240px, 60vw, 340px);
  }
  .hero-text h1 {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
    padding-left: 0;
    text-align: center;
  }
  .hero-text h1::before {
    display: none;
  }
  .hero-text h1 .highlight {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
    white-space: normal;
  }
  .hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    text-align: center;
  }
  .hero-description {
    max-width: 100%;
    margin: 0 auto 2rem;
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1rem);
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    min-height: 44px;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .about-text p {
    text-align: justify;
  }
  .about-stats {
    flex-direction: column;
    margin-top: 0.5rem;
  }
  .stat-item {
    min-height: 100px;
    padding: 1.5rem;
    width: 100%;
  }
  .stat-number {
    font-size: 2rem;
  }

  /* PROJECTS */
  .project-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .project-card {
    padding: 2rem 1.25rem;
  }
  .project-card p {
    min-height: auto;
    text-align: justify;
  }
  .project-link {
    align-self: center;
    min-width: 160px;
  }
  .status-badge {
    align-self: center;
    min-width: 160px;
  }

  /* EXPERTISE */
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .expertise-category {
    padding: 1.5rem;
  }
  .expertise-category ul {
    justify-content: center;
  }

  /* CHARACTER */
  .coaching-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .coaching-content {
    order: 1;
  }
  .coaching-content p {
    text-align: justify;
  }
  .coaching-traits {
    order: 2;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0.75rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .trait {
    padding: 1rem 0.75rem;
  }
  .trait i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  .trait span {
    font-size: 0.75rem;
  }

  /* PHILOSOPHY */
  .philosophy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .philosophy-card {
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .philosophy-card p {
    text-align: center;
  }
  .philosophy-card .number {
    text-align: center;
  }

  /* GOALS */
  .goals-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .goal-item {
    padding: 1.5rem;
  }
  .goal-item p {
    text-align: justify;
  }

  /* CONTACT */
  .contact-minimal {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-minimal .item {
    gap: 0.75rem;
    justify-content: flex-start;
  }
  .contact-minimal a {
    font-size: 1rem;
    padding: 0.4rem 0;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    word-break: break-word;
  }

  /* TYPOGRAPHY */
  h2 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }
  h2:after {
    width: 44px;
  }
  .section-label {
    font-size: 0.7rem;
  }

  /* SECTION PADDING */
  section {
    padding: 3rem 0;
  }
  #about, #projects, #expertise, #coaching, #philosophy, #goals, #contact {
    padding: 3rem 0;
  }

  /* CURSOR GLOW disabled on touch */
  .cursor-glow {
    display: none;
  }
}

/* ----- SMALL PHONE (≤480px) ----- */
@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 2rem 0 3rem;
  }
  .hero-content {
    gap: 1.5rem;
  }
  .profile-image {
    width: clamp(160px, 45vw, 200px);
    height: clamp(200px, 55vw, 250px);
  }
  .hero-text h1 {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
  }
  .hero-text h1 .highlight {
    font-size: clamp(2.2rem, 7vw, 2.8rem);
  }
  .hero-sub {
    font-size: 0.95rem;
  }
  .hero-description {
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    max-width: 280px;
  }

  .coaching-traits {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .contact-minimal {
    padding: 1.25rem;
    gap: 1rem;
  }
  .contact-minimal a {
    font-size: 0.9rem;
    min-height: 44px;
  }

  section {
    padding: 2.5rem 0;
  }
  #about, #projects, #expertise, #coaching, #philosophy, #goals, #contact {
    padding: 2.5rem 0;
  }

  .nav-links {
    gap: 1.5rem;
    padding: 4rem 1.5rem 2rem;
  }
  .nav-links a {
    font-size: 1rem;
  }
}