/* =============================================
   CSS Custom Properties
   ============================================= */
:root {
  --orange-400: #FD853A;
  --orange-300: #FEB273;
  --gray-900: #171717;
  --gray-700: #344054;
  --gray-300: #D0D5DD;
  --white: #ffffff;
  --font-display: 'Urbanist', -apple-system, Roboto, Helvetica, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, Roboto, Helvetica, sans-serif;
  --section-py: 100px;
  --container-width: 1298px;
  --nav-height: 86px;
  --radius-pill: 50px;
}

/* =============================================
   Reset & Base
   ============================================= */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =============================================
   Typography
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
}

/* =============================================
   HEADER / NAVBAR
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px 0;
  background: var(--white);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-width);
  height: var(--nav-height);
  padding: 0 10px;
  background: var(--gray-900);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(7.5px);
  position: relative;
}

.nav-group {
  display: flex;
  align-items: center;
}

.nav-link {
  display: flex;
  padding: 14px 28px;
  justify-content: center;
  align-items: center;
  border-radius: 60px;
  color: var(--white);
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 400;
  letter-spacing: -0.3px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
  background: var(--orange-400);
  font-weight: 700;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  flex-shrink: 0;
}

.logo-icon-svg {
  flex-shrink: 0;
}

.logo-text-svg {
  flex-shrink: 0;
}

/* Hamburger toggle - hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 10px;
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  max-width: var(--container-width);
  background: var(--gray-900);
  border-radius: 0 0 24px 24px;
  padding: 12px 20px 20px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-menu.open {
  max-height: 400px;
  padding: 12px 20px 20px;
}

.mobile-nav-link {
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.2s;
}

.mobile-nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
  padding: 40px 16px 0;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

/* Left column */
.hero-testimonial {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 200px;
  padding-left: 32px;
}

.testimonial-quote-icon {
  flex-shrink: 0;
}

.testimonial-body {
  color: var(--gray-700);
  font-size: clamp(14px, 1.2vw, 20px);
  font-weight: 500;
  letter-spacing: -0.3px;
  line-height: 1.5;
  max-width: 220px;
}

/* Center column */
.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.hero-greeting-wrap {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  position: relative;
  margin-bottom: 8px;
}

.greeting-badge {
  display: inline-flex;
  padding: 10px 26px;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 1.3px solid var(--gray-900);
  font-size: clamp(15px, 1.3vw, 20px);
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--gray-900);
}

.greeting-sparkle {
  margin-top: -4px;
  flex-shrink: 0;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6.6vw, 96px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.015em;
  text-align: center;
  color: var(--gray-900);
}

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

.hero-decorative-squiggle {
  display: block;
  margin-top: 8px;
  align-self: flex-start;
  margin-left: 8px;
}

/* Portrait image area */
.hero-portrait-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: -20px;
}

.portrait-semicircle {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(280px, 56vw, 812px);
  aspect-ratio: 2 / 1;
  background: var(--orange-300);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.portrait-photo {
  position: relative;
  z-index: 1;
  width: clamp(260px, 46vw, 660px);
  height: auto;
  object-fit: cover;
  display: block;
}

/* CTA bar */
.hero-cta-bar {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--white);
  border-radius: var(--radius-pill);
  padding: 8px;
  backdrop-filter: blur(7.5px);
  position: relative;
  z-index: 2;
  margin-top: -42px;
  margin-bottom: 0;
}

/* Right column */
.hero-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 220px;
  padding-right: 32px;
}

.stars-row {
  display: flex;
  align-items: center;
  gap: 2px;
}

.experience-years {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.3vw, 47px);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--gray-900);
}

.experience-label {
  font-size: clamp(14px, 1.1vw, 20px);
  font-weight: 400;
  letter-spacing: -0.3px;
  color: var(--gray-900);
}

/* =============================================
   SHARED BUTTON STYLES
   ============================================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: -0.4px;
  transition: opacity 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}

.cta-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.cta-portfolio {
  padding: 12px 24px;
  background: var(--orange-400);
  border: 0.5px solid var(--gray-300);
  color: var(--white);
  font-size: clamp(16px, 1.4vw, 22px);
}

.cta-hire {
  padding: 12px 28px;
  color: var(--white);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 300;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.page-section {
  padding: var(--section-py) 16px;
}

.section-container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 40px;
  background: rgba(253, 133, 58, 0.1);
  color: var(--orange-400);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.centered-title {
  text-align: center;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-700);
  font-size: clamp(15px, 1.2vw, 18px);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.text-orange {
  color: var(--orange-400);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: #FAFAFA;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 24px;
}

.about-badge-card {
  position: absolute;
  bottom: 32px;
  right: -20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-badge-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--orange-400);
  line-height: 1;
}

.about-badge-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  text-align: center;
}

.about-content-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-description {
  color: var(--gray-700);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid var(--gray-300);
  border-bottom: 1px solid var(--gray-300);
  margin: 8px 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--orange-400);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  padding: 36px 28px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  box-shadow: 0 16px 48px rgba(253, 133, 58, 0.12);
  transform: translateY(-4px);
}

.service-icon-wrap {
  margin-bottom: 20px;
}

.service-title {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.service-desc {
  color: var(--gray-700);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
}

/* =============================================
   RESUME SECTION
   ============================================= */
