/* ====== VARIABLES ====== */
:root {
  --nav-h: 70px;
  --cream: #f5f0eb;
  --warm-white: #faf6f1;
  --charcoal: #1a1a1a;
  --dark: #0f0f0f;
  --rose: #B3512D;
  --rose-light: #f0ddd9;
  --rose-blush: #f7ebe8;
  --green: #3d8b5e;
  --green-light: #dbeee2;
  --taupe: #6f6565;
  --lilac: #b8a9c9;
  --lilac-light: #ece5f3;
  --grey: rgb(49, 46, 46);

  --green: #4a7c59;
  --green-light: #7aab8a;
  --ink: #1e1e1e;
  --muted: #7a7168;
  --line: #c0b8ac;
  --dot-empty: #d0c8bc;
  --dot-bg: #e8e4de;

  --bg: #F4F1EE;
  --text: #2a2826;
  --muted: #9a9590;
  --accent: #c46b5a;
  --line: rgba(42,40,38,0.08);
  --sand: #e8e2d6;
  --stone: #9a9590;
  --overlay-bg: #f5f3ef;
}

/* ====== RESET & BASE ====== */
* { margin: 0; padding: 0; box-sizing: border-box; }

::selection {
  background: var(--rose);
  color: white;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
  padding-top: var(--nav-h);
}

/* ====== CURSOR FOLLOWER ====== */
.cursor-glow {
  position: fixed;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,117,107,0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ====== NAV ====== */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 3000;
  padding: 1.2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(245,240,235,0.85);
  border-bottom: 1px solid rgba(201,117,107,0.1);
  transition: all 0.4s ease;
  height: var(--nav-h);
}

nav.scrolled {
  padding: 0.9rem 4rem;
  box-shadow: 0 4px 30px rgba(201,117,107,0.08);
}

nav.hero-nav {
  background: transparent;
  backdrop-filter: none;
  border-bottom: none;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-logo span {
  color: var(--rose);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--taupe);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover { color: var(--charcoal); }
.nav-links a:hover::after { width: 100%; }

/* ── HAMBURGER MENU ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 4000;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(245,240,235,0.97);
  backdrop-filter: blur(20px);
  z-index: 2999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.nav-mobile-overlay.open {
  display: flex;
}

.nav-mobile-overlay a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  transition: color 0.3s;
}

.nav-mobile-overlay a:hover {
  color: var(--rose);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90vh;
  padding-top: 64px;
  width: 100%;
  flex-direction: column;
  margin-bottom: 200px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.text_hero {
  opacity: 0;
  transform: translateY(12px);
  animation: fadeInUp 1.2s ease forwards;
  animation-delay: 4.5s;
  text-align: center;
  z-index: 1;
  position: relative;
}

#jump {
  display: inline-block;
  color: var(--accent);
  animation: dotBounce 2.2s ease-in-out infinite;
}

.text_hero span {
  color: #2b532f;
}

.img_hero {
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: fit-content;
}

.img_hero img {
  width: clamp(200px, 30vw, 350px);
  display: block;
}

.illustration {
  position: absolute;
  bottom: -18%;
  left: 43%;
  transform: translateX(-50%);
  z-index: 3;
  width: fit-content;
}

.illustration img {
  width: clamp(300px, 40vw, 500px);
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  width: 100%;
  text-align: center;
}

.start {
  position: relative;
  z-index: 3;
  margin-bottom: 1rem;
  letter-spacing: 5px;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid currentColor;
  width: 0;
  font-size: clamp(0.65rem, 2vw, 1rem);
  animation:
    typing 4.2s steps(42, end) forwards,
    cursor 1.2s step-end infinite;
}

@keyframes cursor {
  50% { border-color: transparent; }
}

@keyframes typing {
  from { width: 0; }
  to   { width: 42ch; }
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes dotBounce {
  0%, 100% { transform: translateY(0); }
  40%  { transform: translateY(-6px); }
  55%  { transform: translateY(0); }
}


/* ============================================================
   SECTION COMMONS
   ============================================================ */
section {
  padding: 7rem 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.2rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--rose);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--taupe);
  max-width: 550px;
  line-height: 1.8;
  margin-bottom: 4rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  padding: 2.5rem 0;
  background: var(--warm-white);
  border-top: 1px solid rgba(201,117,107,0.08);
  border-bottom: 1px solid rgba(201,117,107,0.08);
  overflow: hidden;
  position: relative;
  margin-top: -50px;
}

