:root {
  --cream: #f8f3eb;
  --paper: #fffaf2;
  --ink: #17100d;
  --muted: #6d6259;
  --gold: #c5844d;
  --wine: #642236;
  --olive: #59624a;
  --shadow: 0 18px 55px rgba(42, 26, 16, .13);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px 18px;
  background: rgba(248, 243, 235, .88);
  border-bottom: 1px solid rgba(34, 24, 16, .08);
  backdrop-filter: blur(20px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
}

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

.nav a {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 750;
}

.nav a:hover { background: rgba(197, 132, 77, .12); }

.hero {
  position: relative;
  min-height: 68vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fffaf2;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(12, 8, 6, .2), rgba(12, 8, 6, .82));
}

.hero-inner,
.container {
  width: min(100% - 36px, 1060px);
  margin: 0 auto;
}

.hero-inner { padding: 64px 0 38px; }

.eyebrow {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 242, .14);
  border: 1px solid rgba(255, 250, 242, .2);
  font-size: 13px;
  font-weight: 800;
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 12ch;
  margin: 16px 0;
  font-size: clamp(42px, 10vw, 76px);
  line-height: .96;
}

.hero p {
  max-width: 650px;
  color: rgba(255, 250, 242, .84);
  font-size: 18px;
  line-height: 1.55;
}

.cta {
  min-height: 56px;
  padding: 0 19px;
  border: 0;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4c58d, #bf7942);
  color: #17100d;
  box-shadow: 0 16px 34px rgba(197, 132, 77, .3);
  font-weight: 850;
  cursor: pointer;
}

main section { padding: 52px 0; }
h2 { font-size: clamp(30px, 7vw, 48px); line-height: 1.04; }
.lead { color: var(--muted); font-size: 17px; line-height: 1.6; }

.grid {
  display: grid;
  gap: 14px;
}

.card {
  padding: 21px;
  border-radius: 28px;
  background: rgba(255, 250, 242, .9);
  border: 1px solid rgba(255, 255, 255, .8);
  box-shadow: var(--shadow);
}

.card h3 { margin-bottom: 9px; font-size: 20px; }
.card p, .card li { color: var(--muted); line-height: 1.55; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.chip {
  min-height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 250, 242, .9);
  border: 1px solid rgba(34, 24, 16, .09);
  font-size: 14px;
  font-weight: 750;
}

.quote-form {
  display: grid;
  gap: 11px;
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 250, 242, .9);
  box-shadow: var(--shadow);
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(34, 24, 16, .12);
  border-radius: 17px;
  padding: 0 15px;
  background: #fff;
  color: var(--ink);
}

.quote-form textarea { min-height: 110px; padding-top: 15px; }
.form-success {
  padding: 15px;
  border-radius: 17px;
  background: rgba(89, 98, 74, .12);
  color: #35502d;
  font-weight: 750;
}
.form-success.is-error {
  background: rgba(150, 49, 49, .1);
  color: #7a2525;
}
.cta:disabled { cursor: wait; opacity: .68; }

.map {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 34px 18px;
  background: #17100d;
  color: #fffaf2;
}

.footer-links {
  width: min(100%, 1060px);
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 250, 242, .1);
  font-size: 14px;
  font-weight: 750;
}

@media (min-width: 720px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .quote-form { grid-template-columns: repeat(2, 1fr); }
  .quote-form textarea, .quote-form button, .form-success { grid-column: 1 / -1; }
}

@media (max-width: 719px) {
  .site-header { align-items: flex-start; }
  .brand span { display: none; }
  .nav { max-width: 270px; }
  .nav a { min-height: 38px; padding-inline: 9px; font-size: 12px; }
}
