:root {
  color-scheme: light;
  --ink: #121417;
  --muted: #5b626b;
  --surface: #ffffff;
  --soft: #eef1f4;
  --line: #d9dee5;
  --red: #d93025;
  --green: #197b43;
  --gold: #c5973d;
  --graphite: #252a31;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fbfcfd;
  line-height: 1.5;
  animation: pageFade 520ms ease-out both;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #fff;
  background: rgba(18, 20, 23, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  animation: headerDrop 620ms ease-out both;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  font-weight: 800;
}

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

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

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
}

.nav a,
.header-action {
  text-decoration: none;
}

.header-action {
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--graphite);
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
  animation: heroMotion 18s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 16, 18, 0.88) 0%, rgba(14, 16, 18, 0.62) 38%, rgba(14, 16, 18, 0.18) 76%),
    linear-gradient(0deg, rgba(14, 16, 18, 0.62) 0%, rgba(14, 16, 18, 0) 46%);
}

.hero-content {
  position: relative;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 82px;
  animation: riseIn 780ms 180ms ease-out both;
}

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

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

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.8rem, 10vw, 8.4rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 690px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.header-action:hover,
.contact-direct a:hover {
  transform: translateY(-2px);
}

.button.primary:hover,
.button.whatsapp:hover {
  box-shadow: 0 12px 28px rgba(18, 20, 23, 0.22);
}

.button.secondary:hover {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.14);
}

.button.primary {
  color: #fff;
  background: var(--red);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

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

.section {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(56px, 8vw, 96px) 0;
}

.intro,
.split,
.cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro > p,
.split-copy p,
.cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

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

.service-card,
.merch-row article {
  min-height: 236px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(26, 32, 39, 0.06);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.service-card:hover,
.merch-row article:hover,
.legal-content article:hover {
  transform: translateY(-5px);
  border-color: rgba(25, 123, 67, 0.34);
  box-shadow: 0 24px 58px rgba(26, 32, 39, 0.12);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  font-size: 0.86rem;
  font-weight: 900;
}

.service-card:nth-child(2n) .service-icon {
  background: var(--red);
}

.service-card:nth-child(3n) .service-icon {
  background: var(--gold);
}

.service-card h3,
.merch-row h3 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.service-card p,
.merch-row p {
  margin: 0;
  color: var(--muted);
}

.split {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

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

.timeline strong {
  color: var(--red);
  font-size: 1.05rem;
}

.timeline span {
  color: var(--muted);
}

.merch {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--max)) / 2));
  padding-right: max(18px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

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

.merch-row article {
  min-height: 178px;
}

.cta {
  align-items: stretch;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-direct a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-direct a:hover {
  border-color: rgba(25, 123, 67, 0.35);
  box-shadow: 0 12px 28px rgba(26, 32, 39, 0.08);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: var(--graphite);
  border-radius: 8px;
  color: #fff;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.contact-form textarea {
  resize: vertical;
}

.privacy-check {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  font-weight: 400;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red);
}

.privacy-check a {
  color: #fff;
  font-weight: 800;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-status.is-success,
.form-status.is-error {
  display: block;
}

.form-status.is-success {
  color: #12331f;
  background: #dff3e6;
}

.form-status.is-error {
  color: #4b1511;
  background: #f8dddd;
}

.footer {
  padding: clamp(46px, 7vw, 74px) clamp(18px, 4vw, 48px) 26px;
  color: rgba(255, 255, 255, 0.74);
  background: #121417;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer a:hover {
  color: #e5c474;
  transform: translateX(3px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(3, minmax(150px, 0.7fr));
  gap: clamp(26px, 5vw, 58px);
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer .brand {
  color: #fff;
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-col h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.84rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-col a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.96rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  width: min(var(--max), 100%);
  margin: 42px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.92rem;
}

.legal-header {
  position: sticky;
  background: rgba(18, 20, 23, 0.94);
}

.legal-page {
  background: #fbfcfd;
}

.legal-hero {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(64px, 9vw, 110px) 0 clamp(34px, 6vw, 64px);
}

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(3.2rem, 9vw, 7rem);
}

.legal-hero p:last-child {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.legal-content {
  display: grid;
  gap: 18px;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 clamp(64px, 9vw, 110px);
}

.legal-content article {
  min-width: 0;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(26, 32, 39, 0.05);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.1;
}

.legal-content h3 {
  margin: 24px 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.25;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content p + p {
  margin-top: 14px;
}

.legal-content ul {
  margin: 14px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--green);
  font-weight: 800;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
  margin: 16px 0 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
}

.legal-content table {
  width: max-content;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--muted);
  background: #fff;
}

.legal-content th,
.legal-content td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  color: var(--ink);
  background: var(--soft);
  font-size: 0.9rem;
}

.legal-content tr:last-child td {
  border-bottom: 0;
}

@media (max-width: 900px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav,
  .header-action {
    display: none;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(14, 16, 18, 0.9) 0%, rgba(14, 16, 18, 0.56) 76%),
      linear-gradient(0deg, rgba(14, 16, 18, 0.72) 0%, rgba(14, 16, 18, 0.1) 52%);
  }

  .intro,
  .split,
  .cta,
  .service-grid,
  .merch-row,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .service-card,
  .merch-row article {
    min-height: auto;
  }

  .footer-inner {
    gap: 30px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

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

  h1 {
    font-size: clamp(3rem, 18vw, 5.2rem);
  }

  .hero-content {
    width: min(var(--max), calc(100% - 28px));
    padding-bottom: 54px;
  }

  .button {
    width: 100%;
  }

  .contact-direct a {
    width: 100%;
    justify-content: center;
  }

  .timeline div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .legal-content article {
    padding: 20px;
  }

  .legal-content table {
    min-width: 560px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroMotion {
  from {
    transform: scale(1.03) translate3d(-0.8%, -0.4%, 0);
  }

  to {
    transform: scale(1.09) translate3d(0.8%, 0.5%, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
