:root {
  --ink: #1d1d1b;
  --muted: #6f6f68;
  --line: #e7e2d6;
  --paper: #fbfaf6;
  --soft: #f2efe6;
  --gold: #a58b26;
  --gold-dark: #6f5d12;
  --whatsapp: #25d366;
  --whatsapp-dark: #128c4a;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 24px 70px rgba(29, 29, 27, .10);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 184px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--gold-dark);
}

.header-action,
.button,
.form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.header-action svg,
.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  fill: currentColor;
}

.header-action,
.button.primary,
.form button {
  color: var(--white);
  border-color: var(--whatsapp-dark);
  background: var(--whatsapp);
}

.header-action:hover,
.button.primary:hover,
.form button:hover {
  background: var(--whatsapp-dark);
}

.button.secondary {
  color: var(--gold-dark);
  background: transparent;
}

.hero {
  padding: 94px 0 76px;
  background:
    linear-gradient(120deg, rgba(111, 93, 18, .08), transparent 45%),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  align-items: center;
  gap: 56px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 6.4vw, 84px);
  line-height: .96;
  letter-spacing: 0;
}

.lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  max-width: 360px;
  margin-bottom: 28px;
}

.panel-line {
  width: 72px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--gold);
}

.hero-panel p,
.copy-stack p,
.area-list p,
.contact-copy p,
.contact-list {
  color: var(--muted);
  line-height: 1.7;
}

.features {
  padding: 34px 0;
  background: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .16);
}

.feature-grid article {
  padding: 34px;
  background: var(--ink);
  color: var(--white);
}

.feature-grid span {
  display: block;
  margin-bottom: 22px;
  color: #d6c36b;
  font-weight: 800;
}

.feature-grid h2 {
  margin-bottom: 12px;
  font-size: 23px;
}

.feature-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.65;
}

.split,
.areas,
.contact {
  padding: 92px 0;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 56px;
}

.split h2,
.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.areas {
  background: var(--soft);
}

.section-heading {
  max-width: 660px;
  margin-bottom: 36px;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.area-list article {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.area-list h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.area-list p {
  margin-bottom: 0;
}

.contact {
  background: var(--ink);
  color: var(--white);
}

.contact-copy p,
.contact-list {
  color: rgba(255, 255, 255, .72);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(165, 139, 38, .42);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(165, 139, 38, .08);
}

.social-links a:hover {
  color: var(--white);
  background: var(--gold);
}

.social-links svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.form input,
.form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  font: inherit;
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, .48);
}

.form button {
  width: 100%;
}

.site-footer {
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner img {
  width: 150px;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .brand img {
    width: 156px;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 12px;
  }

  .hero {
    padding: 58px 0 52px;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-grid,
  .area-list {
    grid-template-columns: 1fr;
  }

  .split,
  .areas,
  .contact {
    padding: 64px 0;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-panel,
  .feature-grid article,
  .area-list article,
  .form {
    padding: 22px;
  }
}
