:root {
  --ink: #16312f;
  --ink-soft: #3b5653;
  --paper: #f7f4ef;
  --surface: #ffffff;
  --line: #d9ded9;
  --teal: #0e5f59;
  --teal-dark: #0b3f3c;
  --gold: #c79a48;
  --clay: #9f6656;
  --mint: #dfece5;
  --shadow: 0 22px 70px rgba(18, 43, 41, 0.18);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
}

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

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(247, 244, 239, 0.88);
  border-bottom: 1px solid rgba(217, 222, 217, 0.7);
  display: flex;
  height: 72px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(20px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  font-weight: 750;
  min-width: max-content;
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  height: 42px;
  object-fit: contain;
  width: 42px;
}

.brand-text {
  font-size: 1.06rem;
  white-space: nowrap;
}

.nav {
  align-items: center;
  display: flex;
  gap: 28px;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.nav a:hover,
.mobile-nav a:hover {
  color: var(--teal);
}

.language-switcher {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 222, 217, 0.9);
  border-radius: 8px;
  display: inline-flex;
  gap: 2px;
  padding: 3px;
}

.language-switcher button {
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: var(--ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  min-height: 30px;
  min-width: 34px;
}

.language-switcher button.is-active {
  background: var(--teal);
  color: white;
}

.menu-button {
  background: transparent;
  border: 0;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-button span {
  background: var(--ink);
  border-radius: 99px;
  display: block;
  height: 2px;
  width: 24px;
}

.mobile-nav {
  background: rgba(247, 244, 239, 0.98);
  border-bottom: 1px solid var(--line);
  display: none;
  gap: 18px;
  left: 0;
  padding: 88px 24px 22px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 15;
}

.mobile-language {
  justify-self: start;
}

.hero {
  min-height: 92svh;
  overflow: hidden;
  position: relative;
}

.hero-image {
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(10, 33, 31, 0.88) 0%, rgba(10, 33, 31, 0.72) 42%, rgba(10, 33, 31, 0.2) 78%),
    linear-gradient(0deg, rgba(10, 33, 31, 0.28), rgba(10, 33, 31, 0));
  inset: 0;
  position: absolute;
}

.hero-content {
  color: white;
  max-width: 760px;
  padding: clamp(120px, 18vh, 190px) clamp(22px, 6vw, 72px) 56px;
  position: relative;
  z-index: 1;
}

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

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

h1 {
  font-size: clamp(2.8rem, 6.4vw, 6.2rem);
  letter-spacing: 0;
  line-height: 0.95;
  margin-bottom: 26px;
  max-width: 900px;
}

h2 {
  font-size: clamp(2rem, 3.3vw, 3.75rem);
  letter-spacing: 0;
  line-height: 1.02;
  margin-bottom: 0;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  margin-bottom: 12px;
}

p {
  line-height: 1.7;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.02rem, 1.4vw, 1.28rem);
  max-width: 690px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 30px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 720;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
}

.button.primary {
  background: var(--gold);
  color: #17221f;
}

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

.button.whatsapp {
  background: #1f8f57;
  color: white;
}

.button.outline {
  border: 1px solid var(--teal);
  color: var(--teal);
}

.trust-row {
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 8px 12px;
}

.section {
  padding: clamp(62px, 9vw, 120px) clamp(22px, 6vw, 72px);
}

.section-grid,
.split,
.contact {
  display: grid;
  gap: clamp(34px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.intro p,
.split p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.section-heading {
  margin: 0 auto 34px;
  max-width: 1120px;
}

.services {
  background: var(--surface);
}

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

.service-card {
  background: #fbfbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 254px;
  padding: 24px;
}

.card-number {
  color: var(--clay);
  display: inline-block;
  font-weight: 800;
  margin-bottom: 34px;
}

.service-card p,
.process-list p,
.feature-list p,
.contact-copy p,
.note p {
  color: var(--ink-soft);
}

.process {
  background: var(--teal-dark);
  color: white;
  padding: clamp(66px, 9vw, 118px) clamp(22px, 6vw, 72px);
}

.process-inner {
  margin: 0 auto;
  max-width: 1120px;
}

.process-list {
  display: grid;
  gap: 14px;
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.process-list li {
  align-items: flex-start;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 18px;
  grid-template-columns: 48px minmax(0, 1fr);
  padding: 22px 0;
}

.process-list span {
  align-items: center;
  background: rgba(199, 154, 72, 0.16);
  border: 1px solid rgba(199, 154, 72, 0.45);
  border-radius: 8px;
  color: var(--gold);
  display: inline-flex;
  font-weight: 800;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.process-list p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-list div {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}

.note {
  background: var(--mint);
  padding: 36px clamp(22px, 6vw, 72px);
}

.note p {
  font-size: 0.98rem;
  margin: 0 auto;
  max-width: 1040px;
}

.contact {
  background: var(--surface);
  padding: clamp(62px, 8vw, 110px) clamp(22px, 6vw, 72px);
}

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

.contact-form {
  background: #fbfbf9;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
}

label {
  color: var(--ink-soft);
  display: grid;
  font-size: 0.9rem;
  font-weight: 680;
  gap: 8px;
}

input,
select,
textarea {
  background: white;
  border: 1px solid #cfd8d1;
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 11px 12px;
  width: 100%;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(14, 95, 89, 0.14);
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  width: fit-content;
}

.form-status {
  color: var(--teal);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0;
}

.whatsapp-float {
  align-items: center;
  background: #25d366;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  bottom: 22px;
  box-shadow: 0 18px 45px rgba(18, 96, 52, 0.3);
  color: white;
  display: inline-flex;
  height: 56px;
  justify-content: center;
  position: fixed;
  right: 22px;
  transition: transform 160ms ease, box-shadow 160ms ease;
  width: 56px;
  z-index: 30;
}

.whatsapp-float:hover {
  box-shadow: 0 22px 52px rgba(18, 96, 52, 0.38);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  fill: currentColor;
  height: 32px;
  width: 32px;
}

.footer {
  align-items: center;
  background: #122927;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: space-between;
  padding: 28px clamp(22px, 6vw, 72px);
}

.footer p {
  margin: 0;
}

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

  .site-header > .language-switcher {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .mobile-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 90svh;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(10, 33, 31, 0.9), rgba(10, 33, 31, 0.56));
  }

  .hero-content {
    padding-top: 120px;
  }

  .section-grid,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 0;
  }
}

@media (max-width: 520px) {
  .site-header {
    height: 66px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    height: 38px;
    width: 38px;
  }

  .brand-text {
    font-size: 0.98rem;
  }

  h1 {
    font-size: 2.7rem;
  }

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

  .whatsapp-float {
    bottom: 16px;
    height: 52px;
    right: 16px;
    width: 52px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
