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

:root {
  --dark: #151711;
  --dark-soft: #20231b;
  --gold: #c99b55;
  --cream: #f4f0e7;
  --text: #222;
  --muted: #777;
  --white: #fff;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--cream);
  color: var(--text);
}

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

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* HERO */

.hero {
  min-height: 790px;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.68) 0%,
      rgba(0, 0, 0, 0.45) 32%,
      rgba(0, 0, 0, 0.18) 65%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    url("ev.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  position: relative;
}

.navbar {
  width: 100%;
  height: 105px;
  padding: 32px 36px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.logo {
  width: 290px;
}

.logo-main {
  display: flex;
  gap: 14px;
  align-items: center;
  letter-spacing: 12px;
  font-size: 30px;
  font-weight: 400;
}

.logo-main span:first-child {
  color: #fff;
}

.logo-main span:last-child {
  color: var(--gold);
}

.logo-line {
  margin-top: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-line span {
  height: 1px;
  flex: 1;
  background: var(--gold);
}

.logo-line p {
  font-size: 10px;
  letter-spacing: 6px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 42px;
  align-items: center;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.nav-links a {
  position: relative;
  opacity: 0.95;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  background: var(--gold);
  left: 0;
  bottom: -20px;
}

.quote-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-size: 13px;
  font-weight: 700;
}

.quote-btn.outline {
  width: 150px;
  height: 46px;
  border: 1px solid var(--gold);
  color: var(--gold);
  margin-top: 12px;
  transition: all 0.3s ease;
}

.quote-btn.outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 54px;
  padding-top: 158px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 70px;
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -1px;
}

.small-line {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 30px 0 24px;
}

.hero-text {
  font-size: 17px;
  line-height: 1.75;
  max-width: 520px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.btn.filled {
  height: 52px;
  padding: 0 30px;
  background: var(--gold);
  color: #161616;
}

.text-link {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 700;
}

.text-link span {
  margin-left: 12px;
  font-size: 22px;
  vertical-align: -2px;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 30px;
}

.socials a,
.footer-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--white);
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
}

/* FEATURES */

.features {
  background: var(--cream);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 38px 72px 50px;
}

.feature {
  text-align: center;
  padding: 0 48px;
  border-right: 1px solid #ddd3c3;
}

.feature:last-child {
  border-right: none;
}

.feature h3 {
  margin-top: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
}

.feature p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.6;
}

.icon {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  position: relative;
  color: var(--gold);
}

/* Simple CSS icons */

.door-icon::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: skewY(-18deg);
}

.door-icon::after {
  content: "";
  position: absolute;
  inset: 5px 18px;
  border-left: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.sun-icon {
  border: 2px solid var(--gold);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  margin-top: 12px;
}

.sun-icon::before,
.sun-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}

.sun-icon::before {
  width: 1px;
  height: 58px;
  left: 50%;
  top: -12px;
}

.sun-icon::after {
  width: 58px;
  height: 1px;
  top: 50%;
  left: -12px;
}

.house-icon::before {
  content: "⌂";
  font-size: 58px;
  color: var(--gold);
  line-height: 1;
}

.shield-icon::before {
  content: "♢";
  font-size: 58px;
  color: var(--gold);
  line-height: 1;
}

/* PROJECTS */

.projects {
  display: grid;
  grid-template-columns: 32% 68%;
  background: #f2eee6;
}

.project-text {
  padding: 64px 58px;
}

.project-text h2,
.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.08;
}

.project-text p:not(.eyebrow) {
  max-width: 290px;
  font-size: 14px;
  line-height: 1.8;
}

.quote-btn.light {
  margin-top: 28px;
  width: 180px;
  height: 44px;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.project-gallery {
  display: grid;
  grid-template-columns: 58% 42%;
  min-height: 435px;
}

.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
}

.project-gallery img {
  border-left: 1px solid var(--cream);
  border-bottom: 1px solid var(--cream);
}

/* CTA */

.cta {
  min-height: 145px;
  background:
    linear-gradient(rgba(19, 22, 17, 0.88), rgba(19, 22, 17, 0.88)),
    url("banner.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 118px;
}

.cta .eyebrow {
  font-size: 10px;
  margin-bottom: 10px;
}

.cta h2 {
  font-size: 34px;
}

/* FOOTER */

.footer {
  background: var(--dark);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr 1.5fr;
  gap: 42px;
  padding: 34px 94px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  transform: scale(0.75);
  transform-origin: left top;
  margin-bottom: -12px;
}

.footer-col h4 {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 12px;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.footer .brand p {
  max-width: 250px;
}

.footer-socials {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 28px;
  height: 28px;
  font-size: 11px;
}

.contact p {
  margin-bottom: 8px;
}

.copyright {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.62);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 94px 18px;
  font-size: 10px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.copyright div {
  display: flex;
  gap: 18px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .navbar {
    height: auto;
    flex-direction: column;
    gap: 24px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 22px;
  }

  .hero-content {
    padding-left: 32px;
    padding-top: 80px;
  }

  .hero h1 {
    font-size: 56px;
  }

  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 0;
  }

  .projects {
    grid-template-columns: 1fr;
  }

  .project-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-side {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .cta {
    padding: 40px;
    gap: 30px;
  }

  .footer {
    grid-template-columns: repeat(2, 1fr);
    padding: 40px;
  }

  .copyright {
    padding: 18px 40px;
  }
}

@media (max-width: 650px) {
  .hero {
    min-height: 760px;
  }

  .logo-main {
    font-size: 24px;
    letter-spacing: 8px;
  }

  .nav-links {
    display: none;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-content {
    padding: 70px 24px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 44px 28px;
  }

  .feature {
    border-right: none;
    border-bottom: 1px solid #ddd3c3;
    padding: 0 20px 32px;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .project-text {
    padding: 48px 30px;
  }

  .gallery-side {
    grid-template-columns: 1fr;
  }

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

  .footer {
    grid-template-columns: 1fr;
    padding: 36px 30px;
  }

  .copyright {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 30px;
  }
}