.resume-section {
  background: #FAFAFA;
}

.resume-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 56px;
}

.resume-col-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange-400);
  display: inline-block;
}

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--gray-300);
}

.timeline-item {
  display: flex;
  gap: 24px;
  padding-bottom: 36px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange-400);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange-400);
  flex-shrink: 0;
  margin-top: 4px;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
}

.timeline-year {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-400);
  background: rgba(253, 133, 58, 0.1);
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}

.timeline-role {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 4px;
}

.timeline-company {
  font-size: 14px;
  font-weight: 500;
  color: var(--orange-400);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: clamp(13px, 1vw, 15px);
  color: var(--gray-700);
  line-height: 1.7;
}

/* Skills */
.skills-block {
  margin-top: 48px;
}

.skill-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.skill-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  width: 130px;
  flex-shrink: 0;
}

.skill-bar {
  flex: 1;
  height: 8px;
  background: var(--gray-300);
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  width: var(--fill, 0%);
  background: var(--orange-400);
  border-radius: 4px;
  transition: width 1s ease;
}

/* =============================================
   PROJECTS SECTION
   ============================================= */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 24px;
}

.project-card--large {
  grid-column: span 2;
}

.project-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 20px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.project-card:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.project-thumbnail {
  background: var(--card-bg, #eee);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-card--large .project-thumbnail {
  aspect-ratio: 16 / 7;
}

.project-placeholder-art {
  opacity: 0.9;
}

.project-info {
  padding: 24px;
}

.project-category {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-400);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: block;
  margin-bottom: 8px;
}

.project-name {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
}

.project-desc {
  font-size: clamp(13px, 1vw, 14px);
  color: var(--gray-700);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange-400);
  font-size: 14px;
  font-weight: 600;
  transition: gap 0.2s ease;
}

.project-link:hover {
  gap: 10px;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: #FAFAFA;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--gray-900);
  border-radius: 24px;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--white);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(253, 133, 58, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 12px;
  color: var(--gray-300);
  font-weight: 500;
  margin-bottom: 2px;
}

.contact-detail-value {
  color: var(--white);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 500;
}

.contact-social-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-link:hover {
  background: var(--orange-400);
}

/* Form styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s ease;
  resize: vertical;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--orange-400);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #A0AEC0;
}

.submit-btn {
  align-self: flex-start;
  border: none;
}

.form-success-msg {
  display: none;
  color: #22C55E;
  font-weight: 600;
  font-size: 15px;
}

.form-success-msg.visible {
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--gray-900);
  padding: 60px 16px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--orange-400);
}

.footer-bottom {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy,
.footer-credit {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* =============================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================= */
@media (max-width: 1024px) {
  .nav-link {
    padding: 10px 16px;
    font-size: 15px;
  }

  .nav-logo {
    padding: 10px 16px;
  }

  .hero-section {
    min-height: auto;
    padding-top: 20px;
  }

  .hero-testimonial {
    padding-bottom: 120px;
    padding-left: 16px;
  }

  .testimonial-body {
    max-width: 160px;
    font-size: 14px;
  }

  .hero-rating {
    padding-bottom: 140px;
    padding-right: 16px;
  }

  .about-layout {
    gap: 48px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .resume-layout {
    gap: 48px;
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-card--large {
    grid-column: span 2;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================= */
@media (max-width: 768px) {
  :root {
    --section-py: 60px;
    --nav-height: 66px;
  }

  /* Nav */
  .nav-group {
    display: none;
  }

  .nav-logo {
    margin: 0 auto;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  /* Hero */
  .hero-section {
    padding: 24px 16px 0;
    min-height: auto;
    align-items: stretch;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .hero-testimonial {
    order: 3;
    padding: 32px 0 0;
    align-items: flex-start;
    width: 100%;
  }

  .testimonial-body {
    max-width: 100%;
    font-size: 15px;
  }

  .hero-main {
    order: 1;
    width: 100%;
  }

  .hero-headline {
    font-size: clamp(40px, 10vw, 64px);
  }

  .hero-rating {
    order: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 24px 0 0;
  }

  .hero-cta-bar {
    margin-top: -32px;
  }

  /* Portrait */
  .portrait-semicircle {
    width: clamp(260px, 85vw, 480px);
  }

  .portrait-photo {
    width: clamp(240px, 76vw, 440px);
  }

  /* About */
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-badge-card {
    right: 16px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Resume */
  .resume-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .project-card--large {
    grid-column: span 1;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-links {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .hero-headline {
    font-size: clamp(36px, 11vw, 52px);
  }

  .hero-cta-bar {
    width: 100%;
  }

  .cta-portfolio {
    flex: 1;
    justify-content: center;
  }

  .cta-hire {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .service-card {
    padding: 24px 20px;
  }

  .contact-info-card {
    padding: 28px 20px;
  }
}