.marquee-section::before,
.marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, var(--warm-white), transparent);
}

.marquee-section::after {
  right: 0;
  background: linear-gradient(-90deg, var(--warm-white), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  white-space: nowrap;
  padding: 0 0.4rem;
  transition: color 0.3s;
  letter-spacing: 0.01em;
}

.marquee-item:hover {
  color: var(--rose);
}

.marquee-divider {
  color: var(--rose);
  font-size: 0.7rem;
  padding: 0 1.4rem;
  opacity: 0.5;
}


/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--warm-white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding-left: 150px;
  padding-right: 150px;
}

.about-image {
  width: 100%;
  overflow: hidden;
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 90%;
  height: auto;
  object-fit: cover;
}

.about-content {
  display: flex;
  flex-direction: column;
}

.about-text {
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-text:last-of-type {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 1rem;
}

.traits {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  margin: 24px 0 36px;
  padding: 0;
  flex-wrap: wrap;
}

.traits li {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #383838;
  padding: 0 20px;
}

.traits li:first-child {
  padding-left: 0;
}

.traits li:not(:last-child) {
  border-right: 1.5px solid #999;
}

/* ── THINKING SECTION ── */
.thinking {
  font-size: clamp(1.6rem, 4vw, 4rem);
  max-width: 1000px;
  padding: 5rem 4rem;
}

.thinking p {
  font-weight: 600;
}


/* ============================================================
   PROJECTS
   ============================================================ */
.projects {
  background: var(--cream);
}

.projects-grid {
  display: grid;
  gap: 4rem;
}

.project-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card:nth-child(even) { direction: rtl; }
.project-card:nth-child(even) > * { direction: ltr; }

.project-thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-thumbnail:hover { transform: scale(1.02); }

.project-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-style: italic;
  color: white;
}

.project-thumbnail img {
  width: 80%;
}

.project-meta {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.project-meta span {
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-ux { background: var(--rose-blush); color: var(--rose); }
.tag-ui { background: var(--lilac-light); color: #8b71a8; }
.tag-dev { background: var(--green-light); color: rgb(1, 72, 1); }

.project-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.project-info p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--charcoal);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.3s;
}

.project-link:hover { color: var(--rose); gap: 0.8rem; }
.project-link svg { width: 18px; height: 18px; transition: transform 0.3s; }
.project-link:hover svg { transform: translateX(4px); }


/* ============================================================
   PROCESS
   ============================================================ */
#process {
  background-color: var(--warm-white);
}

.process-header {
  text-align: center;
  margin-bottom: 4rem;
}

.process-header .section-label { justify-content: center; }
.process-header .section-subtitle { margin-left: auto; margin-right: auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--rose-light), var(--lilac-light), var(--green-light), var(--rose-light));
}

.process-step { text-align: center; position: relative; }

.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--warm-white);
  border: 2px solid var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--rose);
  position: relative;
  z-index: 2;
  transition: all 0.4s;
}

.process-step:hover .step-number {
  background: var(--rose);
  color: white;
  border-color: var(--rose);
  transform: scale(1.1);
}

.process-step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.6;
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: #d1d5c6;
  color: white;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(201,117,107,0.05);
  top: -100px;
  right: -100px;
}

.testimonials .section-label { color: var(--rose); }
.testimonials .section-label::before { background: var(--rose); }
.testimonials .section-title { color: rgb(39, 39, 39); }
.testimonials .section-subtitle { color: rgb(39, 39, 39); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,117,107,0.2);
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: rgb(39, 39, 39);
  margin-bottom: 1.5rem;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 3rem;
  color: var(--rose);
  line-height: 0;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-author { display: flex; align-items: center; gap: 1rem; }

.author-name { font-weight: 500; font-size: 0.9rem; color: rgb(39, 39, 39); }
.author-role { font-size: 0.78rem; color: rgb(79, 79, 79); }


/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  text-align: center;
  position: relative;
}

.contact-inner { max-width: 680px; margin: 0 auto; }
.contact .section-label { justify-content: center; }
.contact .section-subtitle { margin-left: auto; margin-right: auto; }

.contact .section-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
}

.contact .section-title em {
  font-style: italic;
  color: var(--green);
}

.contact-email {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.6rem);
  color: var(--charcoal);
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  word-break: break-all;
}

.contact-email::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--rose);
}

