:root {
  --bg: #f6f1e8;
  --surface: #fffaf2;
  --ink: #2c231b;
  --muted: #6b5b4b;
  --accent: #b78a4a;
  --accent-dark: #8f6a33;
  --line: #e1d3c1;
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  line-height: 1.6;
  background: radial-gradient(900px 520px at 94% -8%, rgba(183, 138, 74, 0.2), transparent 60%), linear-gradient(180deg, #fbf7f0, var(--bg));
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

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

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

.skipLink {
  position: fixed;
  left: 12px;
  top: -44px;
  z-index: 260;
  background: #2a221a;
  color: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
}

.skipLink:focus {
  top: 12px;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 180;
  backdrop-filter: blur(10px);
  background: rgba(246, 241, 232, 0.92);
  border-bottom: 1px solid rgba(56, 43, 31, 0.1);
}

.topInfo,
.navWrap,
.mobileNav {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.topInfo {
  min-height: 36px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.topInfo a {
  text-decoration: underline;
  text-decoration-color: rgba(183, 138, 74, 0.45);
  text-underline-offset: 3px;
}

.navWrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.brand small {
  display: block;
  margin-top: 2px;
  font-family: "DM Sans", "Segoe UI", Arial, sans-serif;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #c89b5d, var(--accent));
  box-shadow: 0 10px 18px rgba(183, 138, 74, 0.25);
  font-weight: 800;
}

.desktopNav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.desktopNav a {
  color: #584533;
  font-weight: 700;
  border-bottom: 2px solid transparent;
  padding-bottom: 5px;
}

.desktopNav a:hover {
  border-color: rgba(183, 138, 74, 0.5);
}

.menuBtn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-weight: 700;
  padding: 8px 11px;
}

.mobileNav {
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
}

.mobileNav a {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 9px 11px;
  font-weight: 700;
}

main {
  max-width: 1150px;
  margin: 0 auto;
  padding: 32px 20px 0;
}

.hero {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 460px;
}

.heroMedia,
.heroOverlay {
  position: absolute;
  inset: 0;
}

.heroOverlay {
  background: linear-gradient(90deg, rgba(29, 21, 14, 0.72), rgba(29, 21, 14, 0.28));
}

.heroContent {
  position: relative;
  z-index: 2;
  padding: 30px;
  max-width: 660px;
  color: #f7f1e8;
}

.eyebrow {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 238, 213, 0.5);
  background: rgba(255, 238, 213, 0.18);
  color: #fff2df;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin-top: 14px;
  font-size: clamp(34px, 5.8vw, 62px);
  max-width: 12ch;
}

.hero p {
  margin-top: 10px;
  max-width: 56ch;
  color: rgba(247, 241, 232, 0.92);
}

.ctaRow {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  justify-content: center;
}

.btnPrimary {
  color: #fff;
  background: linear-gradient(145deg, #c89b5d, var(--accent));
  box-shadow: 0 10px 20px rgba(183, 138, 74, 0.28);
}

.btnGhost {
  color: #fdf4e8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 236, 209, 0.35);
}

.section {
  margin-top: 40px;
}

.sectionHead h2 {
  font-size: 48px;
}

.sectionHead p {
  margin-top: 8px;
  color: var(--muted);
  max-width: 63ch;
}

.projectGrid,
.whyGrid,
.contactGrid {
  margin-top: 12px;
  display: grid;
  gap: 12px;
}

.projectGrid,
.whyGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.projectCard,
.infoCard,
.formCard,
.locationMap,
.locationNotes {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.projectCard img {
  height: 180px;
}

.projectCard div {
  padding: 13px;
}

.projectCard p {
  margin: 7px 0 0;
  color: var(--muted);
}

.projectCard span {
  margin-top: 8px;
  display: inline-flex;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
}

.infoCard {
  padding: 14px;
}

.infoCard p {
  margin-top: 8px;
  color: var(--muted);
}

.locationLayout {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 12px;
}

.locationMap img {
  min-height: 250px;
}

.locationNotes {
  padding: 14px;
}

.locationNotes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.locationNotes li + li {
  margin-top: 9px;
}

.locationNotes strong {
  color: #5a452f;
}

.contactGrid {
  grid-template-columns: 1.2fr 0.8fr;
}

.formCard {
  padding: 15px;
}

.waForm {
  margin-top: 10px;
  display: grid;
  gap: 10px;
}

.waForm label {
  display: grid;
  gap: 5px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
}

.waForm input,
.waForm select,
.waForm textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 10px 11px;
}

.waForm .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.formStatus {
  margin: 10px 0 0;
  min-height: 18px;
  color: var(--muted);
  font-size: 12px;
}

.sideCard {
  display: grid;
  gap: 10px;
  align-content: start;
}

.siteFooter {
  margin-top: 34px;
  padding: 22px 0 34px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .desktopNav {
    display: none;
  }

  .menuBtn {
    display: inline-flex;
  }

  .projectGrid,
  .whyGrid,
  .locationLayout,
  .contactGrid,
  .waForm .row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .topInfo,
  .navWrap,
  .mobileNav,
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .sectionHead h2 {
    font-size: 38px;
  }
}
