@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Design tokens */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 8%);
  --primary: hsl(82, 78%, 35%);
  --primary-foreground: hsl(0, 0%, 8%);
  --secondary: hsl(0, 0%, 96%);
  --secondary-foreground: hsl(0, 0%, 8%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 45%);
  --border: hsl(0, 0%, 90%);
  --card: hsl(0, 0%, 100%);
  --charcoal-light: hsl(0, 0%, 25%);
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
  border-color: var(--border);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--foreground);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--primary);
  color: var(--primary-foreground);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .section {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

.section-alt {
  background: hsl(0, 0%, 96% / 0.3);
}

.section-head {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .section-head {
    margin-bottom: 4rem;
  }
}

.section-label {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-desc {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s, border 0.3s, padding 0.3s;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.header.scrolled {
  background: hsl(0, 0%, 100% / 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

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

.logo {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--foreground);
  text-decoration: none;
}

.logo-accent {
  color: var(--primary);
}

.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-desktop a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
  }

  .nav-desktop a:hover {
    color: var(--foreground);
  }

  .nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: var(--primary);
    transition: width 0.3s;
  }

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

.btn-contact {
  display: none;
}

@media (min-width: 768px) {
  .btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    background: var(--foreground);
    color: var(--background);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background 0.2s;
  }

  .btn-contact:hover {
    background: var(--charcoal-light);
  }
}

.btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  color: var(--foreground);
  background: none;
  border: none;
  cursor: pointer;
}

@media (min-width: 768px) {
  .btn-menu {
    display: none;
  }
}

.btn-menu .icon-close {
  display: none;
}

.btn-menu[aria-expanded="true"] .icon-menu {
  display: none;
}

.btn-menu[aria-expanded="true"] .icon-close {
  display: block;
}

.nav-mobile {
  position: fixed;
  left: 0;
  right: 0;
  top: 60px;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.3s, visibility 0.3s;
  opacity: 0;
  visibility: hidden;
}

.nav-mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile .container {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nav-mobile a {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-mobile a:hover {
  color: var(--foreground);
}

.nav-mobile .btn-contact-mobile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  background: hsl(0, 0%, 8%);
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 9999px;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: background 0.2s;
}

.nav-mobile .btn-contact-mobile:hover {
  background: hsl(0, 0%, 25%);
  color: #fff;
}

/* Hero */
.hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 3rem;
}

.hero-content {
  max-width: 56rem;
}

.hero-label {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 1rem 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin: 0 0 1.5rem 0;
  animation: fadeIn 0.6s ease-out 0.1s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-title-accent {
  display: block;
  color: var(--primary);
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 0 2rem 0;
  line-height: 1.6;
  animation: fadeIn 0.6s ease-out 0.2s forwards;
  opacity: 0;
}

@media (min-width: 768px) {
  .hero-desc {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  animation: fadeIn 0.6s ease-out 0.3s forwards;
  opacity: 0;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--foreground);
  color: var(--background);
}

.btn-primary:hover {
  background: var(--charcoal-light);
}

.link-underline {
  color: var(--foreground);
  font-weight: 500;
  text-decoration: none;
  position: relative;
}

.link-underline::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s;
}

.link-underline:hover::after {
  width: 100%;
}

.hero-scroll {
  margin-top: auto;
  padding-top: 3rem;
}

.scroll-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.scroll-hint:hover {
  color: var(--foreground);
}

.scroll-arrow {
  animation: bounceSubtle 2s ease-in-out infinite;
}

@keyframes bounceSubtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Work / Case cards */
.work-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

button.case-card {
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  color: inherit;
}

button.case-card:focus {
  outline: none;
}

button.case-card:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.case-card {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: border 0.5s ease-out, box-shadow 0.5s ease-out, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .case-card {
    padding: 2rem;
  }
}

.case-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.case-card-inner {
  position: relative;
}

.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, transparent, hsl(82 78% 35% / 0.05));
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.case-card:hover::before {
  opacity: 1;
}

.case-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.case-category {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.case-highlight {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  background: hsl(82 78% 35% / 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
}

.case-title {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0 0 0.75rem 0;
  transition: color 0.3s;
}

@media (min-width: 768px) {
  .case-title {
    font-size: 1.5rem;
  }
}

.case-card:hover .case-title {
  color: var(--primary);
}

.case-desc {
  color: var(--muted-foreground);
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.case-tags span {
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--secondary);
  color: var(--secondary-foreground);
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}

.case-card:hover .case-tags span {
  border-color: var(--border);
}

.case-hint {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.case-hint-arrow {
  transition: transform 0.2s ease;
}

.case-card:hover .case-hint-arrow,
.case-card:focus-visible:not(:active) .case-hint-arrow {
  transform: translateX(4px);
}

/* Project modal */
body.modal-open {
  overflow: hidden;
}

.project-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.project-modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.project-modal__backdrop {
  position: absolute;
  inset: 0;
  background: hsl(0, 0%, 0% / 0.45);
  cursor: pointer;
}

.project-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1080px;
  max-height: min(90vh, 900px);
  overflow-y: auto;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.18);
  transform: translateY(10px) scale(0.99);
  transition: transform 0.22s ease;
}

.project-modal.is-open .project-modal__panel {
  transform: translateY(0) scale(1);
}

.project-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--foreground);
  font-size: 1.5rem;
  line-height: 0;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.project-modal__close:hover {
  background: transparent;
  opacity: 0.65;
}