.contact-email:hover { color: var(--rose); }

.contact-socials {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.social-link {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--rose-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--taupe);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.4s;
}

.social-link:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
  transform: translateY(-3px);
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  padding: 2rem 4rem;
  text-align: center;
  border-top: 1px solid var(--rose-light);
  font-size: 0.8rem;
  color: var(--taupe);
}

footer span { color: var(--rose); }


/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideRight {
  from { opacity: 0; transform: translateX(-25px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ============================================================
   CASE PAGES
   ============================================================ */
.case-hero {
  height: calc(70vh - px);
  display: flex;
  flex-direction: column;
  padding: 4rem;
  overflow: hidden;
}

.case-hero-back {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  color: rgba(43, 37, 37, 0.61);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
  transition: color 0.3s;
}

.case-hero-back:hover { color: var(--rose); }

.case-hero-tags {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.case-tag {
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.case-tag.ux { background: rgba(201,117,107,0.15); color: var(--rose); }
.case-tag.ui { background: rgba(184,169,201,0.15); color: var(--lilac); }
.case-tag.dev { background: rgba(61,139,94,0.15); color: var(--green); }

.case-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  color: rgb(66, 58, 58);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.case-hero h1 em {
  font-style: italic;
  color: var(--green);
}

.case-hero-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgb(66, 58, 58);
  line-height: 1.8;
  max-width: 600px;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3.5rem 4rem;
  background: var(--warm-white);
  border-bottom: 1px solid var(--rose-light);
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.meta-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--taupe);
}

.meta-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--charcoal);
}

.case-section {
  padding: 6rem 4rem;
  margin: 0 auto;
}

.case-section.wide {
  max-width: none;
}

.case-section.dark {
  background: var(--cream);
  color: black;
  max-width: none;
  padding: 6rem 4rem;
}

.section-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.68rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--rose);
}

.case-section.dark .section-eyebrow { color: var(--rose); }
.case-section.dark .section-eyebrow::before { background: var(--rose); }

.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: rgb(43, 42, 42);
}

.section-body {
  font-size: 0.95rem;
  color: var(--taupe);
  line-height: 1.9;
  max-width: 700px;
}

.two-col {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: center;
  margin-top: 2rem;
}

.overview-text p {
  font-size: 0.92rem;
  color: var(--taupe);
  line-height: 1.9;
}

.case-overview {
  display: flex;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
}

.case-overview-text {
  display: flex;
  flex-direction: column;
  max-width: 50%;
}

.case-overview-image {
  display: flex;
  max-width: 50%;
  justify-content: center;
  align-items: center;
}

.case-overview-image img {
  width: 100%;
  height: auto;
  display: block;
}

.two-col .insight-card {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.two-col .insight-card img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: auto;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.process-phase {
  padding: 2rem;
  border-radius: 16px;
  background: var(--warm-white);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s;
}

.process-phase:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(201,117,107,0.15);
  transform: translateY(-4px);
}

.phase-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--rose);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.phase-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}

.phase-desc {
  font-size: 0.8rem;
  color: var(--taupe);
  line-height: 1.7;
}

.phase-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.phase-tool {
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-family: 'DM Mono', monospace;
  font-size: 0.58rem;
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.35);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.insight-card {
  padding: 2rem;
  border-radius: 16px;
  background: var(--warm-white);
  border: 1px solid var(--rose-light);
  transition: all 0.4s;
}

.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(201,117,107,0.08);
}

.insight-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.insight-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.insight-text {
  font-size: 0.82rem;
  color: var(--taupe);
  line-height: 1.7;
}

.case-quote {
  padding: 5rem 4rem;
  text-align: center;
  background: var(--warm-white);
  position: relative;
}

.case-quote::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--rose);
  opacity: 0.2;
  line-height: 0;
  display: block;
  margin-bottom: 1rem;
}

.case-quote blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--charcoal);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.6;
}

.case-quote cite {
  font-family: 'DM Mono', monospace;
  font-size: 0.72rem;
  font-style: normal;
  color: var(--taupe);
  letter-spacing: 0.05em;
}

.image-strip {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  margin-top: 100px;
}

.image-strip img {
  width: clamp(280px, 50%, 900px);
  height: auto;
  display: block;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.result-item { text-align: center; }

.result-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.result-label {
  font-size: 0.85rem;
  color: var(--taupe);
  line-height: 1.6;
}

.case-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--rose-light);
}

