/* ==========================================================================
   Prospect Builds — editorial design system (inspired by lanserring.com)
   ========================================================================== */

:root {
  --ink: #16140f;
  --ink-soft: #2a2620;
  --paper: #f7f3ea;
  --paper-dim: #efe9db;
  --walnut: #5c4630;
  --walnut-light: #8a6f4e;
  --line: #ddd3bd;
  --gray: #746e5f;
  --white: #ffffff;
  --maxw: 1320px;
  --font-serif: "Spectral", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.4em;
  color: var(--ink);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: 1.25rem; font-weight: 500; }

p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--walnut);
  margin-bottom: 1.1em;
}

.lede {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 560px;
  font-weight: 400;
}

/* ---------- Buttons / links ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid currentColor;
  border-radius: 0;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-dark { color: var(--ink); }
.btn-dark:hover { background: var(--ink); color: var(--paper); }

.btn-light { color: var(--white); }
.btn-light:hover { background: var(--white); color: var(--ink); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
}
.text-link:hover { opacity: 0.65; }

/* ---------- Fixed vertical enquire tab ---------- */
.enquire-tab {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  background: var(--ink);
  color: var(--paper);
  padding: 22px 11px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 200;
  transition: background 0.2s ease;
}
.enquire-tab:hover { background: var(--walnut); }
@media (max-width: 640px) { .enquire-tab { display: none; } }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 234, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand .word {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand small {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 2px;
}
.brand .mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ink);
  flex: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--walnut);
  border-color: var(--walnut);
}

.nav-cta { display: flex; align-items: center; gap: 26px; }
.nav-phone {
  display: none;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 22px; height: 1px; background: var(--ink); }

@media (min-width: 900px) { .nav-phone { display: inline-block; } }

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 480px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 15px 40px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
}

