:root {
  --bg: #f7f5f1;
  --white: #ffffff;
  --text: #252525;
  --muted: #686868;
  --dark: #171717;
  --accent: #9a7b4f;
  --border: #ded9d0;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  letter-spacing: 1px;
}

.brand b {
  font-size: 1.35rem;
  font-weight: 500;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: .65rem;
  letter-spacing: 1.5px;
}

nav {
  display: flex;
  gap: 28px;
  align-items: center;
  font-family: Arial, sans-serif;
  font-size: .9rem;
}

nav a {
  padding: 8px 0;
  color: #444;
  border-bottom: 1px solid transparent;
}

nav a:hover,
nav a.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.menu {
  display: none;
  border: 0;
  background: none;
  font-size: 1.7rem;
  cursor: pointer;
}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      90deg,
      rgba(15,15,15,.92),
      rgba(15,15,15,.70),
      rgba(15,15,15,.30)
    ),
    #282828;
  color: white;
}

.hero-content {
  max-width: 760px;
  padding: 90px 0;
}

.eyebrow {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  line-height: 1.05;
}

.hero p {
  max-width: 650px;
  font-size: 1.15rem;
  color: #e4e4e4;
}

.page-hero {
  padding: 110px 0;
  background: var(--dark);
  color: white;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.page-hero p {
  color: #ddd;
  font-size: 1.1rem;
}

.section {
  padding: 90px 0;
}

.section.light {
  background: var(--white);
}

.narrow {
  max-width: 850px;
}

.section h2 {
  margin: 0 0 25px;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
}

.section h3 {
  font-size: 1.35rem;
  font-weight: 500;
}

.section p {
  color: #4d4d4d;
}

.intro {
  max-width: 780px;
  font-size: 1.1rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 45px;
}

.card {
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--border);
}

.card h3 {
  margin-top: 0;
}

.card p {
  margin-bottom: 0;
}

.btn {
  display: inline-block;
  margin-top: 25px;
  padding: 13px 25px;
  border: 1px solid var(--accent);
  font-family: Arial, sans-serif;
  font-size: .85rem;
  transition: .2s;
}

.btn.primary {
  background: var(--accent);
  color: white;
}

.btn.primary:hover {
  opacity: .85;
}

.btn:not(.primary):hover {
  background: var(--accent);
  color: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.method {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
}

.method small {
  margin-bottom: 4px;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: .7rem;
  font-weight: bold;
  letter-spacing: 1.5px;
}

.method a {
  font-size: 1.15rem;
}

.method a:hover {
  color: var(--accent);
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: Arial, sans-serif;
  font-size: .85rem;
  color: #444;
}

input,
textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  font: inherit;
  outline: none;
}

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

textarea {
  resize: vertical;
}

form .btn {
  align-self: flex-start;
  cursor: pointer;
}

.note {
  margin-top: 0;
  font-size: .78rem;
  color: var(--muted);
}

footer {
  padding: 55px 0 25px;
  background: var(--dark);
  color: #ddd;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

footer b {
  color: white;
  font-size: 1.2rem;
  letter-spacing: 1px;
}

footer small {
  display: block;
  margin-top: 5px;
  color: #aaa;
  font-family: Arial, sans-serif;
  font-size: .65rem;
  letter-spacing: 1.4px;
}

footer p {
  font-family: Arial, sans-serif;
  font-size: .82rem;
  color: #aaa;
}

footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 20px;
  border-top: 1px solid #333;
  font-family: Arial, sans-serif;
  font-size: .72rem;
  color: #777;
}

@media (max-width: 800px) {

  .nav {
    min-height: 72px;
  }

  .menu {
    display: block;
    color: var(--text);
  }

  nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 20px 5%;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: white;
    border-bottom: 1px solid var(--border);
  }

  nav.open {
    display: flex;
  }

  .hero {
    min-height: 560px;
  }

  .section {
    padding: 65px 0;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}
