:root {
  --ink: #17212b;
  --muted: #607080;
  --line: #d8e0e7;
  --paper: #fbf4e6;
  --white: #ffffff;
  --teal: #2f7b4f;
  --navy: #244333;
  --gold: #c4923b;
  --rust: #b64c2d;
  --shadow: 0 24px 60px rgba(23, 33, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: rgba(15, 26, 36, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--gold);
  border-radius: 6px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 6px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  align-items: end;
  padding: 150px clamp(20px, 5vw, 72px) 36px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(27, 44, 33, 0.88), rgba(27, 44, 33, 0.55), rgba(91, 47, 31, 0.18)),
    url("assets/hero-real.jpg") center / cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(780px, 100%);
  padding-bottom: clamp(28px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
  text-transform: uppercase;
  max-width: 100%;
  white-space: nowrap;
}
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
  animation: float 3s ease-in-out infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
}

.whatsapp-float:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--rust);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(980px, 100%);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
}

.hero-panel div {
  min-height: 116px;
  padding: 22px;
  background: rgba(8, 21, 32, 0.68);
}

.hero-panel span {
  display: block;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
}

.hero-panel p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip p {
  margin: 0;
  padding: 20px;
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.section {
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.section-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--paper);
}

.section-intro > p,
.process-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  max-width: 980px;
  margin-bottom: 34px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  display: grid;
  grid-template-rows: 240px 1fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.08);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card div {
  padding: 24px;
}

.service-card p,
.market-list p,
.process-list p,
.credentials p,
.site-footer p {
  margin: 0;
  color: var(--muted);
}

.split-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  background: var(--white);
}

.process-copy {
  position: sticky;
  top: 110px;
  align-self: start;
}

.process-copy h2 {
  margin-bottom: 18px;
}

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

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
}

.process-list span {
  color: var(--rust);
  font-size: 24px;
  font-weight: 900;
}

.markets {
  background: #f4ead7;
}

.market-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.market-map,
.market-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.market-map img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.market-list {
  display: grid;
}

.market-list div {
  padding: 28px;
  border-bottom: 1px solid var(--line);
}

.market-list div:last-child {
  border-bottom: 0;
}

.credentials {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 36px;
  align-items: center;
  color: var(--white);
  background: #20392b;
}

.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.credential-grid div {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.credential-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 900;
}

.credentials p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  background: var(--white);
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfd;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #cbd6df;
  border-radius: 6px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #111a22;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(15, 26, 36, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero-panel,
  .trust-strip,
  .section-intro,
  .service-grid,
  .split-section,
  .market-layout,
  .credentials,
  .contact-section {
    grid-template-columns: 1fr;
  }

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

  .process-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 122px 18px 24px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-panel,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip p {
    padding: 14px;
    font-size: 13px;
  }

  .section {
    padding: 54px 18px;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-rows: 210px 1fr;
  }

  .site-footer {
    display: grid;
  }
}
