:root {
  --ink: #10130f;
  --ink-soft: #30372f;
  --paper: #f5f7f6;
  --white: #ffffff;
  --line: #dce3df;
  --gold: #d7a84a;
  --green: #128c7e;
  --green-dark: #075e54;
  --coral: #c4533e;
  --shadow: 0 18px 48px rgba(16, 19, 15, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
}

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

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-header {
  align-items: center;
  background: rgba(16, 19, 15, 0.9);
  color: var(--white);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px 5vw;
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--gold);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 13px;
  height: 38px;
  justify-content: center;
  width: 42px;
}

.header-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  font-weight: 700;
}

.header-actions a {
  opacity: 0.86;
}

.header-actions a:hover {
  opacity: 1;
}

.hero {
  align-items: center;
  color: var(--white);
  display: flex;
  height: min(640px, calc(100svh - 150px));
  min-height: 520px;
  overflow: hidden;
  position: relative;
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(16, 19, 15, 0.9) 0%, rgba(16, 19, 15, 0.7) 38%, rgba(16, 19, 15, 0.12) 100%),
    linear-gradient(180deg, rgba(16, 19, 15, 0.2) 0%, rgba(16, 19, 15, 0.62) 100%);
}

.hero-content {
  align-self: center;
  max-width: 760px;
  min-width: 0;
  padding: 48px 5vw 64px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow,
.section-kicker {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  overflow-wrap: break-word;
}

p {
  overflow-wrap: break-word;
}

h1 {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 18px;
}

h2 {
  font-size: 40px;
  line-height: 1.08;
  margin-bottom: 16px;
}

h3 {
  font-size: 22px;
  line-height: 1.18;
  margin-bottom: 10px;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  line-height: 1.55;
  max-width: 650px;
}

.mobile-break {
  display: inline;
}

.cta-row,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  text-align: center;
}

.button-whatsapp {
  background: var(--green);
  color: var(--white);
}

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

.button:hover {
  transform: translateY(-1px);
}

.trust-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
  padding-top: 18px;
}

.trust-strip span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.trust-strip strong {
  color: var(--white);
}

.intro-section,
.safety-section,
.contact-section {
  margin: 0 auto;
  max-width: 1180px;
  padding: 72px 5vw;
}

.intro-section {
  padding-top: 32px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  margin-bottom: 30px;
}

.section-heading p,
.safety-copy p,
.contact-section p,
.update-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

.update-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.update-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(16, 19, 15, 0.06);
  min-height: 220px;
  padding: 24px;
}

.update-card span {
  color: var(--coral);
  display: block;
  font-weight: 900;
  margin-bottom: 28px;
}

.proof-band {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-band div {
  background: rgba(255, 255, 255, 0.055);
  min-height: 130px;
  padding: 30px 5vw;
}

.proof-number {
  color: var(--gold);
  display: block;
  font-size: 36px;
  font-weight: 950;
  line-height: 1;
  margin-bottom: 8px;
}

.safety-section {
  align-items: start;
  display: grid;
  gap: 48px;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
}

.safety-list {
  display: grid;
  gap: 10px;
}

.safety-list div {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(16, 19, 15, 0.06);
  color: var(--ink-soft);
  font-weight: 750;
  line-height: 1.45;
  padding: 18px;
}

.contact-section {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.92fr) auto;
}

.contact-actions {
  justify-content: end;
}

.site-footer {
  align-items: center;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  gap: 16px;
  justify-content: space-between;
  padding: 26px 5vw;
}

.site-footer span {
  color: var(--white);
  font-weight: 850;
}

.whatsapp-float {
  align-items: center;
  background: var(--green);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  box-shadow: 0 16px 34px rgba(7, 94, 84, 0.34);
  color: var(--white);
  display: inline-flex;
  height: 62px;
  justify-content: center;
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  width: 62px;
  z-index: 30;
}

.whatsapp-float svg {
  fill: none;
  height: 34px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 34px;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--green-dark);
  box-shadow: 0 18px 42px rgba(7, 94, 84, 0.42);
  outline: none;
  transform: translateY(-2px);
}

.whatsapp-float::after {
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  content: attr(data-label);
  font-size: 13px;
  font-weight: 850;
  opacity: 0;
  padding: 9px 11px;
  pointer-events: none;
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  transition: opacity 160ms ease, transform 160ms ease;
  white-space: nowrap;
}

.whatsapp-float:hover::after,
.whatsapp-float:focus-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-actions {
    gap: 12px;
  }

  .hero {
    height: min(580px, calc(100svh - 165px));
    min-height: 430px;
  }

  .hero-content {
    align-self: end;
    padding-bottom: 40px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(16, 19, 15, 0.28) 0%, rgba(16, 19, 15, 0.94) 100%),
      linear-gradient(90deg, rgba(16, 19, 15, 0.58), rgba(16, 19, 15, 0.12));
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero-copy {
    font-size: 18px;
    max-width: 30ch;
  }

  .button {
    width: 100%;
  }

  .section-heading,
  .update-grid,
  .proof-band,
  .safety-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .intro-section,
  .safety-section,
  .contact-section {
    padding: 54px 5vw;
  }

  .contact-actions {
    justify-content: stretch;
  }

  .whatsapp-float {
    height: 58px;
    width: 58px;
  }

  .whatsapp-float::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 15px;
  }

  .header-actions {
    font-size: 13px;
  }

  h1 {
    font-size: 38px;
  }

  .trust-strip {
    display: none;
  }

  .mobile-break {
    display: block;
  }
}
