:root {
  --black: #050606;
  --ink: #0d0f0f;
  --panel: #111313;
  --panel-soft: #171818;
  --text: #f7f1e8;
  --muted: #c8bfb2;
  --dim: #81776b;
  --gold: #d9ae63;
  --gold-light: #f4d89b;
  --line: rgba(244, 216, 155, 0.27);
  --green: #20362f;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.52);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(32, 54, 47, 0.23), transparent 34rem),
    radial-gradient(circle at 18% 12%, rgba(217, 174, 99, 0.11), transparent 20rem),
    var(--black);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 0.8rem 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 86px;
  height: 84px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-nav a,
.text-link {
  transition: color 180ms ease;
}

.site-nav a:hover,
.text-link:hover {
  color: var(--gold-light);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--line);
  padding: 0.78rem 1.1rem;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.nav-cta {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 216, 155, 0.75);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.button:disabled:hover {
  transform: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 2rem));
  min-height: calc(100svh - 106px);
  margin: 0 auto;
  padding: clamp(2rem, 6vw, 5rem) 0 clamp(2.75rem, 7vw, 5.5rem);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 1.5rem;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.72;
}

.hero-media {
  position: relative;
  grid-row: 1 / span 2;
  isolation: isolate;
}

.hero-media::before {
  position: absolute;
  inset: 7%;
  z-index: -1;
  content: "";
  background: rgba(217, 174, 99, 0.15);
  filter: blur(48px);
}

.hero-media img {
  width: min(430px, 100%);
  margin: 0 auto;
  border: 1px solid rgba(244, 216, 155, 0.12);
  box-shadow: var(--shadow);
}

.hero-content {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.button.primary {
  border-color: rgba(217, 174, 99, 0.85);
  background: linear-gradient(135deg, var(--gold), #8d6734);
  color: #12100c;
  box-shadow: 0 18px 42px rgba(217, 174, 99, 0.16);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
}

.hero-stats {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(88px, 1fr));
  width: 100%;
  max-width: 560px;
  border: 1px solid rgba(244, 216, 155, 0.17);
  background: rgba(13, 15, 15, 0.74);
  box-shadow: var(--shadow);
}

.hero-stats div {
  padding: 1rem;
  border-right: 1px solid rgba(244, 216, 155, 0.15);
}

.hero-stats div:last-child {
  border-right: 0;
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--gold-light);
  font-size: 1.1rem;
}

.hero-stats span {
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.intro-band {
  border-block: 1px solid rgba(244, 216, 155, 0.17);
  background: linear-gradient(90deg, rgba(217, 174, 99, 0.08), rgba(32, 54, 47, 0.34));
}

.intro-band p {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 1.85rem) 0;
  color: var(--text);
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 500;
  text-align: center;
}

.services-section,
.approach-section,
.profile-section,
.contact-section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.service-card {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(244, 216, 155, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  padding: clamp(1.35rem, 3vw, 2rem);
}

.service-icon {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 2rem;
  color: var(--gold-light);
}

.hexagon::before {
  position: absolute;
  inset: 8px;
  content: "";
  border: 2px solid currentColor;
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
}

.hexagon::after {
  position: absolute;
  inset: 19px;
  content: "";
  border: 1px solid currentColor;
  clip-path: polygon(25% 4%, 75% 4%, 100% 50%, 75% 96%, 25% 96%, 0 50%);
  opacity: 0.7;
}

.link-icon span {
  position: absolute;
  width: 44px;
  height: 22px;
  border: 4px solid currentColor;
  border-radius: 999px;
  transform: rotate(-45deg);
}

.link-icon span:first-child {
  top: 15px;
  left: 7px;
}

.link-icon span:last-child {
  right: 7px;
  bottom: 15px;
}

.triangle::before,
.triangle::after {
  position: absolute;
  content: "";
  clip-path: polygon(50% 5%, 96% 90%, 4% 90%);
}

.triangle::before {
  inset: 4px;
  background: currentColor;
}

.triangle::after {
  inset: 10px;
  background: var(--panel);
}

.service-card h3 {
  margin-bottom: 1.3rem;
  color: var(--gold-light);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
}

.service-card ul {
  display: grid;
  gap: 1.1rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  list-style: none;
}

.service-card li {
  position: relative;
  padding-left: 1.15rem;
}

.service-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--gold);
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid rgba(244, 216, 155, 0.18);
}

