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

:root {
  /* Black & White Theme — Light Mode */
  --bg:            #ffffff;
  --bg-alt:        #f5f5f7;
  --bg-card:       #ffffff;
  --bg-card-hover: #fcfcfd;

  --border:        rgba(0, 0, 0, 0.07);
  --border-hover:  rgba(0, 0, 0, 0.18);

  --text:          #111111;
  --text-muted:    #555555;
  --text-dim:      #888888;

  --accent:        #000000;
  --accent-dim:    rgba(0, 0, 0, 0.04);
  --accent-glow:   rgba(0, 0, 0, 0.08);
  --green:         #1b5e20;
  --green-dim:     rgba(27, 94, 32, 0.06);

  --font-sans:  'Inter', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', 'Fira Code', monospace;

  --radius:     10px;
  --radius-sm:  6px;
  --transition: 0.22s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

/* ===========================
   SCROLLBAR
=========================== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #cccccc; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #888888; }

/* ===========================
   NAVIGATION
=========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 2rem;
  height: 60px;
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), border-bottom var(--transition);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  font-size: 0.825rem;
  color: var(--text-muted);
  font-weight: 400;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.nav-cta {
  padding: 0.35rem 0.9rem;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a.nav-cta:hover {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-muted);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 2rem 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#particleCanvas {
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

/* subtle grid overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 5rem;
  animation: fadeUp 0.8s ease both;
}

/* ===========================
   HERO PHOTO
=========================== */
.hero-photo-wrap {
  flex-shrink: 0;
  position: relative;
  transition: transform var(--transition);
}

.hero-photo-wrap:hover {
  transform: scale(1.02);
}

.hero-photo {
  width: 220px;
  height: 220px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 1px solid var(--border);
  filter: grayscale(20%) contrast(1.05);
  transition: filter var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.hero-photo-wrap:hover .hero-photo {
  filter: grayscale(0%) contrast(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: calc(var(--radius) + 4px);
  pointer-events: none;
}

/* ===========================
   HERO TEXT
=========================== */
.hero-text {
  flex: 1;
  min-width: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.3rem 0.85rem;
  background: var(--green-dim);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  font-size: 0.75rem;
  color: var(--green);
  font-family: var(--font-mono);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero-name {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 0.875rem;
}

.hero-role {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-bottom: 1.25rem;
  min-height: 1.75rem;
}

.role-static {
  color: var(--text-muted);
}

.role-typed {
  color: var(--text);
}

.cursor {
  animation: blink 0.9s step-end infinite;
  color: var(--text-muted);
}

.hero-philosophy {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.1rem;
  max-width: 560px;
  line-height: 1.65;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.775rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  cursor: pointer;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--text);
  color: var(--bg);
  border: 1px solid var(--text);
}

.btn-primary:hover {
  background: #2a2a2a;
  border-color: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.02);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeIn 1.5s 1s both;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.scroll-indicator span {
  font-size: 0.65rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ===========================
   SECTIONS (shared)
=========================== */
.section {
  padding: 72px 2rem;
}

.section-alt {
  background: var(--bg-alt);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
}

.section-sub {
  margin-top: 0.875rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   ABOUT
=========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}

.about-lead {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 1.1rem;
  line-height: 1.75;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.75;
  font-size: 0.9rem;
}

.about-text strong {
  color: var(--text);
  font-weight: 500;
}

.about-card {
  position: sticky;
  top: 80px;
}

.card-inner {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.025);
  transition: box-shadow var(--transition);
}

.card-inner:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.card-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.card-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

/* ===========================
   SKILLS
=========================== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.skill-card:last-child:nth-child(3n + 1) {
  grid-column: 1 / -1;
}

.skills-grid .skill-card:last-child:nth-child(7) {
  grid-column: 1 / -1;
}

.skill-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.skill-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.045);
}

.skill-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.skill-card h3 {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.skill-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.skill-tags span {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  padding: 0.18rem 0.55rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  color: var(--text-muted);
}

/* ===========================
   GROWTH
=========================== */
.growth-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.timeline {
  position: relative;
  padding-left: 1.75rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent);
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

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

.timeline-marker {
  position: absolute;
  left: -1.75rem;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--bg-alt);
  border: 1.5px solid var(--border);
  transition: border-color var(--transition);
}

.timeline-item.active .timeline-marker {
  border-color: rgba(0, 0, 0, 0.4);
  background: rgba(0, 0, 0, 0.06);
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.timeline-item.active .timeline-content {
  border-color: rgba(0, 0, 0, 0.16);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
}

.timeline-content:hover {
  border-color: rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.timeline-date {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.05em;
}

.timeline-content h3 {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.875rem;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.timeline-tags span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  color: var(--text-muted);
}



.growth-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 80px;
}

.growth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.025);
  transition: box-shadow var(--transition);
}

.growth-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.growth-card h4 {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.explore-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.explore-bar {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.explore-bar span {
  font-size: 0.775rem;
  color: var(--text-muted);
}

.bar-track {
  height: 3px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 2px;
  transition: width 1.2s ease;
  width: 0;
}

.growth-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
  margin-top: 0.875rem;
  font-style: italic;
}

.growth-card-alt {
  background: var(--bg-alt);
}

.recognition-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.recognition-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.rec-icon {
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.recognition-item strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}

.recognition-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===========================
   APPROACH
=========================== */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.approach-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.approach-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.045);
}

.approach-number {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 1;
  margin-bottom: 0.875rem;
  letter-spacing: -0.05em;
}

.approach-card h3 {
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.4;
}

.approach-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===========================
   CONTACT
=========================== */
.contact-layout {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 560px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
}

.contact-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px) translateX(3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.045);
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.25rem;
}

.contact-icon {
  width: 38px;
  height: 38px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.15rem;
}

.contact-value {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.contact-arrow {
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  color: var(--text-dim);
  transition: color var(--transition), transform var(--transition);
}

.contact-card:hover .contact-arrow {
  color: var(--text);
  transform: translateX(3px);
}

.contact-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}

/* ===========================
   FOOTER
=========================== */
.footer {
  padding: 1.75rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-mono);
  font-size: 0.825rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.775rem;
  color: var(--text-dim);
}

/* ===========================
   ADMIN TRIGGER
=========================== */
.admin-trigger {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 200;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  opacity: 0.4;
  transition: opacity var(--transition), color var(--transition), border-color var(--transition);
}

.admin-trigger:hover {
  opacity: 1;
  color: var(--text-muted);
  border-color: var(--border-hover);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-philosophy {
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-card {
    position: static;
  }

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

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

  .growth-layout {
    grid-template-columns: 1fr;
  }

  .growth-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

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

  .footer-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }

  .section {
    padding: 56px 1.25rem;
  }

  .hero {
    padding: 88px 1.25rem 64px;
  }

  .hero-photo {
    width: 160px;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
