@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { 
  scroll-behavior: smooth; 
}

body {
  background: #000;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 78px;
  background: #000;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

.logo {
  width: 76px;
  height: auto;
}

nav {
  display: flex;
  gap: 44px;
}

nav a {
  color: white;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 1.4px;
}

nav a:hover { 
  color: #d8a154; 
}

.quote-btn,
button {
  background: #d8a154;
  color: white;
  border: none;
  padding: 13px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s ease;
  display: inline-block;
}

.quote-btn:hover,
button:hover {
  transform: translateY(-3px);
  background: #c99043;
}

.menu-toggle {
  display: none;
  background: none;
  padding: 0;
  font-size: 30px;
  color: white;
}

.mobile-menu { 
  display: none; 
}

/* HOME */

.home {
  height: 100vh;
  position: relative;
  overflow: hidden;
  padding-top: 78px;
}

.home video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.home-overlay {
  position: absolute;
  inset: 78px 0 0 0;
  background: rgba(0, 0, 0, 0.48);
}

.home-text {
  position: absolute;
  inset: 78px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(40px);
  text-align: center;
}

.home-brand {
  color: #d8a154;
  font-size: 16px;
  letter-spacing: 4px;
  font-weight: 300;
  margin-bottom: 12px;
}

.home h1 span {
  display: block;
  font-size: 76px;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -2.5px;
}

.home-line {
  width: 58px;
  height: 5px;
  background: #d8a154;
  margin-top: 36px;
}

/* ABOUT */

.about {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 105px 10% 80px;
  gap: 80px;
  overflow: hidden;
}

.about-left {
  position: relative;
  height: 620px;
}

.about h2 {
  position: absolute;
  z-index: 1;
  top: 40px;
  left: 0;
  font-size: 108px;
  line-height: 0.78;
  font-weight: 700;
  letter-spacing: -5px;
}

.jake {
  position: absolute;
  z-index: 3;
  width: 355px;
  left: 80px;
  top: 175px;
}

.about-right {
  height: 620px;
  display: flex;
  align-items: center;
}

.about-copy {
  max-width: 760px;
  transform: translateY(35px);
}

.about-copy p {
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 36px;
  font-weight: 300;
  letter-spacing: 0.2px;
}

.about-copy .quote-btn { 
  margin-top: 10px; 
}

/* SERVICES */

.services {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  transition: 0.35s ease;
}

.service-card:hover .service-overlay {
  background: rgba(0,0,0,0);
}

.service-card h3 {
  position: absolute;
  z-index: 2;
  color: white;
  font-size: 42px;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: 0.35s ease;
  text-align: center;
}

.service-card:hover h3 {
  transform: translate(-50%, -55%);
}

/* TESTIMONIAL */

.testimonial {
  min-height: 60vh;
  background: linear-gradient(to bottom, #000 0%, #332312 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 35px;
  text-align: center;
  padding: 90px 14%;
}

.testimonial p {
  font-size: 29px;
  line-height: 1.45;
  font-style: italic;
  font-weight: 300;
  max-width: 1150px;
}

.testimonial h4 {
  margin-top: 40px;
  font-size: 30px;
  letter-spacing: 8px;
  font-weight: 300;
}

.testimonial span {
  color: #d8a154;
  font-size: 21px;
  font-weight: 300;
}

/* PORTFOLIO */

.portfolio {
  padding: 0 5% 100px;
  background: #000;
}

.portfolio h2 {
  font-size: 120px;
  text-align: center;
  background: linear-gradient(to bottom, #332312 0%, #5a3c1d 100%);
  padding: 25px 0;
  margin: 0 -5% 75px;
  font-weight: 400;
  letter-spacing: -5px;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 90px;
}

.work-grid img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

/* QUOTE */

.quote-section {
  min-height: 50vh;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 95px 10%;
}

.quote-content .gold {
  color: #d8a154;
  letter-spacing: 4px;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 300;
}

.quote-content h2 {
  font-size: 62px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: -3px;
  margin-bottom: 22px;
}

.quote-content p {
  max-width: 1000px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 300;
  margin: 0 auto 35px;
}

/* FORM */

.form-section {
  min-height: 100vh;
  background-image: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)), url('assets/quote-bg.jpg');
  background-size: cover;
  background-position: center;
  padding: 110px 15%;
}

.form-section h2 {
  font-size: 58px;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 400;
  letter-spacing: -3px;
}

form {
  max-width: 760px;
  margin: auto;
  padding: 42px;
  background: rgba(0, 0, 0, 0.86);
}

input,
textarea {
  width: 100%;
  padding: 17px;
  margin-bottom: 18px;
  font-family: inherit;
  font-size: 15px;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 22px;
}

.checkboxes label {
  font-size: 15px;
  font-weight: 300;
}

.checkboxes input {
  width: auto;
  margin-right: 6px;
}

form button { 
  width: 100%; 
}

/* FOOTER */

.site-footer {
  background: #000;
  padding: 65px 8% 55px;
  text-align: center;
}

.footer-logo {
  width: 82px;
  margin-bottom: 35px;
}

.footer-contacts {
  display: flex;
  justify-content: center;
  gap: 70px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.footer-contacts a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 1px;
}

.footer-contacts a:hover {
  color: #d8a154;
}

.footer-contacts img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ANIMATIONS */

.scroll-reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: 0.65s ease;
}