.case-nav a {
  padding: 3rem 4rem;
  text-decoration: none;
  transition: background 0.3s;
}

.case-nav a:hover { background: var(--warm-white); }

.case-nav-label {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem;
  color: var(--taupe);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.case-nav-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--charcoal);
}

.case-nav a:last-child {
  text-align: right;
  border-left: 1px solid var(--rose-light);
}

/* CTA link with circle arrow */
.showcase-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1a1a1a;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}

.showcase-cta .cta-text {
  transition: color 0.3s ease;
}

.cta-arrow {
  transition: transform 0.3s ease;
}

.cta-arrow circle {
  transition: fill 0.3s ease, r 0.3s ease;
}

.cta-arrow path {
  transition: transform 0.3s ease;
}

.showcase-cta:hover .cta-text {
  color: #c0543a;
}

.showcase-cta:hover .cta-arrow {
  transform: translateX(4px);
}

.showcase-cta:hover .cta-arrow circle {
  fill: #9a3f2b;
}

.case-overview-image.teddy {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-overview-image.teddy img {
  width: 70%;
  margin-top: 200px;
}

/* ============================================================
   ABOUT ME PAGE
   ============================================================ */
.about_me {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.about_me_2 {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 4rem 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.about_me_wrapper {
  overflow: hidden;
  width: 100%;
}

.about_me_wrapper_to {
  overflow: hidden;
  width: 100%;
}

.blob-static {
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background-color: #FFD364;
  filter: blur(80px);
  opacity: 0.5;
  top: -30px;
  right: -20px;
  z-index: 0;
}

.about_me_text,
.about_me_image {
  position: relative;
  z-index: 1;
}

.about__text {
  flex: 1;
}

.about_me_text h2 {
  margin-bottom: 0.75rem;
}

.about_me_text p {
  line-height: 1.6;
  max-width: 55ch;
  margin-top: 30px;
}

.about_me_image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.about_me_image img {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 16px;
  display: block;
  object-fit: cover;
}

/* ============================================================
   HARD SKILLS SECTION
   ============================================================ */
.hard-skills {
  background-color: var(--cream);
  padding: 60px 80px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  display: flex;
  justify-content: center;
}

.skills-inner {
  width: 100%;
  max-width: 700px;
}

.skills-divider {
  border: none;
  border-top: 1.5px solid #c9bfae;
  margin-bottom: 40px;
}

.skills-row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.skill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.skill-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.skill-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.skill-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #4a4a4a;
  text-align: center;
}

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline-wrap {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  margin-top: 100px;
  margin-bottom: 100px;
}

.track {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 56px;
  padding: 0 32px;
}

.track-line {
  position: absolute;
  top: 50%;
  left: 32px;
  right: 32px;
  height: 1.5px;
  background: var(--line);
  transform: translateY(-50%);
  z-index: 0;
}

.track-progress {
  position: absolute;
  top: 50%;
  left: 32px;
  height: 2px;
  background: var(--green);
  transform: translateY(-50%);
  z-index: 1;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.dots {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.dot-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: color 0.2s;
}

.dot-wrap.active .dot-label,
.dot-wrap:hover .dot-label {
  color: var(--ink);
}

.dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--dot-empty);
  background: var(--dot-bg);
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  position: relative;
}

.dot-wrap:first-child .dot,
.dot-wrap:last-child .dot {
  width: 22px;
  height: 22px;
}

.dot-wrap.passed .dot {
  border-color: var(--green);
  background: var(--dot-bg);
}

.dot-wrap.active .dot {
  border-color: var(--green);
  background: var(--green);
  transform: scale(1.15);
  box-shadow: 0 0 0 4px rgba(74, 124, 89, 0.15);
}

.dot-wrap:hover:not(.active) .dot {
  border-color: var(--green-light);
  transform: scale(1.1);
}

.content-area {
  min-height: 220px;
  position: relative;
}

.slide {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.slide-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 6vw, 58px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 14px;
}

.slide-date {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

.slide-body {
  font-size: 15px;
  font-weight: 300;
  color: #4a4540;
  line-height: 1.75;
  max-width: 680px;
}

.slide-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.pill {
  background: rgba(74, 124, 89, 0.1);
  border: 1px solid rgba(74, 124, 89, 0.25);
  color: var(--green);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 13px;
  border-radius: 20px;
  letter-spacing: 0.3px;
}

.slide-unknown .slide-title {
  color: var(--muted);
  font-style: italic;
}

.timeline-nav {
  display: flex;
  gap: 10px;
  margin-top: 36px;
}

.timeline-nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
  color: var(--muted);
}

.timeline-nav-btn:hover {
  border-color: var(--green);
  color: var(--green);
}

.timeline-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.timeline-nav-btn svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-wrap .section-label,
.timeline-wrap .section-heading {
  text-align: center;
  margin-bottom: 50px;
}

.section-heading.rejse {
  margin-bottom: 70px;
}

.endelig_loesning {
  max-width: 100%;
  margin-bottom: 100px;
}

.endelig_loesning img {
  width: 80%;
  display: block;
  margin: 0 auto;
}

/* ============================================================
   CARD SECTION
   ============================================================ */
.card-section {
  background: var(--warm-white);
}

.case_line {
  font-size: clamp(3rem, 10vw, 100px);
  line-height: 1;
}

.card-grid {
  display: flex;
  margin-top: 50px;
  gap: clamp(30px, 6vw, 100px);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  border-radius: var(--radius, 16px);
  background: #628370;
  overflow: hidden;
  box-shadow: var(--shadow, 0 4px 20px rgba(0,0,0,0.15));
  transform: translateY(0);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  height: 450px;
}

.card--offset-0 { transform: translateY(100px); margin-bottom: -100px; z-index: 2000; }
.card--offset-1 { transform: translateY(0); background-color: #556780; }

.card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  outline: none;
}

.card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e9e6f6;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .35s ease;
}

