:root {
  color-scheme: light;
  --ink: #221b16;
  --muted: #6b6057;
  --paper: #f6f0e8;
  --stone: #ded1c0;
  --moss: #4e6a4f;
  --gorse: #d7a72f;
  --clay: #9b5f43;
  --white: #fffaf3;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top right, rgba(215, 167, 47, 0.2), transparent 28rem),
    linear-gradient(135deg, #fffaf3 0%, #f2eadf 46%, #e2d4c3 100%);
}

main {
  overflow: hidden;
}

.hero {
  min-height: 86vh;
  padding: 28px clamp(18px, 4vw, 58px) 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  border-bottom: 1px solid rgba(34, 27, 22, 0.16);
  color: var(--muted);
  font-size: 0.88rem;
}

nav strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 500;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  width: min(1180px, 100%);
  margin: 72px auto 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.76rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

.intro {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.65;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid rgba(34, 27, 22, 0.18);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.button.secondary {
  background: rgba(255, 250, 243, 0.64);
}

.enquiry-card,
.crm-card {
  border: 1px solid rgba(34, 27, 22, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.76);
  box-shadow: 0 30px 80px rgba(62, 43, 27, 0.16);
  backdrop-filter: blur(14px);
}

.enquiry-card {
  padding: 18px;
}

.card-head {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.card-head span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--stone);
}

.lead {
  padding: 18px;
  border: 1px solid rgba(34, 27, 22, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.44);
}

.lead + .lead {
  margin-top: 12px;
}

.lead.active {
  background: #273322;
  color: var(--white);
}

.lead small {
  display: block;
  margin-bottom: 7px;
  color: var(--gorse);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.lead strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.lead p {
  margin: 0;
  color: inherit;
  line-height: 1.5;
  opacity: 0.78;
}

.brand-strip,
.capture,
.whatsapp,
.faq {
  padding: 70px clamp(18px, 4vw, 58px);
}

.brand-strip {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 26px;
  align-items: start;
  border-block: 1px solid rgba(34, 27, 22, 0.12);
  background: rgba(255, 250, 243, 0.54);
}

.brand-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.chips span {
  padding: 9px 12px;
  border: 1px solid rgba(34, 27, 22, 0.16);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.92rem;
}

.section-kicker {
  max-width: 800px;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(2.15rem, 4.2vw, 4.2rem);
}

.capture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

article {
  min-height: 245px;
  padding: 24px;
  border: 1px solid rgba(34, 27, 22, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.66);
}

article span {
  color: var(--clay);
  font-weight: 900;
}

h3 {
  margin: 40px 0 10px;
  font-size: 1.3rem;
}

article p,
.panel p {
  color: var(--muted);
  line-height: 1.6;
}

.whatsapp {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  background: #283323;
  color: var(--white);
}

.whatsapp .eyebrow,
.whatsapp .panel p {
  color: #e4c96a;
}

.whatsapp h2 {
  margin-bottom: 18px;
}

.crm-card {
  padding: 20px;
  background: #fffaf3;
  color: var(--ink);
}

.row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(34, 27, 22, 0.12);
}

.row:last-child {
  border-bottom: 0;
}

.row span {
  color: var(--muted);
}

.row strong {
  text-align: right;
}

.faq {
  text-align: center;
  background: var(--white);
}

.faq h2 {
  max-width: 780px;
  margin-inline: auto;
}

.questions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

button {
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(34, 27, 22, 0.16);
  border-radius: 8px;
  background: #f6f0e8;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  cursor: default;
}

@media (max-width: 820px) {
  .hero {
    min-height: auto;
    padding-top: 20px;
  }

  nav {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 14px;
  }

  .hero-grid,
  .brand-strip,
  .whatsapp {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    margin-top: 44px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.65rem);
  }

  .capture-grid,
  .questions {
    grid-template-columns: 1fr;
  }

  .brand-strip,
  .capture,
  .whatsapp,
  .faq {
    padding-block: 52px;
  }

  article {
    min-height: auto;
  }

  .row {
    display: block;
  }

  .row strong {
    display: block;
    margin-top: 6px;
    text-align: left;
  }
}
