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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  background: #000;
  color: white;
}

/* GLOBAL NAV */

.navbar {
  position: relative;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 54px;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 18px;
  letter-spacing: 7px;
  font-weight: 700;
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 52px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* HAMBURGER */

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  position: relative;
  z-index: 100000;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 1.5px;
  background: white;
  transition: 0.3s ease;
}

.menu-toggle span:first-child {
  transform: translate(-50%, -5px);
}

.menu-toggle span:last-child {
  transform: translate(-50%, 5px);
}

body.menu-open .menu-toggle span:first-child {
  transform: translate(-50%, 0) rotate(45deg);
}

body.menu-open .menu-toggle span:last-child {
  transform: translate(-50%, 0) rotate(-45deg);
}

/* MOBILE MENU */

.mobile-menu {
  display: none;
}

body.menu-open .mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99998;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 36px;

  background: rgba(0, 0, 0, 0.96);
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 22px;
}

/* HOME PAGE */

.hero {
  position: relative;
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;

  background-image: url("./hero-clean.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.78) 35%,
    rgba(0,0,0,0.25) 60%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 54px;
  padding-top: 110px;
  max-width: 760px;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 5px;
  color: #c8b79d;
  margin-bottom: 34px;
}

h1 {
  font-size: clamp(54px, 6.2vw, 94px);
  line-height: 0.92;
  letter-spacing: -4px;
  margin-bottom: 26px;
}

h1 span {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #c5b49d;
}

.line {
  width: 80px;
  height: 1px;
  background: #d9d2c7;
  margin-bottom: 34px;
}

.subtext {
  font-size: 21px;
  line-height: 1.45;
  color: #e0ddd8;
  margin-bottom: 38px;
}

.cta {
  color: white;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 14px;
  letter-spacing: 4px;
  font-size: 14px;
}

/* WORK PAGE */

.work-page {
  background: #080808;
  color: white;
}

.work-navbar {
  background: #080808;
}

.work-main {
  padding: 80px 54px;
}

.work-hero {
  max-width: 1100px;
  margin-bottom: 90px;
}

.work-hero h1 {
  font-size: clamp(54px, 7vw, 108px);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 34px;
}

.work-intro {
  max-width: 720px;
  font-size: 22px;
  line-height: 1.6;
  color: #cfc7ba;
}

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

.work-card {
  background: #111;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.work-card.large {
  grid-column: span 2;
}

.work-image {
  height: 420px;
  background-size: cover;
  background-position: center;
  filter: grayscale(10%);
}

.work-card.large .work-image {
  height: 560px;
}

.work-image.rug {
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.25)), url("./royalty-rugs.jpg");
}

.work-image.fashion {
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.25)), url("./thrift4us.jpg");
}

.work-image.fitness {
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.25)), url("./gymbuddy.jpg");
}

.work-info {
  padding: 28px;
}

.work-info p {
  color: #b9aa96;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 12px;
}

.work-info h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.work-info span {
  color: #cfcfcf;
  font-size: 17px;
  line-height: 1.5;
}

/* SERVICES PAGE */

.services-page {
  background: #070707;
  color: white;
}

.services-main {
  padding: 80px 54px 120px;
}

.services-hero {
  max-width: 1100px;
  margin-bottom: 90px;
}

.services-hero h1 {
  font-size: clamp(56px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -4px;
  margin-bottom: 34px;
}

.services-intro {
  max-width: 760px;
  font-size: 22px;
  line-height: 1.6;
  color: #cfc7ba;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-bottom: 140px;
  align-items: stretch;
}

.service-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transition: 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 5%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.15) 100%
  );
  z-index: 1;
}

.service-card > * {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.18);
}

.service-card span {
  color: #b9aa96;
  letter-spacing: 4px;
  font-size: 13px;
}

.service-card h2 {
  font-size: 38px;
  line-height: 1.1;
  margin: 24px 0;
}

.service-card p {
  color: #cfcfcf;
  line-height: 1.7;
  font-size: 18px;
}