/* ---------- Hero (full-bleed, photo-style placeholder) ---------- */
.hero-media {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(180deg, rgba(22,20,15,0.55) 0%, rgba(22,20,15,0.15) 30%, rgba(22,20,15,0.72) 100%),
    linear-gradient(120deg, #4a3c2c 0%, #2a2620 45%, #1b1914 100%);
  color: var(--white);
  overflow: hidden;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(100deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 90px);
}
.hero-media .container { position: relative; padding-bottom: 72px; padding-top: 140px; }
.hero-media .eyebrow { color: #e8d3a8; text-shadow: 0 1px 8px rgba(0,0,0,0.4); }
.hero-media h1 { color: var(--white); max-width: 820px; text-shadow: 0 2px 16px rgba(0,0,0,0.35); }
.hero-media .lede { color: #ded7c6; max-width: 540px; }
.hero-media .hero-lede {
  color: #f5f1e6;
  max-width: 620px;
  font-size: 1.2rem;
  line-height: 1.7;
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
.hero-media .hero-actions { margin-top: 30px; }

.hero-media.small { min-height: 46vh; }
.hero-media.small .container { padding-top: 120px; padding-bottom: 56px; }

.hero-media.has-photo {
  background-size: cover;
  background-position: center;
}
.hero-media.has-photo::after { display: none; }

.breadcrumb {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9c0a9;
  margin-bottom: 18px;
}
.breadcrumb a { color: #d8c39c; }

/* ---------- Sections ---------- */
section { padding: 110px 0; }
.section-tight { padding: 70px 0; }
.section-paper { background: var(--paper); }
.section-dim { background: var(--paper-dim); }
.section-dark {
  background: var(--ink);
  color: var(--paper);
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #c7c1b1; }
.section-dark .eyebrow { color: #cbaa78; }

.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  max-width: none;
}
@media (max-width: 760px) { .section-head.split { flex-direction: column; align-items: flex-start; } }

/* ---------- Editorial divider (big statement block) ---------- */
.divider {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0;
  text-align: left;
}
.divider .container { display: flex; flex-direction: column; gap: 4px; }
.divider h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0;
}
.divider h2.dim { color: #77705f; }

/* ---------- Editorial grid (project/service tiles, no cards) ---------- */
.egrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 32px;
}
.egrid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.egrid.cols-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 980px) {
  .egrid, .egrid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .egrid, .egrid.cols-4, .egrid.cols-2 { grid-template-columns: 1fr; }
}

.etile { display: block; }
.etile .photo-tile { margin-bottom: 20px; }
.etile .label { display: block; margin-bottom: 8px; }
.etile h3 { margin-bottom: 8px; }
.etile p { color: var(--gray); font-size: 0.95rem; margin-bottom: 0; }
a.etile:hover .photo-tile { opacity: 0.85; }

.photo-tile {
  background: linear-gradient(150deg, #cabf9f, #a8946c 55%, #7c6949);
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  text-align: center;
  padding: 12px;
  letter-spacing: 0.03em;
}
.photo-tile.tall { aspect-ratio: 3 / 4; }
.photo-tile.wide { aspect-ratio: 16 / 10; }
.photo-tile.dark { background: linear-gradient(150deg, #3a352b, #201d17 65%, #14120e); }

.real-photo {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  background: #14120e;
}
.real-photo.tall { aspect-ratio: 3 / 4; }
.real-photo.wide { aspect-ratio: 16 / 10; }
.real-photo.square { aspect-ratio: 1 / 1; }

/* ---------- Two-column feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}
.feature.reverse { grid-template-columns: 1.1fr 0.9fr; }
.feature.reverse .feature-media { order: 2; }
@media (max-width: 860px) {
  .feature, .feature.reverse { grid-template-columns: 1fr; }
  .feature.reverse .feature-media { order: 0; }
}
.feature ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.feature ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}
.feature ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--walnut);
}

/* ---------- Numbered process list ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-list { grid-template-columns: 1fr; } }
.process-item .num {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--walnut);
  display: block;
  margin-bottom: 14px;
}
.process-item h3 { margin-bottom: 8px; }
.process-item p { color: var(--gray); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Testimonial ---------- */
.testimonial { max-width: 760px; }
.testimonial .stars { color: var(--walnut-light); letter-spacing: 3px; margin-bottom: 22px; font-size: 0.9rem; }
.testimonial p.quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: inherit;
  margin-bottom: 26px;
  line-height: 1.4;
}
.testimonial .who { font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; }
.testimonial .who span {
  display: block;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 2px;
  letter-spacing: 0;
}

/* ---------- Service area list ---------- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 28px;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.area-list span:not(:last-child)::after {
  content: "/";
  margin-left: 28px;
  color: var(--line);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; padding: 0; margin: 28px 0 0; }
.info-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.info-list .label { display: block; margin-bottom: 4px; }
.info-list .value { font-family: var(--font-serif); font-size: 1.15rem; color: var(--ink); }

form.contact-form { display: grid; gap: 22px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--gray);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 0;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  background: transparent;
  color: var(--ink);
}
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--walnut); }
.field textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 0.88rem; color: var(--gray); }

.map-note {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 28px;
  font-size: 0.88rem;
  color: var(--gray);
}

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #b9b3a1; padding: 90px 0 30px; }
.footer-brand-block { margin-bottom: 70px; }
.footer-wordmark { font-family: var(--font-serif); font-size: 2.2rem; color: var(--white); margin-bottom: 4px; }
.footer-tagline { font-family: var(--font-serif); font-style: italic; font-size: 1.4rem; color: #746c56; }

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8f8874;
  margin-bottom: 20px;
}
.site-footer p { color: #a29b87; font-size: 0.92rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 12px; }
.site-footer a { color: var(--paper); font-size: 0.92rem; }
.site-footer a:hover { color: #cbaa78; }

.newsletter-row { display: flex; gap: 0; margin-top: 6px; }
.newsletter-row input {
  flex: 1;
  padding: 13px 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-right: none;
  color: var(--white);
  font-size: 0.9rem;
}
.newsletter-row button {
  padding: 13px 20px;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.footer-bottom {
  padding-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.78rem;
  color: #736c59;
}
.footer-bottom a { color: #736c59; }
.footer-bottom a:hover { color: var(--paper); }

/* ---------- Placeholder dev banner (safe to delete) ---------- */
.dev-note {
  background: #2a2620;
  color: #e4dcc4;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  padding: 10px 24px;
  text-align: center;
  position: relative;
  z-index: 300;
}
.dev-note strong { font-weight: 700; }