.approach-copy {
  position: sticky;
  top: 126px;
}

.approach-copy p:not(.eyebrow),
.profile-panel p,
.contact-section p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.approach-steps {
  display: grid;
  gap: 1rem;
}

.approach-steps article {
  border: 1px solid rgba(244, 216, 155, 0.16);
  background: rgba(17, 19, 19, 0.82);
  padding: clamp(1.25rem, 3vw, 1.75rem);
}

.approach-steps span {
  display: inline-flex;
  margin-bottom: 1.1rem;
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 800;
}

.approach-steps h3 {
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.approach-steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.profile-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border-block: 1px solid rgba(244, 216, 155, 0.18);
}

.profile-panel {
  background:
    linear-gradient(145deg, rgba(32, 54, 47, 0.58), rgba(217, 174, 99, 0.08)),
    var(--panel-soft);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.profile-panel h2 {
  color: var(--gold-light);
}

.profile-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.profile-points span {
  border: 1px solid rgba(244, 216, 155, 0.17);
  padding: 1rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-weight: 700;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.contact-section h2 {
  max-width: 760px;
}

.contact-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: stretch;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-info {
  border: 1px solid rgba(244, 216, 155, 0.16);
  background: rgba(255, 255, 255, 0.025);
  padding: clamp(1rem, 2.2vw, 1.35rem);
}

.company-info h3 {
  margin-bottom: 1rem;
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0;
}

.company-info dl {
  display: grid;
  gap: 0.85rem;
  margin: 0;
}

.company-info div {
  display: grid;
  gap: 0.18rem;
}

.company-info dt {
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-info dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.company-info a,
.site-footer a {
  color: var(--gold-light);
  transition: color 180ms ease;
}

.company-info a:hover,
.site-footer a:hover {
  color: var(--text);
}

.contact-form {
  display: grid;
  gap: 1rem;
  width: 100%;
  border: 1px solid rgba(244, 216, 155, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--panel);
  padding: clamp(1.2rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form span {
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 216, 155, 0.2);
  border-radius: 0;
  background: rgba(5, 6, 6, 0.72);
  color: var(--text);
  font: inherit;
  line-height: 1.4;
  outline: 0;
  padding: 0.95rem 1rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(244, 216, 155, 0.82);
  background: rgba(5, 6, 6, 0.9);
  box-shadow: 0 0 0 3px rgba(217, 174, 99, 0.13);
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.2rem;
}

.form-status {
  flex: 1 1 220px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.form-status.success {
  color: #b8e6cb;
}

.form-status.error {
  color: #f0b8a9;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  border-top: 1px solid rgba(244, 216, 155, 0.14);
  margin-top: 0.5rem;
  padding-top: 1rem;
}

.contact-links a {
  color: var(--gold-light);
  font-size: 0.92rem;
  font-weight: 800;
  transition: color 180ms ease;
}

.contact-links a:hover {
  color: var(--text);
}

.text-link {
  color: var(--gold-light);
  font-weight: 700;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1rem;
  border-top: 1px solid rgba(244, 216, 155, 0.16);
  padding: 2rem 1rem;
  color: var(--dim);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.site-footer p,
.site-footer span {
  margin: 0;
}

.site-footer p {
  color: var(--muted);
}

.site-footer span {
  position: relative;
}

.whatsapp-widget {
  position: fixed;
  right: clamp(0.85rem, 2vw, 1.35rem);
  bottom: clamp(0.85rem, 2vw, 1.35rem);
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 0.7rem;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.whatsapp-widget.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.whatsapp-panel {
  display: none;
  overflow: hidden;
  width: min(390px, calc(100vw - 1.5rem));
  border-radius: 18px;
  background: #f4f0e8;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  color: #222;
}

.whatsapp-widget.is-open .whatsapp-panel {
  display: block;
  animation: whatsappPanelIn 220ms ease both;
}

.whatsapp-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 86px;
  background: #078c74;
  padding: 1rem 1.15rem;
  color: #fff;
}

.whatsapp-avatar {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: #101312;
  object-fit: cover;
}

.whatsapp-header h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
  line-height: 1.1;
}

.whatsapp-header p {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 800;
}

.whatsapp-header p span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #39d353;
  box-shadow: 0 0 0 3px rgba(57, 211, 83, 0.18);
}

.whatsapp-close {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  font: inherit;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.whatsapp-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.whatsapp-conversation {
  min-height: 178px;
  padding: 1.1rem 1.15rem 0.85rem;
  background:
    radial-gradient(circle at 15px 15px, rgba(7, 140, 116, 0.06) 0 2px, transparent 3px),
    radial-gradient(circle at 45px 38px, rgba(217, 174, 99, 0.08) 0 2px, transparent 3px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(236, 229, 221, 0.84));
  background-size: 56px 56px, 62px 62px, auto;
}

.whatsapp-conversation time {
  display: block;
  margin-bottom: 0.75rem;
  color: #9d968e;
  font-size: 0.85rem;
  text-align: center;
}

.whatsapp-message {
  width: min(285px, 94%);
  border-radius: 0 16px 16px;
  background: #fff;
  padding: 0.88rem 1rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.whatsapp-message p {
  margin: 0;
  color: #1f1f1f;
  font-size: 0.96rem;
  line-height: 1.35;
}

.whatsapp-compose {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  align-items: center;
  background: #fff;
  padding: 0.75rem 0.82rem 0.75rem 1rem;
}

.whatsapp-compose input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: #b6b4b2;
  font: inherit;
  font-size: 0.95rem;
  outline: 0;
}

.whatsapp-compose input::placeholder {
  color: #b6b4b2;
}

.whatsapp-compose input:focus {
  color: #222;
}

.whatsapp-compose button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 1rem;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

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

.whatsapp-compose button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.whatsapp-launcher {
  position: relative;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(37, 211, 102, 0.32);
  font: inherit;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.whatsapp-launcher:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 22px 52px rgba(37, 211, 102, 0.4);
}

.whatsapp-launcher i {
  font-size: 2.1rem;
}

.whatsapp-launcher span {
  position: absolute;
  top: 4px;
  right: 5px;
  width: 11px;
  height: 11px;
  border: 2px solid #25d366;
  border-radius: 50%;
  background: #ff253a;
}

@keyframes whatsappPanelIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }

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

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .approach-section,
  .profile-section,
  .contact-section,
  .contact-top {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .hero-media {
    grid-row: auto;
    order: -1;
  }

  .hero-media img {
    width: min(310px, 86vw);
  }

  .hero-stats {
    position: static;
    width: 100%;
    margin-top: 1.5rem;
  }

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

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

  .approach-copy {
    position: static;
  }

  .contact-copy {
    display: block;
  }

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

@media (max-width: 560px) {
  .site-header {
    width: min(100% - 1rem, 1180px);
    gap: 0.75rem;
  }

  .brand img {
    width: 70px;
    height: 68px;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0.65rem 0.78rem;
    font-size: 0.82rem;
  }

  .hero,
  .services-section,
  .approach-section,
  .profile-section,
  .contact-section,
  .intro-band p {
    width: min(100% - 1.25rem, 1180px);
  }

  .hero-actions {
    align-items: stretch;
  }

  .button,
  .nav-cta {
    text-align: center;
  }

  .button {
    width: 100%;
  }

  .hero-stats,
  .profile-points,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-footer .button {
    width: 100%;
  }

  .hero-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(244, 216, 155, 0.15);
  }

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

  .whatsapp-widget {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .whatsapp-panel {
    width: min(360px, calc(100vw - 1.5rem));
    border-radius: 16px;
  }

  .whatsapp-header {
    min-height: 82px;
    padding: 0.9rem;
  }

  .whatsapp-avatar {
    width: 48px;
    height: 48px;
  }

  .whatsapp-header h2 {
    font-size: 1rem;
  }

  .whatsapp-conversation {
    min-height: 160px;
    padding: 0.9rem;
  }

  .whatsapp-launcher {
    width: 56px;
    height: 56px;
  }

  .whatsapp-launcher i {
    font-size: 1.9rem;
  }
}
