:root {
  --red: #e8181a;
  --dark-red: #b50f11;
  --teal: #1a9fa8;
  --dark-teal: #0e7a82;
  --white: #ffffff;
  --off-white: #f9f7f4;
  --soft: #f2f6f7;
  --gray: #6b7280;
  --dark: #111827;
  --line: #e5e7eb;
  --gold: #f59e0b;
  --green-wa: #25d366;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--off-white);
  color: var(--dark);
  font-family: "DM Sans", Arial, sans-serif;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.float-btns {
  align-items: flex-end;
  bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: fixed;
  right: 20px;
  z-index: 1000;
}

.float-btn {
  align-items: center;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  color: var(--white);
  display: inline-flex;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  padding: 13px 20px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-btn:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  transform: translateY(-2px);
}

.float-btn.call {
  background: var(--red);
}

.float-btn.whatsapp {
  background: var(--green-wa);
}

.float-btn svg {
  height: 22px;
  width: 22px;
}

.topbar {
  align-items: center;
  background: var(--dark);
  color: var(--white);
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 8px;
  justify-content: space-between;
  padding: 9px 5%;
}

.topbar a {
  color: #f1f5f9;
  text-decoration: none;
}

.topbar-right {
  align-items: center;
  display: flex;
  gap: 18px;
}

.site-nav {
  align-items: center;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  display: flex;
  justify-content: space-between;
  padding: 14px 5%;
  position: sticky;
  top: 0;
  z-index: 900;
}

.brand-logo {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  text-decoration: none;
}

.brand-logo img {
  height: 58px;
  max-width: 190px;
  object-fit: contain;
  width: auto;
}

.brand-mark {
  align-items: center;
  background: var(--red);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  height: 50px;
  justify-content: center;
  width: 58px;
}

.brand-copy strong {
  color: var(--dark);
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand-copy small {
  color: var(--gray);
  display: block;
  font-size: 12px;
  margin-top: 4px;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 26px;
  list-style: none;
}

.nav-links a {
  color: var(--dark);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  border-radius: 999px;
  color: var(--white) !important;
  padding: 10px 22px;
}

.nav-cta:hover {
  background: var(--dark-red);
}

.hamburger {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  background: var(--dark);
  border-radius: 2px;
  display: block;
  height: 3px;
  width: 26px;
}

.mobile-menu {
  align-items: center;
  background: var(--white);
  display: none;
  flex-direction: column;
  gap: 26px;
  inset: 0;
  justify-content: center;
  position: fixed;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--dark);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
}

.mobile-close {
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 30px;
  position: absolute;
  right: 22px;
  top: 18px;
}

.page-hero {
  background: linear-gradient(135deg, #111827 0%, #1f1111 55%, #0e2f33 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.page-hero::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.26) 1px, transparent 1px);
  background-size: 38px 38px;
  content: "";
  inset: 0;
  opacity: 0.08;
  position: absolute;
}

.page-hero-inner {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 1fr 0.85fr;
  margin: 0 auto;
  max-width: 1200px;
  min-height: 430px;
  padding: 72px 5%;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: #ff9a9a;
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.page-hero h1,
.section-title,
.article h2,
.article h3 {
  font-family: "Playfair Display", Georgia, serif;
}

.page-hero h1 {
  font-size: 48px;
  line-height: 1.08;
  margin-bottom: 18px;
  max-width: 680px;
}

.page-hero p {
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.75;
  max-width: 620px;
}

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

.page-visual {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.page-visual img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.btn-primary,
.btn-secondary,
.btn-light {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 800;
  gap: 8px;
  justify-content: center;
  min-height: 48px;
  padding: 13px 25px;
  text-decoration: none;
  transition: background 0.2s ease, border 0.2s ease, transform 0.2s ease;
}

button.btn-primary,
button.btn-secondary,
button.btn-light {
  border: 0;
  cursor: pointer;
  font-family: inherit;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--dark-red);
  transform: translateY(-2px);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

.section {
  padding: 84px 5%;
}

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

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

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

.section-inner {
  margin: 0 auto;
  max-width: 1200px;
}

.section-header {
  margin-bottom: 42px;
  max-width: 720px;
}

.section-header.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-label {
  color: var(--red);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-title {
  color: var(--dark);
  font-size: 38px;
  line-height: 1.18;
  margin-bottom: 14px;
}

.dark .section-title {
  color: var(--white);
}

.section-sub {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.75;
}

.dark .section-sub {
  color: #cbd5e1;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.service-card,
.article-card,
.info-card,
.value-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.card-kicker {
  color: var(--teal);
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.card h2,
.card h3,
.service-card h2,
.service-card h3,
.info-card h3,
.value-card h3 {
  color: var(--dark);
  font-size: 21px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.card p,
.service-card p,
.article-card p,
.info-card p,
.value-card p {
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}

.service-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin-top: 18px;
}

.service-list li {
  color: var(--dark);
  font-size: 14px;
  line-height: 1.5;
  padding-left: 18px;
  position: relative;
}

.service-list li::before {
  background: var(--red);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 7px;
}

.feature-row {
  align-items: center;
  display: grid;
  gap: 54px;
  grid-template-columns: 0.9fr 1fr;
}

.feature-image {
  border-radius: 8px;
  overflow: hidden;
}

.feature-image img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.check-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin-top: 24px;
}

.check-list li {
  align-items: flex-start;
  color: var(--dark);
  display: flex;
  font-size: 15px;
  gap: 12px;
  line-height: 1.6;
}

.check-list li::before {
  background: #fee2e2;
  border-radius: 50%;
  color: var(--red);
  content: "✓";
  flex: 0 0 24px;
  font-size: 14px;
  font-weight: 900;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.process {
  counter-reset: step;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.process-step::before {
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  content: counter(step);
  counter-increment: step;
  display: block;
  font-weight: 900;
  height: 34px;
  line-height: 34px;
  margin-bottom: 16px;
  text-align: center;
  width: 34px;
}

.process-step h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.65;
}

.article-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
}

.article-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.article-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.tag {
  align-self: flex-start;
  background: #fee2e2;
  border-radius: 999px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 12px;
  padding: 5px 12px;
}

.article-card h2,
.article-card h3 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 21px;
  line-height: 1.32;
  margin-bottom: 10px;
}

.article-link {
  color: var(--red);
  font-size: 14px;
  font-weight: 800;
  margin-top: auto;
  padding-top: 18px;
  text-decoration: none;
}

.article-link:hover {
  text-decoration: underline;
}

.article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 24px;
  padding: 34px;
  scroll-margin-top: 96px;
}

.article h2 {
  font-size: 30px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.article h3 {
  font-size: 22px;
  margin: 26px 0 10px;
}

.article p,
.article li {
  color: #4b5563;
  font-size: 16px;
  line-height: 1.8;
}

.article ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0 20px;
}

.article-note {
  background: #fef3c7;
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  color: #5f4208;
  margin-top: 22px;
  padding: 16px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 38px;
  grid-template-columns: 0.85fr 1.15fr;
}

.contact-stack {
  display: grid;
  gap: 16px;
}

.info-card a {
  color: var(--red);
  font-weight: 800;
  text-decoration: none;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px;
}

.form-card h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 30px;
  margin-bottom: 8px;
}

.form-card p {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--dark);
  font-size: 14px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--dark);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(26, 159, 168, 0.14);
}

.map-embed {
  border-radius: 8px;
  height: 360px;
  margin-top: 28px;
  overflow: hidden;
}

.map-embed iframe {
  border: 0;
  height: 100%;
  width: 100%;
}

.cta-band {
  background: linear-gradient(135deg, var(--red), var(--dark-red));
  color: var(--white);
  padding: 64px 5%;
  text-align: center;
}

.cta-band h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.84);
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 680px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.site-footer {
  background: var(--dark);
  color: #94a3b8;
  padding: 58px 5% 28px;
}