.card__body {
  padding: 20px 22px 22px;
}

.card__meta {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: rgb(175, 175, 175);
}

.card__title {
  margin: 0 0 14px;
  font-size: 1.2rem;
  line-height: 1.15;
  color: rgb(228, 221, 221);
}

.card__readtime {
  margin: 0;
  font-size: 0.95rem;
  opacity: .9;
  color: rgb(175, 175, 175);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 200px at 20% 0%, rgba(124,92,255,.12), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.card:hover {
  box-shadow: var(--shadow-hover, 0 12px 40px rgba(0,0,0,0.2));
}

.card--offset-0:hover { transform: translateY(60px); }
.card--offset-1:hover { transform: translateY(-12px); }

.card:hover .card__media img {
  transform: scale(1.06);
}

.card:hover::after {
  opacity: 1;
}

.card__link:focus-visible {
  outline: 3px solid rgba(124,92,255,.45);
  outline-offset: 4px;
  border-radius: calc(var(--radius, 16px) + 6px);
}

/* ============================================================
   SCROLL DOWN INDICATOR
   ============================================================ */
#wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

#wrapper-inner {
  display: flex;
  justify-content: end;
  vertical-align: middle;
  width: 100%;
  height: 100%;
}

#scroll-down {
  display: block;
  position: relative;
  padding-top: 79px;
  text-align: center;
  margin-right: -100px;
}

.arrow-down {
  display: block;
  margin: 0 auto;
  width: 10px;
  height: 38px;
}

.arrow-down:after {
  content: '';
  display: block;
  margin: 0;
  padding: 0;
  width: 8px;
  height: 8px;
  border-top: 2px solid #b91a2f;
  border-right: 2px solid #b91a2f;
  transform: rotate(135deg);
}

#scroll-title {
  display: block;
  text-transform: uppercase;
  color: #b91a2f;
  font-family: Helvetica Neue, Helvetica, Arial;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: .1em;
}

#scroll-down::before {
  animation: elasticus 2.5s cubic-bezier(1, 0, 0, 1) infinite;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -1px;
  width: 2px;
  height: 90px;
  background: #b91a2f;
  content: ' ';
}

/* ============================================================
   FILL TEXT ANIMATION
   ============================================================ */
.fill-text > span {
  -webkit-background-clip: text;
  background-clip: text;
  background-color: var(--muted);
  background-image: linear-gradient(135deg, rgb(56, 56, 56) 50%, var(--muted) 60%);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 0% 200%;
  color: transparent;
  display: inline;
  will-change: background-size;
}

/* ============================================================
   HALF LAYOUTS (CASE PAGES)
   ============================================================ */
.half {
  display: flex;
  justify-content: center;
  width: 100%;
}

.half-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  list-style: none;
  width: 50%;
}

.half-text h2 {
  font-size: clamp(2rem, 6vw, 70px);
}