.services-grid .service-card:nth-child(1) {
  background-image: url("./website-design.png");
}

.services-grid .service-card:nth-child(2) {
  background-image: url("./shopify-image.png");
}

.services-grid .service-card:nth-child(3) {
  background-image: url("./ux-image.png");
}

.services-grid .service-card:nth-child(4) {
  background-image: url("./creative-direction.png");
}

/* PROCESS */

.process-section {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 80px;
}

.process-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.process-item span {
  color: #b9aa96;
  font-size: 13px;
  letter-spacing: 4px;
}

.process-item h3 {
  font-size: 28px;
  margin: 18px 0;
}

.process-item p {
  color: #cfcfcf;
  line-height: 1.6;
}

/* MOBILE */

@media (max-width: 900px) {
  .navbar {
    padding: 22px 20px;
  }

  .logo {
    font-size: 14px;
    letter-spacing: 5px;
  }

  .navbar nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  @media (max-width: 900px) {
  .hero {
    background-image: url("./ihateyou.jpg") !important;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}

  .overlay {
    background: linear-gradient(
      90deg,
      rgba(0,0,0,0.92) 0%,
      rgba(0,0,0,0.82) 45%,
      rgba(0,0,0,0.35) 100%
    );
  }

  .hero-content {
    padding: 105px 22px 60px;
    max-width: 100%;
  }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    margin-bottom: 24px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 58px);
    line-height: 0.96;
    letter-spacing: -2px;
    max-width: 92vw;
    margin-bottom: 24px;
  }

  .line {
    width: 64px;
    margin-bottom: 24px;
  }

  .subtext {
    font-size: 18px;
    line-height: 1.45;
    margin-bottom: 34px;
  }

  .cta {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .work-main,
  .services-main {
    padding: 48px 20px 90px;
  }

  .work-hero,
  .services-hero {
    margin-bottom: 60px;
  }

  .work-hero h1,
  .services-hero h1 {
    font-size: clamp(42px, 13vw, 56px);
    line-height: 0.98;
    letter-spacing: -2px;
  }

  .work-intro,
  .services-intro {
    font-size: 17px;
    line-height: 1.55;
  }

  .work-grid,
  .services-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .work-card.large {
    grid-column: auto;
  }

  .work-image,
  .work-card.large .work-image {
    height: 300px;
  }

  .service-card {
  height: 320px;
  padding: 28px;

  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

  .service-card h2 {
    font-size: 30px;
  }

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

  .process-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
}
@media (max-width: 900px) {
  .navbar nav {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
  }
}
@media (max-width: 900px) {
  .hero {
    background-image: url("./hero-mobile.png") !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }
}
@media (max-width: 900px) {
  .navbar {
    position: relative !important;
    z-index: 999999 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
  }

  .navbar nav {
    display: none !important;
  }

  .menu-toggle {
    display: block !important;
    width: 44px !important;
    height: 44px !important;
    position: relative !important;
    z-index: 999999 !important;
    background: red !important;
    border: none !important;
  }

  .menu-toggle span {
    display: block !important;
    position: absolute !important;
    left: 50% !important;
    width: 24px !important;
    height: 2px !important;
    background: white !important;
  }

  .menu-toggle span:first-child {
    top: 17px !important;
    transform: translateX(-50%) !important;
  }

  .menu-toggle span:last-child {
    top: 26px !important;
    transform: translateX(-50%) !important;
  }
}
@media (max-width: 900px) {
  .hero {
    background-image: url("./hero-clean.png") !important;

    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: center top !important;

    background-color: #000 !important;

    min-height: 100svh !important;
    height: auto !important;
  }
}
@media (max-width: 900px) {
  .hero .navbar {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100000 !important;
  }

  .hero .menu-toggle {
    display: block !important;
    position: relative !important;
    z-index: 100001 !important;
  }

  .hero .overlay {
    z-index: 1 !important;
    pointer-events: none !important;
  }

  .hero-content {
    z-index: 2 !important;
  }
}