/* ==========================================================================
   HANEIRO STUDIO - Core Stylesheet
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Colors */
  --bg-dark: #07050f;
  --bg-card: rgba(15, 11, 28, 0.45);
  --bg-card-hover: rgba(22, 16, 42, 0.6);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-glow: rgba(168, 85, 247, 0.2);
  
  --primary: #a855f7;       /* Glowing Violet */
  --secondary: #ec4899;     /* Deep Pink */
  --tertiary: #06b6d4;      /* Ice Cyan */
  
  --text-primary: #ffffff;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  /* Gradients */
  --gradient-rainbow: linear-gradient(135deg, var(--tertiary), var(--primary), var(--secondary));
  --gradient-purple-pink: linear-gradient(135deg, var(--primary), var(--secondary));
  --gradient-dark: linear-gradient(180deg, #07050f 0%, #0c081d 100%);
  
  /* Fonts */
  --font-title: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--gradient-dark);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Decorative Background Elements */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  mix-blend-mode: screen;
}

.orb-1 {
  top: -10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, rgba(0,0,0,0) 70%);
  animation: float 20s infinite alternate ease-in-out;
}

.orb-2 {
  top: 40%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, rgba(0,0,0,0) 70%);
  animation: float 25s infinite alternate-reverse ease-in-out;
}

.orb-3 {
  bottom: 10%;
  left: 10%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, rgba(0,0,0,0) 70%);
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-50px) scale(1.1); }
}

/* Typography & Layout */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

p {
  color: var(--text-secondary);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  max-width: 650px;
  margin-bottom: 4.5rem;
}

.section-badge {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #d8b4fe;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(135deg, #ffffff 30%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
  background: rgba(7, 5, 15, 0.65);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

header.scrolled {
  background: rgba(7, 5, 15, 0.85);
  padding: 0.75rem 0;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-container {
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo svg {
  width: 28px;
  height: 28px;
  fill: url(#logo-grad);
  transition: var(--transition-smooth);
}

.logo:hover svg {
  transform: rotate(-15deg) scale(1.1);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-purple-pink);
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: var(--text-primary);
}

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

.nav-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.nav-btn:hover {
  background: var(--gradient-purple-pink);
  border-color: transparent;
  box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero-title span {
  display: block;
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 8s linear infinite;
  background-size: 200% auto;
}

@keyframes shine {
  to { background-position: 200% center; }
}

.hero-desc {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: var(--text-secondary);
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--gradient-rainbow);
  background-size: 150% 150%;
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.5);
  transform: translateY(-3px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* Glassmorphic Showcase Frame */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.showcase-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.8),
              0 0 50px rgba(168, 85, 247, 0.1);
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  transition: var(--transition-smooth);
}

.showcase-wrapper:hover {
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-5px);
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 35px 70px -10px rgba(0, 0, 0, 0.9),
              0 0 60px rgba(168, 85, 247, 0.25);
}

.showcase-frame {
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 16/9;
  background: #110d24;
  position: relative;
}

.game-board-mockup {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, #0c081d, #05040a);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-wrapper:hover .game-board-mockup {
  transform: scale(1.03);
}

/* Subtle grid line pattern overlay */
.game-board-mockup::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 16px 16px;
  pointer-events: none;
}

.mockup-svg {
  width: 100%;
  height: 100%;
  z-index: 1;
}

.mockup-badge-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--tertiary);
  z-index: 2;
  letter-spacing: 0.05em;
  pointer-events: none;
}

.mockup-status-overlay {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: monospace;
  font-size: 0.7rem;
  color: var(--secondary);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
}

.mockup-status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  position: relative;
}

.mockup-status-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--secondary);
  animation: pulse-ring 1.5s infinite;
}

.showcase-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(7, 5, 15, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--tertiary);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--tertiary);
  animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

.showcase-tag span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* (Services Section styles removed) */

/* Works Section */
.works-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.work-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #110d24;
  border: 1px solid var(--border-color);
  aspect-ratio: 4/3;
  cursor: pointer;
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(400px circle at var(--x, 0px) var(--y, 0px), rgba(168, 85, 247, 0.12), transparent 80%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
}

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