.half-text a {
  text-decoration: none;
  margin-top: 30px;
  color: #0f0f0f;
}

.half-content {
  width: 50%;
  display: flex;
  justify-content: center;
}

.half-content img {
  width: 100%;
  object-fit: cover;
}

.half_second {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 60px 0 60px 0;
}

.half-text_second {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-left: 80px;
}

.half-content_second {
  width: 50%;
  display: flex;
  justify-content: center;
}

.half-content_second img {
  width: 80%;
  height: auto;
  display: flex;
}

.half-text_second h2 {
  font-size: clamp(1.8rem, 4vw, 50px);
}

.half-text_second img {
  margin-top: 30px;
}

.half_second.margin {
  margin-bottom: 100px;
}

.half_second.loesning {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.half_second.loesning img {
  width: 80%;
  max-width: 1200px;
  margin-top: 40px;
  padding-left: 80px;
}

.half-text a {
  margin: 0 auto;
  margin-top: 20px;
}

.half-content_second video {
  width: 60%;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes elasticus {
  0% {
    transform-origin: 0% 0%;
    transform: scale(1, 0);
  }
  50% {
    transform-origin: 0% 0%;
    transform: scale(1, 1);
  }
  50.1% {
    transform-origin: 0% 100%;
    transform: scale(1, 1);
  }
  100% {
    transform-origin: 0% 100%;
    transform: scale(1, 0);
  }
}


/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  nav.scrolled { padding: 0.9rem 2rem; }

  section { padding: 5rem 2rem; }

  /* Hero */
  .hero { margin-bottom: 120px; }
  .img_hero img { width: clamp(180px, 28vw, 300px); }
  .illustration img { width: clamp(260px, 35vw, 420px); }

  /* Thinking */
  .thinking { 
    padding: 4rem 2rem;
  }

  /* About */
  .about {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  /* Cards */
  .card-grid {
    gap: 40px;
  }
  .card--offset-0 { transform: translateY(60px); margin-bottom: -60px; }
  .card--offset-0:hover { transform: translateY(30px); }

  /* Project cards */
  .project-card { grid-template-columns: 1fr; }
  .project-card:nth-child(even) { direction: ltr; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Case pages */
  .case-hero { padding: 3rem 2rem; }
  .case-section { padding: 4rem 2rem; }
  .case-section.dark { padding: 4rem 2rem; }
  .case-quote { padding: 4rem 2rem; }
  .case-meta { grid-template-columns: repeat(2, 1fr); padding: 2.5rem 2rem; }
  .case-overview { flex-direction: column; gap: 2.5rem; }
  .case-overview-text { max-width: 100%; }
  .case-overview-image { max-width: 100%; }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .results-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .two-col { flex-direction: column; }
  .two-col .insight-card { flex: 0 0 100%; max-width: 100%; }

  /* Hard skills */
  .hard-skills { padding: 40px 2rem; }

  /* Timeline */
  .timeline-wrap { padding: 0 1rem; }

  /* Half layouts */
  .half { flex-direction: column; }
  .half-text { width: 100%; }
  .half-content { width: 100%; }
  .half_second { flex-direction: column; }
  .half-text_second { width: 100%; padding-left: 2rem; padding-right: 2rem; }
  .half-content_second { width: 100%; }
  .half_second.loesning img { padding-left: 2rem; }
  .half-content_second video { width: 90%; }

  /* About me page */
  .about_me { flex-direction: column; padding: 3rem 1.5rem; }
  .about_me_2 { flex-direction: column; padding: 3rem 1.5rem; }
  .about_me_image { justify-content: flex-start; width: 100%; }
  .about_me_image img { max-width: 100%; }
}


/* ============================================================
   RESPONSIVE — MOBILE (max 640px)
   ============================================================ */
@media (max-width: 640px) {
  /* Nav */
  nav { padding: 1rem 1.2rem; }
  nav.scrolled { padding: 0.8rem 1.2rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  /* Sections */
  section { padding: 4rem 1.2rem; }

  /* Hero */
  .hero {
    min-height: 80vh;
    padding-top: 40px;
    margin-bottom: 80px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 5rem);
  }

  .start {
    font-size: 0.6rem;
    letter-spacing: 3px;
  }

  .img_hero img { width: clamp(160px, 55vw, 240px); }
  .illustration img { width: clamp(220px, 70vw, 320px); }
  .illustration { left: 44%; }

  /* Thinking */
  .thinking { padding: 3rem 1.2rem; }

  /* Marquee */
  .marquee-item { font-size: 0.9rem; }
  .marquee-divider { padding: 0 0.8rem; }
  .marquee-section { margin-top: -20px; }

  /* About */
  .about { padding: 3rem 1.2rem; }
  .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .traits { gap: 8px; }
  .traits li { padding: 4px 10px; border-right: none !important; }

  /* Case line */
  .case_line { font-size: clamp(2.5rem, 12vw, 5rem); }

  /* Cards */
  .card-grid {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
    margin-top: 30px;
  }

  .card {
    max-width: 100%;
    min-width: unset;
    height: auto;
  }

  .card--offset-0,
  .card--offset-1 {
    transform: translateY(0);
    margin-bottom: 0;
  }

  .card--offset-0:hover,
  .card--offset-1:hover {
    transform: translateY(-6px);
  }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .process-timeline { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 1.8rem 1.5rem; }
  .testimonial-quote { font-size: 1rem; }

  /* Contact */
  .contact-inner { padding: 0 1rem; }

  /* Footer */
  footer { padding: 2rem 1.2rem; }

  /* Case pages */
  .case-hero { padding: 2rem 1.2rem; min-height: auto; }
  .case-section { padding: 3rem 1.2rem; }
  .case-section.dark { padding: 3rem 1.2rem; }
  .case-quote { padding: 3rem 1.2rem; }
  .case-meta { grid-template-columns: 1fr; padding: 2rem 1.2rem; gap: 1.5rem; }
  .case-nav { grid-template-columns: 1fr; }
  .case-nav a { padding: 2rem 1.2rem; }
  .case-nav a:last-child { border-left: none; border-top: 1px solid var(--rose-light); }

  .insight-grid { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; gap: 2rem; }
  .image-strip { margin-top: 50px; }
  .image-strip img { width: 90%; }

  /* Scroll indicator */
  #scroll-down { margin-right: 0; }
  #wrapper-inner { justify-content: center; }

  /* Timeline */
  .timeline-wrap { margin-top: 50px; margin-bottom: 50px; padding: 0 0.5rem; }
  .track { padding: 0 8px; }
  .track-line { left: 8px; right: 8px; }
  .track-progress { left: 8px; }
  .dot-label { font-size: 9px; }

  /* Hard skills */
  .hard-skills { padding: 30px 1.2rem; }
  .skills-row { gap: 24px; }
  .skill-icon { width: 48px; height: 48px; }
  .skill-icon img { width: 44px; height: 44px; }

  /* Half layouts */
  .half { flex-direction: column; }
  .half-text { width: 100%; text-align: left; }
  .half-content { width: 100%; }
  .half_second { flex-direction: column; padding: 30px 0; }
  .half-text_second { width: 100%; padding-left: 1.2rem; padding-right: 1.2rem; }
  .half-content_second { width: 100%; }
  .half-content_second img { width: 100%; }
  .half-content_second video { width: 100%; }
  .half_second.loesning img { width: 95%; padding-left: 1.2rem; }
  .half_second.margin { margin-bottom: 50px; }

  /* About me page */
  .about_me { flex-direction: column; padding: 2rem 1.2rem; }
  .about_me_2 { flex-direction: column; padding: 2rem 1.2rem; }
  .about_me_image img { max-width: 100%; }
  .blob-static { width: 200px; height: 200px; }

  /* Teddy image */
  .case-overview-image.teddy img { margin-top: 60px; width: 90%; }
}


/* ============================================================
   RESPONSIVE — LARGE SCREENS (min 1400px)
   ============================================================ */
@media (min-width: 1400px) {
  nav { padding: 1.2rem 6rem; }
  nav.scrolled { padding: 0.9rem 6rem; }

  section { padding: 8rem 6rem; }

  .thinking { max-width: 1100px; padding: 6rem 6rem; }

  .about {
    padding-left: 200px;
    padding-right: 200px;
    gap: 8rem;
  }

  .card-grid { gap: 120px; }

  .case-hero { padding: 5rem 6rem; }
  .case-section { padding: 7rem 6rem; }
  .case-section.dark { padding: 7rem 6rem; }
  .case-quote { padding: 6rem; }
  .case-meta { padding: 4rem 6rem; }
  .case-nav a { padding: 3.5rem 6rem; }
}