:root {
  --cream: #EFEBE6;
  --black: #1A171B;
  --gold: #B38B00;
  --off-white: #F8F5EF;
  --sand: #D8CBB8;
  --soft-sand: #E6DED2;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--cream);
  color: var(--black);
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

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

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

.hero {
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(rgba(26, 23, 27, 0.52), rgba(26, 23, 27, 0.58)),
    url("images/hero.jpg") center/cover no-repeat;
  color: var(--off-white);
  display: flex;
  flex-direction: column;
}

.navbar {
  width: 100%;
  padding: 28px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links a {
  opacity: 0.86;
  transition: opacity 0.3s ease;
}

.nav-links a:hover {
  opacity: 1;
}

.hero-content {
  flex: 1;
  max-width: 900px;
  padding: 0 6vw 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow,
.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero h1,
.section h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.95;
}

.hero h1 {
  font-size: clamp(74px, 13vw, 170px);
  max-width: 850px;
}

.hero-subtitle {
  max-width: 560px;
  margin-top: 28px;
  font-size: clamp(18px, 2vw, 24px);
  color: rgba(248, 245, 239, 0.88);
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--off-white);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
}

.btn-primary:hover {
  background: #9f7b00;
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: rgba(248, 245, 239, 0.7);
  color: var(--off-white);
}

.btn-secondary:hover {
  background: var(--off-white);
  color: var(--black);
}

.section {
  padding: 120px 6vw;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about h2,
.section-header h2,
.contact h2 {
  font-size: clamp(44px, 6vw, 84px);
  color: var(--black);
}

.about p,
.contact p {
  font-size: 17px;
  color: rgba(26, 23, 27, 0.74);
  margin-bottom: 22px;
}

.services {
  background: var(--black);
  color: var(--off-white);
}

.services h2 {
  color: var(--off-white);
  max-width: 820px;
}

.section-header {
  margin-bottom: 54px;
}

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

.card {
  background: rgba(248, 245, 239, 0.06);
  border: 1px solid rgba(248, 245, 239, 0.14);
  border-radius: 28px;
  padding: 42px;
  min-height: 320px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.card span {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 2px;
}

.card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  margin: 70px 0 22px;
}

.card p {
  color: rgba(248, 245, 239, 0.72);
  font-size: 15px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-grid img {
  height: 360px;
  border-radius: 24px;
  filter: saturate(0.92) contrast(1.02);
  box-shadow: 0 18px 44px rgba(26, 23, 27, 0.12);
}

.gallery-grid img:nth-child(1),
.gallery-grid img:nth-child(6) {
  grid-column: span 2;
}

.gallery-grid img:nth-child(2),
.gallery-grid img:nth-child(5) {
  height: 460px;
}

.contact {
  background: var(--soft-sand);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-form {
  background: var(--off-white);
  padding: 44px;
  border-radius: 32px;
  box-shadow: 0 28px 80px rgba(26, 23, 27, 0.12);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(26, 23, 27, 0.14);
  background: #fff;
  padding: 17px 18px;
  border-radius: 18px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: var(--black);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.contact-form .btn {
  border: none;
  margin-top: 8px;
}

.footer {
  background: var(--black);
  color: rgba(248, 245, 239, 0.72);
  padding: 34px 6vw;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

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

  .about-grid,
  .contact-wrapper,
  .cards {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img,
  .gallery-grid img:nth-child(2),
  .gallery-grid img:nth-child(5) {
    height: 320px;
  }

  .gallery-grid img:nth-child(1),
  .gallery-grid img:nth-child(6) {
    grid-column: span 1;
  }
}

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

  .brand {
    font-size: 22px;
  }

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

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

  .hero-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 82px 22px;
  }

  .cards {
    gap: 18px;
  }

  .card {
    padding: 32px;
    min-height: 280px;
  }

  .card h3 {
    font-size: 36px;
    margin-top: 54px;
  }

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

  .gallery-grid img {
    height: 300px;
  }

  .contact-form {
    padding: 28px;
    border-radius: 26px;
  }

  .footer {
    flex-direction: column;
  }
}