* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f5f1eb;
  color: #201b18;
  font-family: "DM Sans", sans-serif;
}

.nav {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid #d8d0c7;
  position: sticky;
  top: 0;
  background: rgba(245, 241, 235, 0.94);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.brand,
h1,
h2 {
  font-family: "Playfair Display", serif;
}

.brand {
  font-size: 24px;
  text-decoration: none;
  color: #201b18;
}

.nav nav {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav nav a {
  text-decoration: none;
  color: #201b18;
  font-size: 14px;
}

.hero {
  min-height: 76vh;
  padding: 12vh 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(
    120deg,
    #f5f1eb 45%,
    #e7ddd3
  );
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.98;
  margin: 0;
  max-width: 900px;
  font-weight: 500;
}

.lede {
  font-size: 19px;
  line-height: 1.7;
  max-width: 620px;
  margin: 30px 0;
}

.actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.button {
  display: inline-block;
  background: #201b18;
  color: #ffffff;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  border: 0;
  font: inherit;
  cursor: pointer;
}

.button.small {
  padding: 10px 18px;
}

.text-link {
  color: #201b18;
  text-decoration: none;
  border-bottom: 1px solid #201b18;
  padding-bottom: 3px;
}

.split,
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  padding: 100px 8vw;
  border-top: 1px solid #d8d0c7;
}

.split h2,
.panel h2,
.newsletter h2,
.connect h2 {
  font-size: clamp(30px, 5vw, 60px);
  margin: 0 0 20px;
  font-weight: 500;
}

.split p,
.panel p,
.newsletter p,
.connect p {
  font-size: 18px;
  line-height: 1.7;
}

.panel {
  margin: 0 6vw 100px;
  padding: 80px 6vw;
  background: #2c2723;
  color: #f8f4ee;
  border-radius: 4px;
}

.panel .text-link {
  color: #f8f4ee;
  border-color: #f8f4ee;
}

.placeholder {
  border: 1px dashed #a89d93;
  padding: 40px;
  min-height: 180px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.newsletter {
  background: #eee6dd;
}

.newsletter form {
  align-self: center;
}

.newsletter label {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}

.form-row {
  display: flex;
  gap: 10px;
}

.form-row input {
  flex: 1;
  min-width: 0;
  padding: 15px 16px;
  border: 1px solid #bdb2a7;
  background: #fffdf9;
  font: inherit;
}

.newsletter small {
  display: block;
  margin-top: 12px;
}

.connect {
  padding: 120px 8vw;
  text-align: center;
}

.button.disabled {
  opacity: 0.55;
  cursor: default;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 6vw;
  border-top: 1px solid #d8d0c7;
  font-size: 13px;
}

/* Responsive */

@media (max-width: 760px) {
  .nav {
    height: auto;
    padding: 20px 6vw;
    align-items: flex-start;
  }

  .nav nav {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    padding: 100px 8vw;
  }

  .split,
  .newsletter {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 70px 8vw;
  }

  .panel {
    margin: 0 4vw 70px;
    padding: 60px 8vw;
  }

  .form-row {
    flex-direction: column;
  }

  footer {
    flex-direction: column;
  }
}

/* ========================================
   PRIVATE REQUEST PAGE
======================================== */

.request-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 32px;
}

.request-page > .eyebrow,
.request-page > h1,
.request-intro {
  text-align: center;
}

.request-page > h1 {
  margin-bottom: 20px;
}

.request-intro {
  max-width: 700px;
  margin: 0 auto 55px;
  line-height: 1.7;
}

/* Request Form */

#request-form {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  text-align: left;
}

#request-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 14px;
  font-weight: 500;
}

#request-form input,
#request-form select,
#request-form textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #cfc7bc;
  border-radius: 3px;
  background: #fffdf9;
  color: #201b18;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  outline: none;
}

#request-form input:focus,
#request-form select:focus,
#request-form textarea:focus {
  border-color: #201b18;
}

#request-form textarea {
  min-height: 130px;
  resize: vertical;
}

#request-form .full-width {
  grid-column: 1 / -1;
}

#request-form button {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 20px;
  min-width: 220px;
}

/* Mobile */

@media (max-width: 700px) {
  .request-page {
    padding: 55px 20px;
  }

  #request-form {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  #request-form .full-width,
  #request-form button {
    grid-column: 1;
  }

  #request-form button {
    width: 100%;
  }
}
