:root {
  --bg-primary: #FCE4E8;
  --bg-secondary: #F9D7DE;
  --accent: #F4AABF;
  --text-primary: #1F2937;
  --text-secondary: #6B7280;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-primary);
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 55%, var(--bg-primary) 100%);
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 24px 80px;
  background: transparent;
}

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

.brand {
  font-size: 1.25rem;
  font-weight: 600;
}

.brand-first {
  color: var(--accent);
  margin-right: 6px;
}

.brand-last {
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 36px;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.nav-links a {
  position: relative;
  padding-bottom: 4px;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-links a:hover::after {
  width: 100%;
}

main {
  padding-top: 90px;
}

.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 80px 80px;
  gap: 64px;
}

.hero-content {
  max-width: 580px;
}

.hero h1 {
  font-size: clamp(2.25rem, 3.6vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-greeting {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
}

.hero-name {
  color: var(--accent);
}

.hero h2 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.hero-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.8;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.98rem;
  color: var(--text-secondary);
}

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

.icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon svg {
  width: 22px;
  height: 22px;
  fill: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 360px;
}

.photo-frame {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: var(--white);
  border: 6px solid var(--accent);
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.photo-frame img {
  width: 92%;
  height: 92%;
  object-fit: contain;
  border-radius: 50%;
  background: var(--white);
  transform: scale(1.1);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.badge {
  position: absolute;
  right: -10px;
  bottom: 24px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(31, 41, 55, 0.12);
}

.section {
  padding: 40px 80px 70px;
  max-width: 980px;
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.section p {
  color: var(--text-secondary);
  line-height: 1.7;
}

section {
  scroll-margin-top: 120px;
}

.section-header {
  text-align: center;
  margin-bottom: 36px;
}

.section-header h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-underline {
  display: inline-block;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 12px;
}

.section-subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: rgba(244, 170, 191, 0.6);
}

.timeline-item {
  position: relative;
  padding-left: 24px;
}

.timeline-dot {
  position: absolute;
  left: -1px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
}

.timeline-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.timeline-date {
  color: var(--accent);
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.timeline-company {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.timeline-content ul {
  list-style: none;
  display: grid;
  gap: 8px;
  color: var(--text-secondary);
}

.timeline-content ul li {
  position: relative;
  padding-left: 18px;
}

.timeline-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.skills-grid h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  background: rgba(249, 215, 222, 0.6);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 0.25s ease, background-color 0.25s ease;
  cursor: pointer;
}

.chip:hover {
  transform: scale(1.03);
  background: rgba(249, 215, 222, 0.8);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.contact-card {
  background: rgba(249, 215, 222, 0.45);
  border-radius: 18px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-card p {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
  transition: fill 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(31, 41, 55, 0.1);
  background: rgba(249, 215, 222, 0.6);
}

.contact-card:hover .contact-icon {
  background: #fdeff2;
  box-shadow: 0 12px 22px rgba(31, 41, 55, 0.16);
}

.contact-card:hover .contact-icon svg {
  fill: #f2a1b6;
}

.contact-linkedin {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-linkedin-card {
  display: flex;
  justify-content: center;
}

.contact-card-single {
  width: 100%;
  max-width: 460px;
}

/* Featured Projects Cards */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.project-card {
  background: var(--card-bg, rgba(249, 215, 222, 0.48));
  border: 1px solid rgba(244, 170, 191, 0.2);
  border-radius: 18px;
  padding: 22px;
  color: var(--text, var(--text-secondary));
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(31, 41, 55, 0.12);
  background: rgba(249, 215, 222, 0.62);
  border-color: rgba(244, 170, 191, 0.55);
}

.project-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(31, 41, 55, 0.12);
  margin-bottom: 14px;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover .project-icon {
  background: #fdeff2;
  box-shadow: 0 12px 22px rgba(31, 41, 55, 0.14);
}

.project-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--accent);
}

.project-card h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.project-card p {
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.project-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.project-list li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
}

.project-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-weight: 700;
}

.project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.project-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.12);
  background-color: #f3a0b7;
}

.site-footer {
  text-align: center;
  padding: 18px 20px 36px;
  color: var(--text-secondary);
}

.case-study-page {
  margin: 0 auto;
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.case-study-screens {
  grid-column: 1 / -1;
}

/* Contact Section */
.contact {
  padding: 40px 80px 70px;
  max-width: 980px;
  margin: 0 auto;
  scroll-margin-top: 120px;
}

.contact-header {
  margin-bottom: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.contact-options {
  display: grid;
  gap: 14px;
}

.contact-card {
  background: rgba(249, 215, 222, 0.45);
  border: 1px solid rgba(244, 170, 191, 0.2);
  border-radius: 18px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  color: var(--text-secondary);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 26px rgba(31, 41, 55, 0.1);
  border-color: rgba(244, 170, 191, 0.55);
  background: rgba(249, 215, 222, 0.6);
}

.contact-card p {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-arrow {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

.availability-pill {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(249, 215, 222, 0.6);
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.contact-form {
  background: rgba(249, 215, 222, 0.45);
  border: 1px solid rgba(244, 170, 191, 0.2);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.08);
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.form-row label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.input,
.textarea {
  width: 100%;
  border: 1px solid rgba(31, 41, 55, 0.12);
  border-radius: 12px;
  padding: 10px 12px;
  font: inherit;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 12px rgba(31, 41, 55, 0.05);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.textarea {
  resize: vertical;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(244, 170, 191, 0.2);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-weight: 600;
  color: var(--text-primary);
  background: linear-gradient(180deg, #f6b9c9 0%, var(--accent) 100%);
  box-shadow: 0 10px 22px rgba(31, 41, 55, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(31, 41, 55, 0.15);
  filter: brightness(1.02);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  filter: none;
}

.privacy-note {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 0.86rem;
}

.form-status {
  margin-top: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  min-height: 1.2em;
}

@media (max-width: 1024px) {
  .site-header {
    padding: 20px 40px;
  }

  .hero {
    padding: 30px 40px 70px;
  }

  .section {
    padding: 30px 40px 60px;
  }

  .contact {
    padding: 30px 40px 60px;
  }
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: left;
  }

  .hero-visual {
    width: 100%;
  }

  .photo-frame {
    width: 300px;
    height: 300px;
  }

  .badge {
    right: calc(50% - 20px);
  }

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

  .contact-cards {
    grid-template-columns: 1fr;
  }

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

  .case-study-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    padding: 18px 20px;
  }

  .nav {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero {
    padding: 30px 20px 60px;
  }

  .section {
    padding: 28px 20px 50px;
  }

  .contact {
    padding: 28px 20px 50px;
  }

  .photo-frame {
    width: 260px;
    height: 260px;
  }
}
.timeline-item {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.timeline-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.08);
}

.timeline-dot {
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.08);
  background: #f6b7c8;
}
.btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(31, 41, 55, 0.12);
  background-color: #f3a0b7;
}

@media (max-width: 768px) {
  .nav {
    justify-content: center;
    text-align: center;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    font-size: 0.86rem;
    line-height: 1.35;
  }

  .hero {
    text-align: center;
    padding-left: 22px;
    padding-right: 22px;
    gap: 36px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero h2 {
    font-size: 1.3rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .hero-description {
    margin-bottom: 18px;
    line-height: 1.55;
  }

  .contact-list {
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
  }

  .contact-item {
    width: 100%;
    justify-content: center;
    text-align: left;
  }

  .contact-item span:last-child {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
