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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: #000000;
  background: #ffffff;
  line-height: 1.6;
}

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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #000000;
  z-index: 100;
}

.nav-inner {
  width: 100%;
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-inner {
    padding: 1rem 1.5rem;
  }
}

.nav-logo {
  font-weight: 700;
  font-size: 1rem;
  color: #ffffff;
  background: #2D9F5E;
  padding: 0.75rem 3rem 0.75rem 1rem;
  display: inline-block;
  text-align: left;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
}

.nav-links a {
  font-size: 1rem;
  font-weight: 400;
  color: #ffffff;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 99;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms ease-in-out, visibility 400ms ease-in-out;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
}

.mobile-menu-nav a {
  font-size: 32px;
  font-weight: 400;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms ease-out, transform 300ms ease-out, color 0.2s ease;
}

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

.mobile-menu.active .mobile-menu-nav a:nth-child(1) {
  transition-delay: 200ms;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(2) {
  transition-delay: 300ms;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(3) {
  transition-delay: 400ms;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(4) {
  transition-delay: 500ms;
}

.mobile-menu.active .mobile-menu-nav a:nth-child(5) {
  transition-delay: 600ms;
}

.mobile-menu-nav a:hover {
  color: rgba(255, 255, 255, 0.6);
}

body.menu-open {
  overflow: hidden;
}

.hero-container {
  height: 800vh;
  position: relative;
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

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

.hero-slide.from-right {
  transform: translateX(20px);
}

.hero-slide.from-left {
  transform: translateX(-20px);
}

.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
}

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

@media (max-width: 768px) {
  .hero-container {
    height: auto;
  }

  .hero {
    position: relative;
    height: auto;
    overflow: visible;
    background: #f5f5f5;
  }

  .hero-slides {
    display: none;
  }
}

.hero-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
}

@media (max-width: 768px) {
  .hero-text {
    color: #000000;
    position: static;
    padding: 8rem 1.5rem 2rem;
  }
}

.hero-line {
  display: block;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-size: 0.875rem;
  opacity: 1;
  transition: opacity 0.3s ease;
}

@media (max-width: 768px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-indicator.hidden {
  opacity: 0;
}

.scroll-indicator svg {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(10px);
  }
  60% {
    transform: translateY(5px);
  }
}

.work {
  background: #ffffff;
  padding: 6rem 0 0 0;
  min-height: 100vh;
}

.work-inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.work-heading {
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 4rem;
  letter-spacing: -0.02em;
  padding: 0 5.75rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.work-heading.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  padding: 0;
}

.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.work-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.work-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 10 / 7;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

.work-card-info {
  padding: 1.5rem 2rem 4rem 2rem;
  background: #ffffff;
  position: relative;
}

.work-card-info h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  color: #000000;
  transition: color 400ms ease-out;
}

.work-card:hover .work-card-info h3 {
  color: #2D9F5E;
}

.work-card-info p {
  font-size: 18px;
  font-weight: 400;
  color: #666;
}

.work-card:hover img {
  opacity: 0.9;
}

.work-card-plus {
  position: absolute;
  top: calc(1.5rem + 28px + 0.5rem + 9px);
  right: 2rem;
  font-size: 32px;
  font-weight: 200;
  line-height: 1;
  color: #2D9F5E;
  opacity: 0;
  transition: opacity 400ms ease-out;
  pointer-events: none;
}

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

.work-card:nth-child(1) .work-card-info,
.work-card:nth-child(2) .work-card-info {
  padding-bottom: 8rem;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 768px) {
  .work {
    padding: 0;
  }

  .work-heading {
    font-size: 48px;
    padding: 4rem 1.5rem 2rem 1.5rem;
    margin-bottom: 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .work-card {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-bottom: 0 !important;
  }

  .work-card img,
  .work-card picture,
  .work-card picture img {
    flex: 1;
    min-height: 70vh;
    width: 100%;
    object-fit: cover;
    aspect-ratio: auto;
  }

  .work-card-info {
    min-height: 30vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.25rem 1.5rem 2rem 1.5rem;
  }

  .work-card-info h3 {
    font-size: 24px;
  }

  .work-card-info p {
    font-size: 16px;
  }

  .work-card-plus {
    bottom: 2rem;
    right: 1.5rem;
    font-size: 28px;
  }

  .work-card:nth-child(1) .work-card-info,
  .work-card:nth-child(2) .work-card-info {
    padding-bottom: 2rem;
  }
}

.about {
  background: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 1.5rem;
}

@media (max-width: 768px) {
  .about {
    min-height: auto;
  }
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  width: 100%;
}

.about h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about p {
  font-size: 1.125rem;
  color: #737373;
  margin-bottom: 1rem;
}

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

.portfolio {
  background: #f5f5f5;
  padding: 6rem 1.5rem;
}

.portfolio-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 3rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

.portfolio-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-image {
  aspect-ratio: 4/3;
  background: #e5e5e5;
  object-fit: cover;
  width: 100%;
  border-radius: 4px 4px 0 0;
  transition: transform 0.2s ease;
}

.portfolio-card:hover .portfolio-image {
  transform: translateY(-4px);
}

.portfolio-card h3 {
  font-size: 1rem;
  font-weight: 600;
  padding: 1rem 1rem 0.25rem;
  transition: color 0.2s ease;
}

.portfolio-card:hover h3 {
  color: #737373;
}

.portfolio-card p {
  font-size: 0.875rem;
  color: #737373;
  padding: 0 1rem 1rem;
}

.in-progress-section {
  margin-top: 4rem;
}

.in-progress-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.portfolio-card.in-progress {
  opacity: 0.6;
  border: 1px dashed #e5e5e5;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */

.services-section {
  background: #ffffff;
  padding: 0;
  position: relative;
}

.services-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  margin: 0;
}

.services-content {
  max-width: none;
  margin: 0;
  padding: 6rem 2rem 6rem 5.75rem;
}

.services-heading {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  color: #000000;
}

.services-heading,
.services-intro p,
.step,
.services-cta {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms ease-out, transform 600ms ease-out;
}

.services-heading.fade-in,
.services-intro p.fade-in,
.step.fade-in,
.services-cta.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.services-intro {
  max-width: 800px;
  margin-bottom: 4rem;
}

.services-intro p {
  font-size: 22px;
  line-height: 1.6;
  color: #000000;
  margin-bottom: 1.5rem;
}

.services-intro p:last-child {
  margin-bottom: 0;
}

.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
  color: #000000;
  text-decoration: none;
  margin-top: 4rem;
  transition: color 300ms ease-out;
}

.services-cta:hover {
  color: #2D9F5E;
}

.services-cta-arrow {
  width: 32px;
  height: 32px;
  transition: transform 300ms ease-out;
}

.services-cta:hover .services-cta-arrow {
  transform: translate(4px, -4px);
}

@media (max-width: 768px) {
  .services-cta {
    font-size: 24px;
    margin-top: 3rem;
  }

  .services-cta-arrow {
    width: 24px;
    height: 24px;
  }
}

.how-it-works-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
  max-width: 800px;
}