.project-modal__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.project-modal__grid {
  display: grid;
  gap: 2rem;
  padding: 3.25rem 1.5rem 2rem;
}

@media (min-width: 900px) {
  .project-modal__grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
    gap: 2.5rem;
    padding: 3.25rem 2rem 2.5rem;
  }
}

.project-modal__category {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.5rem 0;
}

.project-modal__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .project-modal__title {
    font-size: 1.75rem;
  }
}

.project-modal__body {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.65;
}

.project-modal__body p {
  margin: 0 0 1rem 0;
}

.project-modal__body p:last-child {
  margin-bottom: 0;
}

.project-modal__body h3,
.modal-subheading {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 1.5rem 0 0.5rem 0;
}

.project-modal__body h3:first-child,
.project-modal__body .modal-subheading:first-child {
  margin-top: 0;
}

.project-modal__body ul {
  margin: 0 0 1rem 0;
  padding-left: 1.25rem;
}

.project-modal__media-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem 0;
}

.project-modal__gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-modal__thumb {
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  overflow: hidden;
  background: var(--secondary);
  cursor: zoom-in;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.project-modal__thumb:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.08);
}

.project-modal__thumb:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.project-modal__thumb img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.project-modal__placeholder {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--secondary);
  border: 1px dashed var(--border);
  border-radius: 0.5rem;
  color: var(--muted-foreground);
  font-size: 0.875rem;
  text-align: center;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox.is-open:not([hidden]) {
  display: flex !important;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: hsl(0, 0%, 0% / 0.85);
  cursor: pointer;
}

.lightbox__backdrop:hover,
.lightbox__backdrop:focus {
  background: hsl(0, 0%, 0% / 0.85);
}

.lightbox__img {
  position: relative;
  z-index: 1;
  max-width: min(95vw, 1200px);
  max-height: 90vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.25rem;
  box-shadow: 0 20px 60px rgb(0 0 0 / 0.4);
}

.lightbox__close {
  position: fixed;
  top: calc(1rem - 5px);
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-size: 1.75rem;
  line-height: 0;
  cursor: pointer;
}

.lightbox__close:hover,
.lightbox__close:focus {
  background: transparent;
  color: #000;
  opacity: 0.75;
}

.lightbox__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* Skills */
.skills-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 640px) {
  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .skills-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.skill-item {
  transition: color 0.3s;
}

.skill-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.skill-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin: 0;
  transition: color 0.3s;
}

.skill-item:hover .skill-name {
  color: var(--primary);
}

.skill-level {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.skill-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0 0 0.75rem 0;
}

.skill-bar {
  height: 6px;
  background: var(--secondary);
  border-radius: 9999px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  background: linear-gradient(to right, var(--primary), hsl(82 78% 35% / 0.7));
  border-radius: 9999px;
  transition: width 0.7s ease-out;
}

/* About */
.section-about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(ellipse at top right, hsl(82 78% 35% / 0.05), transparent);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(-50%, 50%);
  pointer-events: none;
}

.about-grid {
  display: grid;
  gap: 3rem;
  position: relative;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.about-text p {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-num {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.25rem 0;
}

@media (min-width: 768px) {
  .stat-num {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

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

.about-image-frame {
  aspect-ratio: 1;
  background: linear-gradient(to bottom right, var(--secondary), hsl(82 78% 35% / 0.1));
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

.about-image-frame::before {
  content: '';
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 100%;
  height: 100%;
  border: 2px solid hsl(82 78% 35% / 0.3);
  border-radius: 1rem;
  z-index: -1;
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact */
.section-contact {
  position: relative;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(ellipse at bottom left, hsl(82 78% 35% / 0.05), transparent);
  border-radius: 50%;
  filter: blur(48px);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.contact-inner {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}

.contact-title {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .contact-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-title {
    font-size: 3rem;
  }
}

.contact-desc {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  max-width: 36rem;
  margin: 0 auto 2.5rem auto;
  line-height: 1.7;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .contact-actions {
    flex-direction: row;
  }
}

.btn-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--foreground);
  color: var(--background);
  font-weight: 500;
  font-size: 1.125rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-email:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  background: var(--charcoal-light);
}

.btn-arrow {
  transition: transform 0.3s;
}

.btn-email:hover .btn-arrow {
  transform: translate(2px, -2px);
}

.contact-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--foreground);
  color: var(--foreground);
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: var(--foreground);
  color: var(--background);
}

.btn-outline-muted {
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline-muted:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 2.5rem 0 0 0;
}

/* Footer */
.footer {
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--foreground);
}
