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

:root {
  --primary-bg: #fafafa;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --accent-gold: #c9a961;
  --border: #e5e5e5;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 1.5rem 4rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
}

.navbar .nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.navbar .nav-links a {
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

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

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

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 101;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(250, 250, 250, 0.98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 99;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-links {
  list-style: none;
  text-align: center;
}

.mobile-menu-links li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.mobile-menu.active .mobile-menu-links li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.active .mobile-menu-links li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-menu.active .mobile-menu-links li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-menu.active .mobile-menu-links li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-menu.active .mobile-menu-links li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu-links a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mobile-social {
  position: absolute;
  bottom: 4rem;
  display: flex;
  gap: 2rem;
}

.mobile-social a {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 1;
}

.hero,
.hero-content {
  max-width: 100%;
  overflow-x: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 0 2rem;
}

.hero-animate {
  overflow: hidden;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.3s;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.6s;
}

.hero-description {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeUp 1s ease forwards 0.9s;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.2s;
}

.btn {
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid white;
  background: transparent;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn:hover {
  background: white;
  color: var(--text-primary);
}

.btn-primary:hover {
  background: transparent;
  color: white;
}

.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  opacity: 0;
  animation: fadeUp 1s ease forwards 1.5s;
  will-change: transform, opacity;
  z-index: 2;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title,
.hero-subtitle,
.hero-description,
.hero-cta,
.scroll-indicator {
  transform: translateY(30px);
}
/* Intro Section */
.intro-section {
  padding: 6rem 4rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.intro-text {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.intro-signature {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  color: var(--accent-gold);
}

/* Section Styling */
section {
  scroll-margin-top: 100px;
}

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

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Portfolio Section */
.portfolio-section {
  padding: 8rem 4rem;
  max-width: 1600px;
  margin: 0 auto;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem 3rem;
}

.portfolio-item {
  position: relative;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.portfolio-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-image-wrapper {
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.portfolio-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-image {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.view-project {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  padding: 1rem 2rem;
  border: 1px solid white;
  background: transparent;
  transition: all 0.3s ease;
}

.portfolio-item:hover .view-project {
  background: white;
  color: var(--text-primary);
}

.portfolio-info {
  text-align: left;
}

.portfolio-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.portfolio-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  letter-spacing: 0.03em;
}

.portfolio-role {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-top: 0.5rem;
}

/* About Section */
.about-section {
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-bottom: 6rem;
}

.about-image {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.about-text-content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* Philosophy */
.philosophy-section {
  padding: 6rem 4rem;
  background: white;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--text-primary);
  margin-bottom: 2rem;
  font-style: italic;
}

.philosophy-text {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Expertise */
.expertise-section {
  padding: 6rem 4rem;
  background: white;
  max-width: 1200px;
  margin: 0 auto;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
}

.expertise-item {
  text-align: center;
  padding: 2rem;
}

.expertise-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.expertise-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.expertise-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CLIENTS SECTION */

.clients-section {
  padding: 4rem 1.5rem;
  background: var(--warm-white);
}

.clients-grid {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 3rem;
  align-items: center;
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 0.3s ease;
}

.client-logo:hover {
  transform: translateY(-5px);
}

.client-logo img {
  max-width: 90px;
  height: auto;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Contact Section */
.contact-section {
  padding: 8rem 4rem;
  background: #f5efe6;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.contact-info h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.contact-text {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.contact-details {
  margin-bottom: 3rem;
}

.contact-detail-item {
  margin-bottom: 1.5rem;
}

.contact-detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

.contact-detail-value {
  font-family: serif;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.contact-detail-value a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail-value a:hover {
  color: var(--accent-gold);
}

.social-link {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.social-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.social-link:hover {
  color: var(--accent-gold);
}

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

/* Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.5);
  padding: 3rem;
  border: 1px solid #d4c5b0;
}

.form-group {
  margin-bottom: 2rem;
}

label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

input,
textarea {
  width: 100%;
  padding: 1rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #d4c5b0;
  transition: all 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: white;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.submit-button {
  width: 100%;
  padding: 1.2rem;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--text-primary);
  color: white;
  border: 1px solid var(--text-primary);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  background: transparent;
  color: var(--text-primary);
}

.form-message {
  display: none;
  padding: 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  border: 1px solid var(--accent-gold);
  background: rgba(201, 169, 97, 0.1);
  color: var(--text-primary);
}

.form-message.show {
  display: block;
}

.contact-detail-value i,
.contact-detail-value .fa,
.contact-detail-value .fas {
  margin-right: 0.5rem;
  vertical-align: middle;
}

/* Project Detail Modal */
.project-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--primary-bg);
  z-index: 1000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.project-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-close {
  position: fixed;
  top: 2rem;
  right: 4rem;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid var(--text-primary);
  cursor: pointer;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--text-primary);
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  transition: background 0.3s ease;
}

.modal-close:hover::before,
.modal-close:hover::after {
  background: white;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.project-detail-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 4rem 6rem;
}

.project-hero-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  margin-bottom: 4rem;
}

.project-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  text-align: center;
}

.project-detail-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.project-detail-meta {
  display: flex;
  gap: 3rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.project-meta-item {
  text-align: center;
}

.project-meta-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.project-meta-value {
  font-size: 1rem;
  color: var(--text-primary);
}

.project-detail-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
}

.project-images-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 4rem;
}

.project-detail-image {
  width: 100%;
  height: auto;
}

.project-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}

.nav-project-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-project-btn:hover {
  color: var(--accent-gold);
}

.nav-project-btn span {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

/* Projects Credit*/
.project-credits {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  opacity: 0.85;
}

.project-credits p {
  margin: 0.25rem 0;
}

.project-credits span {
  font-weight: 500;
  margin-right: 0.5rem;
  opacity: 0.7;
}

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

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

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

.footer-right {
  display: flex;
  justify-content: flex-end;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright,
.footer-credit {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    padding: 1.5rem 2.5rem;
  }

  .navbar .nav-links {
    gap: 2rem;
  }
}

@media (max-width: 968px) {
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .contact-info h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1.5rem 2rem;
  }

  .navbar.scrolled {
    padding: 1rem 2rem;
  }

  .navbar .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .intro-section {
    padding: 4rem 2rem;
  }

  .intro-text {
    font-size: 1.1rem;
  }

  .portfolio-section {
    padding: 6rem 2rem;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-section {
    padding: 6rem 2rem;
  }

  .about-text-content h2 {
    font-size: 2.5rem;
  }

  .philosophy-section,
  .expertise-section,
  .clients-section {
    padding: 4rem 2rem;
  }

  .philosophy-quote {
    font-size: 1.5rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .client-logo img {
    filter: grayscale(0%) opacity(1) !important;
  }

  .contact-section {
    padding: 6rem 2rem;
  }

  .contact-info h2 {
    font-size: 2.5rem;
  }

  .contact-form-wrapper {
    padding: 2rem;
  }

  .mobile-menu-links a {
    font-size: 2rem;
  }

  .footer {
    padding: 3rem 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-right {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .modal-close {
    top: 1.5rem;
    right: 2rem;
    width: 40px;
    height: 40px;
  }

  .project-detail-content {
    padding: 6rem 2rem 4rem;
  }

  .project-hero-image {
    height: 50vh;
    margin-bottom: 3rem;
  }

  .project-detail-title {
    font-size: 2.5rem;
  }

  .project-detail-meta {
    gap: 2rem;
  }

  .project-navigation {
    flex-direction: column;
    gap: 2rem;
  }
}