.how-it-works-steps .step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}

.how-it-works-steps .step-number {
  font-size: 16px;
  font-weight: 400;
  color: #CCCCCC;
  min-width: 35px;
  flex-shrink: 0;
}

.how-it-works-steps .step-text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  color: #000000;
  margin: 0;
}

@media (max-width: 768px) {
  .services-content {
    padding: 4rem 1.5rem;
  }

  .services-heading {
    font-size: 36px;
    margin-bottom: 2rem;
  }

  .services-intro p {
    font-size: 18px;
  }

  .how-it-works-steps .step {
    gap: 1.5rem;
  }

  .how-it-works-steps .step-text {
    font-size: 16px;
  }
}

.services {
  background: #ffffff;
  padding: 6rem 1.5rem;
}

.services-inner {
  max-width: 720px;
  margin: 0 auto;
}

.services h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.services p {
  font-size: 1.125rem;
  color: #737373;
  margin-bottom: 1rem;
}

.process {
  border-top: 1px solid #e5e5e5;
  margin-top: 3rem;
  padding-top: 2rem;
}

.process-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #a3a3a3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 1.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  font-weight: 600;
  color: #a3a3a3;
  font-size: 0.875rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #333333;
}

.btn-outline {
  background: transparent;
  color: #000000;
  border: 1px solid #e5e5e5;
}

.btn-outline:hover {
  border-color: #000000;
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
  background: #000000;
  color: #ffffff;
  padding: 4rem 5.75rem;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-left {
  flex: 1;
}

.footer-location {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-static,
.footer-rotating {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
}

.footer-rotating {
  color: #2D9F5E;
  display: flex;
  align-items: center;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  padding-top: 1rem;
}

.footer-abn {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

.footer-email {
  font-size: 18px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  transition: color 300ms ease-out;
}

.footer-email:hover {
  color: #2D9F5E;
}

.footer-socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.footer-social-link {
  color: #ffffff;
  transition: color 300ms ease-out, transform 300ms ease-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social-link:hover {
  color: #2D9F5E;
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem;
    min-height: 300px;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-static,
  .footer-rotating {
    font-size: 40px;
  }

  .footer-right {
    align-items: flex-start;
  }

  .footer-abn,
  .footer-email {
    font-size: 16px;
  }

  .footer-socials {
    margin-top: 1rem;
  }

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