.work-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Fallback background styles with beautiful CSS gradients as dynamic portfolio images */
.work-bg-1 {
  background: radial-gradient(circle at 20% 20%, #4f46e5, #000 80%);
}
.work-bg-2 {
  background: radial-gradient(circle at 80% 80%, #db2777, #030008 80%);
}
.work-bg-3 {
  background: radial-gradient(circle at 50% 10%, #0891b2, #000 80%);
}
.work-bg-4 {
  background: radial-gradient(circle at 10% 90%, #7c3aed, #020006 80%);
}

.work-card:hover .work-card-bg {
  transform: scale(1.06);
}

.work-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(7, 5, 15, 0) 30%, rgba(7, 5, 15, 0.95) 90%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3rem;
  transition: var(--transition-smooth);
  z-index: 2;
}

.work-details {
  transform: translateY(20px);
  transition: var(--transition-smooth);
}

.work-card:hover .work-details {
  transform: translateY(0);
}

.work-category {
  font-family: var(--font-title);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tertiary);
  margin-bottom: 0.5rem;
}

.work-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.work-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  opacity: 0;
  transition: var(--transition-smooth);
  max-width: 90%;
}

.work-card:hover .work-desc {
  opacity: 1;
}

.work-icon-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: var(--transition-smooth);
  color: #fff;
}

.work-card:hover .work-icon-btn {
  opacity: 1;
  transform: translate(0, 0);
}

.work-icon-btn:hover {
  background: #fff;
  color: var(--bg-dark);
}

/* About / Philosophy Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-graphics {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 450px;
}

/* Interactive SVG color wheel/feather graphic */
.about-svg-container {
  width: 100%;
  max-width: 400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 30px rgba(168, 85, 247, 0.15));
}

.about-svg-container svg {
  width: 100%;
  height: 100%;
}

.about-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  line-height: 1.25;
}

.about-content p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.highlight-item {
  border-left: 3px solid var(--primary);
  padding-left: 1.25rem;
}

.highlight-num {
  font-family: var(--font-title);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-purple-pink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.highlight-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Contact Section (Centered Variant) */
.contact-box-centered {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 32px;
  padding: 5rem 4rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6),
              0 0 50px rgba(168, 85, 247, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-box-centered::before {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02) 40%, rgba(168,85,247,0.1) 80%);
  z-index: -1;
  pointer-events: none;
}

.contact-box-centered .section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.contact-box-centered .section-desc {
  max-width: 600px;
  margin: 0 auto 3.5rem auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.contact-email-container {
  margin-bottom: 3.5rem;
}

.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-title);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  padding: 0.5rem 1.5rem;
  position: relative;
  transition: var(--transition-smooth);
}

.contact-email-link svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
  transition: var(--transition-smooth);
}

.contact-email-link span {
  background: linear-gradient(135deg, #ffffff 60%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-email-link:hover {
  transform: scale(1.03);
}

.contact-email-link:hover svg {
  transform: rotate(-10deg) scale(1.1);
  color: var(--secondary);
}

.contact-email-link:hover span {
  background: var(--gradient-rainbow);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-meta-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1.5rem 0;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.meta-item svg {
  color: var(--tertiary);
}

.contact-socials-centered {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.social-link:hover {
  background: var(--gradient-purple-pink);
  border-color: transparent;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(168, 85, 247, 0.3);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Section */
footer {
  border-top: 1px solid var(--border-color);
  padding: 4rem 0 3rem 0;
  background: #05040a;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.footer-link:hover {
  color: var(--text-primary);
}

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

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.credits {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.credits a {
  color: var(--text-secondary);
}

.credits a:hover {
  color: var(--primary);
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero {
    min-height: auto;
    padding: 140px 0 60px 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .showcase-wrapper {
    transform: none !important;
    max-width: 600px;
    margin: 0 auto;
  }
  

  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .about-graphics {
    order: -1;
    height: 350px;
  }
  
  .contact-box-centered {
    padding: 3.5rem 2rem;
  }
  
  .contact-email-link {
    font-size: 2.2rem;
  }
  
  .contact-email-link svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 5rem 0;
  }
  
  .section-title {
    font-size: 2.4rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: rgba(7, 5, 15, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 3rem 0;
    gap: 2rem;
    border-bottom: 1px solid var(--border-color);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .menu-toggle {
    display: block;
  }
  

  
  .works-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-box-centered {
    padding: 3rem 1.5rem;
  }
  
  .contact-email-link {
    font-size: 1.6rem;
    gap: 0.75rem;
  }
  
  .contact-email-link svg {
    width: 24px;
    height: 24px;
  }
  
  .contact-meta-row {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
