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

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

body {
  font-family: "Be Vietnam Pro", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #f8f4ed;
  color: #2a2a2a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background-color 0.4s ease, padding 0.4s ease;
}
.nav.scrolled {
  background-color: rgba(248, 244, 237, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(30, 57, 50, 0.08);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-inner {
    padding: 0 1.5rem;
  }
}

.nav-logo {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #1e3932;
}

.nav-links {
  display: flex;
  gap: 3rem;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5a5652;
  align-self: center;
}
.nav-links a:hover {
  color: #1e3932;
}
.nav-links a.nav-contact {
  color: #1e3932;
  padding: 0.5rem 1.25rem;
  border: 1px solid #1e3932;
  transition: all 0.2s ease;
}
.nav-links a.nav-contact:hover {
  background-color: #1e3932;
  color: #f8f4ed;
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  margin-right: -10px;
}
.nav-mobile-toggle span {
  width: 24px;
  height: 1.5px;
  background-color: #1e3932;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .nav-mobile-toggle {
    display: flex;
  }
}

.hero {
  min-height: 100vh;
  background-color: #1e3932;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 90vh;
  }
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4a35a;
  margin-bottom: 2rem;
}

.hero-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 400;
  line-height: 1.1;
  color: #f8f4ed;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(248, 244, 237, 0.7);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #c4a35a;
  color: #152a25;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background-color: #d4b86a;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1px solid rgba(248, 244, 237, 0.3);
  color: #f8f4ed;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}
.btn-secondary:hover {
  border-color: #f8f4ed;
  background-color: rgba(248, 244, 237, 0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-scroll span {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.5);
}
@media (max-width: 768px) {
  .hero-scroll {
    left: 1.5rem;
    bottom: 2rem;
  }
}

.hero-scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, #c4a35a, transparent);
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c4a35a;
  margin-bottom: 1rem;
}

.featured {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  padding: 8rem 4rem;
  background-color: #f8f4ed;
}
@media (max-width: 768px) {
  .featured {
    padding: 4rem 1.5rem;
    gap: 1.5rem;
  }
}

.featured-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.featured-header {
  margin-bottom: 4rem;
}

.featured-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: #1e3932;
  letter-spacing: -0.02em;
}

.featured-subtitle {
  font-size: 1rem;
  color: #5a5652;
  margin-top: 0.5rem;
}

.featured-alt {
  background-color: #f0ebe3;
  padding-top: 6rem;
}

.featured-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 992px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.featured-image {
  position: relative;
  overflow: hidden;
  background-color: #f0ebe3;
  border-radius: 4px;
}
.featured-image img {
  width: 100%;
  transition: transform 0.6s ease;
}
.featured-image:hover img {
  transform: scale(1.02);
}

.featured-info {
  padding: 2rem 0;
}

.featured-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #5a5652;
  margin-bottom: 2rem;
}

.featured-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.featured-tech {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.featured-tech span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  background-color: #f0ebe3;
  color: #5a5652;
  border-radius: 2px;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e3932;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #1e3932;
  transition: all 0.2s ease;
}
.featured-link svg {
  transition: transform 0.2s ease;
}
.featured-link:hover {
  color: #c4a35a;
  border-color: #c4a35a;
}
.featured-link:hover svg {
  transform: translate(3px, -3px);
}

.work {
  padding: 8rem 4rem;
  background-color: #f0ebe3;
}
@media (max-width: 768px) {
  .work {
    padding: 4rem 1.5rem;
  }
}

.work-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.work-header {
  margin-bottom: 4rem;
}

.work-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #1e3932;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.work-subtitle {
  font-size: 1rem;
  color: #5a5652;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}