.footer-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1.5fr 1fr 1fr;
  margin: 0 auto 42px;
  max-width: 1200px;
}

.footer-brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-brand img {
  height: 54px;
  max-width: 190px;
  object-fit: contain;
  width: auto;
}

.footer-brand .brand-copy strong {
  color: var(--white);
}

.footer-brand .brand-copy small,
.footer-about,
.footer-contact-item {
  color: #94a3b8;
}

.footer-about {
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
}

.site-footer h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
  list-style: none;
}

.footer-links a,
.footer-contact-item a {
  color: #94a3b8;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact-item a:hover {
  color: var(--white);
}

.footer-contact-item {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  color: #64748b;
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  gap: 12px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 22px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .page-hero-inner,
  .feature-row,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .page-visual {
    max-height: 360px;
  }

  .grid.three,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .brand-copy small {
    display: none;
  }

  .brand-copy strong {
    font-size: 16px;
  }

  .brand-mark {
    height: 44px;
    width: 50px;
  }

  .page-hero-inner {
    min-height: 0;
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .section {
    padding-bottom: 58px;
    padding-top: 58px;
  }

  .section-title {
    font-size: 30px;
  }

  .grid.two,
  .grid.three,
  .process,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .float-btn {
    border-radius: 999px;
    font-size: 14px;
    padding: 12px 16px;
  }

  .article,
  .form-card {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }
}
