:root {
  color-scheme: light;
  --ink: #201b17;
  --muted: #6d625a;
  --paper: #f5efe6;
  --ivory: #fffaf2;
  --linen: #e7d8c4;
  --sage: #697663;
  --cocoa: #6f4c3a;
  --charcoal: #25231f;
  --gold: #b79355;
}

* {
  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:
    linear-gradient(120deg, rgba(183, 147, 85, 0.16), transparent 38%),
    linear-gradient(145deg, #fffaf2 0%, #f3eadf 48%, #dfd0bc 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 {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(32, 27, 23, 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.25rem, 2vw, 1.75rem);
  font-weight: 500;
}

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

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

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

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

h1 {
  max-width: 790px;
  margin-bottom: 22px;
  font-size: clamp(3.15rem, 7.4vw, 6.2rem);
}

.intro {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.55vw, 1.24rem);
  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(32, 27, 23, 0.18);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}

.button.primary {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}

.button.secondary {
  background: rgba(255, 250, 242, 0.66);
}

.enquiry-card,
.crm-card {
  border: 1px solid rgba(32, 27, 23, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 30px 80px rgba(60, 44, 31, 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(--linen);
}

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

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

.lead.active {
  background: #28241f;
  color: var(--ivory);
}

.lead small {
  display: block;
  margin-bottom: 7px;
  color: #d6b06d;
  font-weight: 850;
  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(32, 27, 23, 0.12);
  background: rgba(255, 250, 242, 0.56);
}

.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(32, 27, 23, 0.16);
  border-radius: 999px;
  background: var(--ivory);
  font-size: 0.92rem;
}

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

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

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

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

article span {
  color: var(--gold);
  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: #25231f;
  color: var(--ivory);
}

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

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

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

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

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

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

.row strong {
  text-align: right;
}

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

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

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

button {
  min-height: 84px;
  padding: 16px;
  border: 1px solid rgba(32, 27, 23, 0.16);
  border-radius: 8px;
  background: var(--paper);
  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, 16vw, 4.55rem);
  }

  .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;
  }
}