.scroll-reveal.visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.from-left { 
  transform: translateX(-70px); 
}

.from-right { 
  transform: translateX(70px); 
}

.from-bottom { 
  transform: translateY(70px); 
}

.grow-text { 
  transform: scale(0.88); 
}

.delay-half { 
  transition-delay: 0.25s; 
}

.delay-1, 
.fade-delay-1 { 
  transition-delay: 0.2s; 
}

.delay-2, 
.fade-delay-2 { 
  transition-delay: 0.4s; 
}

.delay-3, 
.fade-delay-3 { 
  transition-delay: 0.6s; 
}

.delay-4, 
.fade-delay-4 { 
  transition-delay: 0.8s; 
}

.fade-delay-5 { 
  transition-delay: 1s; 
}

.fade-delay-6 { 
  transition-delay: 1.2s; 
}

.reveal-left {
  opacity: 0;
  animation: slideLeft 0.65s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.45s; }
.delay-3 { animation-delay: 0.75s; }
.delay-4 { animation-delay: 1.05s; }
.delay-5 { animation-delay: 1.25s; }

@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-65px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* MOBILE */

@media (max-width: 900px) {
  .site-header {
    height: 82px;
    padding: 0 7%;
  }

  .logo {
    width: 70px;
  }

  nav,
  .header-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 82px;
    left: 0;
    width: 100%;
    background: #000;
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 30px;
  }

  .mobile-menu.open {
    display: flex;
  }

  .mobile-menu a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 1.2px;
  }

  .home {
    padding-top: 82px;
  }

  .home-overlay,
  .home-text {
    inset: 82px 0 0 0;
  }

  .home-text {
    transform: translateY(25px);
    padding: 0 20px;
  }

  .home h1 span {
    font-size: 52px;
    line-height: 0.95;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 90px 8%;
    gap: 0;
  }

  .about-left {
    height: 640px;
  }

  .about h2 {
    font-size: 66px;
    line-height: 0.82;
    letter-spacing: -3px;
    top: 0;
  }

  .jake {
    width: 285px;
    left: 50%;
    transform: translateX(-50%);
    top: 135px;
  }

  .about-right {
    height: auto;
    margin-top: 10px;
  }

  .about-copy {
    transform: none;
  }

  .about-copy p {
    font-size: 17px;
    line-height: 1.55;
  }

  .services {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 360px;
  }

  .service-card h3 {
    font-size: 38px;
  }

  .testimonial {
    padding: 80px 8%;
  }

  .testimonial p {
    font-size: 22px;
  }

  .testimonial h4 {
    font-size: 22px;
    letter-spacing: 5px;
  }

  .portfolio h2 {
    font-size: 58px;
    letter-spacing: -2px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .work-grid img {
    height: 300px;
  }

  .quote-section {
    padding: 80px 8%;
  }

  .quote-content h2 {
    font-size: 42px;
    letter-spacing: -2px;
  }

  .quote-content p {
    font-size: 17px;
  }

  .form-section {
    padding: 90px 6%;
  }

  .form-section h2 {
    font-size: 42px;
  }

  form {
    padding: 28px;
  }

  .footer-logo {
    width: 70px;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 18px;
  }

  .footer-contacts a {
    justify-content: center;
  }
}