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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #000;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
}


.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #000;
  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;
}

.title-cta {
  margin-top: 28px;
}

.hero {
  padding: 86px 0 76px;
  background:
    linear-gradient(120deg, rgba(165, 139, 38, .22), transparent 48%),
    var(--ink);
  color: var(--white);
}

.hero .eyebrow,
.hero .section-kicker {
  color: #d6c36b;
}

.hero .lead,
.hero .check-list {
  color: rgba(255, 255, 255, .78);
}

.hero .check-list li::before {
  color: #d6c36b;
}

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

.hero-copy {
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 0;
}

.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: 18px;
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

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

.lead.compact {
  margin-top: 18px;
  margin-bottom: 26px;
  font-weight: 700;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 800;
}

.hero-callout {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  color: var(--muted);
  line-height: 1.55;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.hero-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 620px;
  font-weight: 700;
}

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

.hero-panel {
  overflow: hidden;
  height: 100%;
  min-height: 460px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

.specialty-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: stretch;
}

.specialty-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 210px;
  padding: 26px 22px 24px;
  padding-top: 82px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.specialty-icon {
  position: absolute;
  top: 24px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  border-radius: 50%;
  color: var(--gold-dark);
  background: rgba(165, 139, 38, .14);
}

.specialty-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.specialty-grid h3 {
  min-height: 44px;
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.16;
}

.specialty-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.features {
  padding: 72px 0;
  background:
    linear-gradient(180deg, var(--white), var(--paper));
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: transparent;
  border: 0;
}

.feature-grid article {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.feature-grid article::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(165, 139, 38, .10);
}

.feature-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

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

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  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;
}

.copy-stack .check-list {
  margin: 18px 0 24px;
}

.inline-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 38px;
}

.inline-features article {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(29, 29, 27, .08);
}

.inline-features article::after {
  content: "";
  position: absolute;
  top: -34px;
  right: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(165, 139, 38, .12);
}

.inline-features span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 900;
}

.inline-features h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.inline-features p {
  margin-bottom: 0;
}

.image-section {
  background: var(--white);
}

.image-placeholder {
  min-height: 360px;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}

.image-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center;
}

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

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

.dark-areas .eyebrow {
  color: #d6c36b;
}

.dark-areas .section-heading h2 {
  color: var(--white);
}

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

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

.service-list {
  grid-template-columns: repeat(2, 1fr);
}

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

.area-list article::before {
  content: "✓";
  position: absolute;
  top: 25px;
  left: 24px;
  color: var(--gold);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.dark-areas .service-list article {
  padding: 30px 72px 30px 30px;
  background: var(--white);
}

.dark-areas .service-list article::before {
  top: 28px;
  right: 28px;
  left: auto;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 21px;
}

.service-carousel {
  position: relative;
  overflow: hidden;
  margin-inline: calc((100vw - min(1120px, calc(100vw - 40px))) / -2);
  padding: 6px 0 18px;
}

.service-carousel::before,
.service-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(90px, 16vw);
  pointer-events: none;
}

.service-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--ink), transparent);
}

.service-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--ink), transparent);
}

.service-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: calc((100vw - min(1120px, calc(100vw - 40px))) / 2);
  animation: service-scroll 120s linear infinite;
}

.service-carousel:hover .service-track {
  animation-play-state: paused;
}

.service-track article {
  position: relative;
  flex: 0 0 330px;
  min-height: 220px;
  padding: 30px 72px 30px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .20);
  cursor: pointer;
}

.service-track article:hover {
  transform: translateY(-3px);
}

.service-track article::before {
  content: "✓";
  position: absolute;
  top: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  font-size: 21px;
  font-weight: 800;
  line-height: 1;
}

.service-track h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.service-track p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

@keyframes service-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

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

.steps-section {
  background: var(--paper);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 44px;
  right: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(165, 139, 38, .12));
}

.steps-grid article {
  position: relative;
  z-index: 1;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(29, 29, 27, .08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.steps-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(165, 139, 38, .5);
  box-shadow: 0 22px 54px rgba(29, 29, 27, .13);
}

.steps-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border: 4px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 12px 26px rgba(111, 93, 18, .26);
  font-weight: 900;
}

.steps-grid h3 {
  margin-bottom: 10px;
  font-size: 21px;
  color: var(--ink);
}

.steps-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

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

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

.contact-checks li::before {
  color: #d6c36b;
}

.contact-button {
  margin-top: 10px;
}

.contact-card {
  align-self: start;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .06);
}

.contact-card img {
  width: min(340px, 100%);
  margin-bottom: 28px;
  border-radius: var(--radius);
}

.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: #000;
  border-top: 1px solid #000;
}

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

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

.footer-inner p {
  margin: 0;
}

@media (max-width: 1180px) {
  .specialty-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: auto;
    padding: 16px 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
  }

  .brand {
    order: 2;
    justify-self: center;
  }

  .brand img {
    width: 156px;
  }

  .menu-toggle {
    order: 1;
    display: inline-flex;
    justify-self: start;
  }

  .nav {
    order: 4;
    grid-column: 1 / -1;
    display: none;
    width: min(280px, 100%);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid #000;
    border-radius: 8px;
    background: #fff;
  }

  .site-header.menu-open .nav {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
    color: #000;
  }

  .header-action {
    order: 3;
    justify-self: end;
    min-height: 40px;
    margin: 0;
    padding-inline: 14px;
    font-size: 12px;
  }

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

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

  .hero-copy,
  .hero-panel {
    min-height: auto;
  }

  .hero-panel {
    aspect-ratio: 16 / 10;
  }

  .feature-grid,
  .area-list,
  .service-list,
  .steps-grid,
  .inline-features,
  .specialty-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .service-carousel {
    margin-inline: -14px;
  }

  .service-track {
    padding-inline: 14px;
    animation-duration: 104s;
  }

  .service-track article {
    flex-basis: min(82vw, 330px);
  }

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

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

@media (prefers-reduced-motion: reduce) {
  .service-track {
    animation: none;
  }

  .service-carousel {
    overflow-x: auto;
    scrollbar-width: thin;
  }
}

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

  h1 {
    font-size: 36px;
  }

  .lead {
    font-size: 17px;
  }

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

  .hero-checks {
    grid-template-columns: 1fr;
  }

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

  .area-list article {
    padding-left: 54px;
  }

  .area-list article::before {
    left: 22px;
  }
}