@media (max-width: 992px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.work-item {
  background-color: #f8f4ed;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.work-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px -20px rgba(30, 57, 50, 0.2);
}

.work-item-link {
  display: block;
}

.work-item-image {
  position: relative;
  overflow: hidden;
  background-color: #f0ebe3;
  aspect-ratio: 16/10;
}
.work-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.work-item:hover .work-item-image img {
  transform: scale(1.05);
}

.work-item-content {
  padding: 2rem;
}
.work-item-content h3 {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e3932;
  margin-bottom: 0.75rem;
}
.work-item-content p {
  font-size: 0.9375rem;
  color: #5a5652;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.work-item-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.work-item-tech span {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.375rem 0.75rem;
  background-color: #f0ebe3;
  color: #5a5652;
  border-radius: 2px;
}

.experiments {
  padding: 8rem 4rem;
  background-color: #1e3932;
}
@media (max-width: 768px) {
  .experiments {
    padding: 4rem 1.5rem;
  }
}

.experiments-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.experiments-header {
  margin-bottom: 4rem;
}
.experiments-header .section-label {
  color: #c4a35a;
}

.experiments-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #f8f4ed;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.experiments-subtitle {
  font-size: 1rem;
  color: rgba(248, 244, 237, 0.6);
}

.experiments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1200px) {
  .experiments-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .experiments-grid {
    grid-template-columns: 1fr;
  }
}

.experiment-item {
  padding: 2.5rem 2rem;
  border: 1px solid rgba(248, 244, 237, 0.15);
  border-radius: 4px;
  transition: all 0.4s ease;
}
.experiment-item:hover {
  background-color: rgba(248, 244, 237, 0.05);
  border-color: #c4a35a;
  transform: translateY(-4px);
}
.experiment-item .experiment-number {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 0.875rem;
  color: #c4a35a;
  display: block;
  margin-bottom: 1.5rem;
}
.experiment-item h3 {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: 1.375rem;
  font-weight: 500;
  color: #f8f4ed;
  margin-bottom: 0.75rem;
}
.experiment-item p {
  font-size: 0.875rem;
  color: rgba(248, 244, 237, 0.6);
  line-height: 1.6;
}

.about {
  padding: 8rem 4rem;
  background-color: #f8f4ed;
}
@media (max-width: 768px) {
  .about {
    padding: 4rem 1.5rem;
  }
}

.about-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
@media (max-width: 992px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.about-content {
  max-width: 500px;
}

.about-title {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #1e3932;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1rem;
  color: #5a5652;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.about-text p strong {
  color: #1e3932;
  font-weight: 600;
}

.about-links {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}
.about-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1e3932;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.about-links a:hover {
  border-color: #c4a35a;
  color: #c4a35a;
}

.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 4px;
  filter: grayscale(20%);
  transition: filter 0.4s ease;
}
.about-image img:hover {
  filter: grayscale(0%);
}
@media (max-width: 992px) {
  .about-image {
    order: -1;
  }
  .about-image img {
    max-width: 300px;
  }
}

.footer {
  padding: 6rem 4rem 3rem;
  background-color: #152a25;
}
@media (max-width: 768px) {
  .footer {
    padding: 4rem 1.5rem 2rem;
  }
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-cta {
  text-align: center;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(248, 244, 237, 0.1);
  margin-bottom: 2rem;
}
.footer-cta h2 {
  font-family: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: #f8f4ed;
  margin-bottom: 1rem;
}
.footer-cta p {
  font-size: 1rem;
  color: rgba(248, 244, 237, 0.6);
  margin-bottom: 2rem;
}

.footer-email {
  display: inline-block;
  font-size: 1.125rem;
  color: #c4a35a;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}
.footer-email:hover {
  border-color: #c4a35a;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}
.footer-bottom span {
  font-size: 0.8125rem;
  color: rgba(248, 244, 237, 0.4);
}
@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.footer-social {
  display: flex;
  gap: 2rem;
}
.footer-social a {
  font-size: 0.8125rem;
  color: rgba(248, 244, 237, 0.6);
  transition: color 0.2s ease;
}
.footer-social a:hover {
  color: #f8f4ed;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-label,
.hero-title,
.hero-subtitle,
.hero-cta {
  animation: fadeInUp 0.8s ease forwards;
}

.hero-label {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-subtitle {
  animation-delay: 0.3s;
}

.hero-cta {
  animation-delay: 0.4s;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/*# sourceMappingURL=style.css.map */
