:root {
  --bg: #0d0b08;
  --bg-soft: #15110b;
  --panel: #1c1710;
  --panel-2: #221b12;
  --text: #f7efd9;
  --muted: #b6a98d;
  --gold: #d7a83f;
  --gold-soft: #f1d081;
  --border: rgba(215, 168, 63, 0.25);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--border);
  background: rgba(13, 11, 8, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  padding: 9px;
}

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

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px 18px 64px;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(215, 168, 63, 0.16), transparent 32%),
    linear-gradient(180deg, rgba(13, 11, 8, 0.5), var(--bg) 92%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  text-align: center;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.95;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 13vw, 9rem);
  text-transform: uppercase;
}

h1 span,
h2 span {
  color: var(--gold);
}

h2 {
  font-size: clamp(2.4rem, 7vw, 4.2rem);
}

h3 {
  margin: 0;
  line-height: 1.25;
}

p {
  margin: 0;
}

.hero-copy {
  max-width: 620px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(215, 168, 63, 0.08);
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.trust-badge img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary,
.button.product,
.button.small {
  background: var(--gold);
  color: #120e08;
}

.button.ghost {
  border: 1px solid var(--gold);
  color: var(--gold-soft);
}

.button.product {
  width: 100%;
  border-radius: 12px;
  margin-top: 8px;
}

.button.small {
  border-radius: 12px;
  white-space: nowrap;
}

.button.outline {
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-soft);
}

.jobs-section {
  background: #0b0a08;
  border-top: 1px solid rgba(215, 168, 63, 0.16);
  border-bottom: 1px solid rgba(215, 168, 63, 0.16);
  padding-top: 32px;
}

.jobs-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

.jobs-heading h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  line-height: 1.1;
  font-weight: 800;
}

.jobs-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.jobs-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(1140px, calc(100% - 36px));
  margin: 0 auto;
}

.container.narrow {
  width: min(760px, calc(100% - 36px));
}

.section {
  padding: clamp(72px, 10vw, 120px) 0;
}

.muted {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 7vw, 80px);
  align-items: center;
}

.rich-text {
  display: grid;
  gap: 16px;
  margin-top: 26px;
  color: var(--muted);
}

.rich-text strong {
  color: var(--gold-soft);
}

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

.value-grid article,
.feature-grid article,
.panel,
.certificate-card,
.product-card,
.job-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  box-shadow: var(--shadow);
}

.value-grid article {
  min-height: 150px;
  padding: 24px;
  border-radius: 18px;
}

.value-grid span {
  color: var(--gold);
  font-weight: 800;
}

.value-grid h3 {
  margin-top: 24px;
  font-size: 1rem;
}

.section-heading {
  margin-bottom: 42px;
}

.center {
  text-align: center;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.panel {
  padding: 34px;
  border-radius: 20px;
}

.panel-label {
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.certificate-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.certificate-card,
.feature-grid article {
  padding: 30px;
  border-radius: 20px;
}

.certificate-card {
  text-align: center;
}

.certificate-card img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  margin: 0 auto 18px;
}

.certificate-card h3,
.feature-grid h3 {
  color: var(--gold-soft);
  margin-bottom: 10px;
}

.certificate-card p,
.feature-grid p,
.panel p {
  color: var(--muted);
}

.cta-section {
  background:
    linear-gradient(180deg, transparent, rgba(215, 168, 63, 0.08)),
    var(--bg);
}

.page-main {
  padding-top: 72px;
}

.page-hero {
  padding: 96px 0 48px;
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 168, 63, 0.22), transparent 36%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(3rem, 9vw, 6rem);
}

.page-hero p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
}

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

.product-card {
  border-radius: 20px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--panel);
}

.product-body {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-body h2 {
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.16rem;
  line-height: 1.25;
}

.product-body p:not(.price) {
  color: var(--muted);
  font-size: 0.94rem;
}

.price {
  color: var(--gold);
  font-weight: 900;
}

.map-frame {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  aspect-ratio: 16 / 9;
  background: var(--panel);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-frame + .address {
  margin-bottom: 0;
}

.address,
.note {
  margin-top: 18px;
  color: var(--muted);
}

.note a {
  color: var(--gold-soft);
  text-decoration: underline;
}

.jobs-section .note {
  margin-top: 34px;
  font-size: 1.08rem;
}

.jobs-section .note a {
  color: #f0bf36;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.job-list {
  display: grid;
  gap: 24px;
}

.job-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 146px;
  padding: 34px 36px;
  border-radius: 16px;
}

.job-card h3 {
  color: #ffffff;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.job-card p {
  margin-top: 6px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}

.job-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 18px;
}

.job-actions .button {
  min-width: 132px;
  min-height: 62px;
  padding: 0 28px;
  border-radius: 12px;
  font-size: 1rem;
}

.job-actions .button.small:not(.outline) {
  min-width: 226px;
  background: #e7b638;
  color: #080704;
}

.job-actions .button.outline {
  border-color: #e7b638;
  color: #e7b638;
  background: transparent;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.modal-card h2 {
  padding-right: 40px;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: transparent;
  color: var(--gold-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.modal-meta {
  margin-top: 8px;
  color: var(--muted);
}

.modal-list {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.modal-list li::marker {
  color: var(--gold);
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-actions .button {
  min-height: 44px;
  border-radius: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--border);
  color: var(--muted);
  background: #090806;
}

.site-footer strong {
  display: block;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1fb655;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(31, 182, 85, 0.34);
}

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

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 20px;
    background: rgba(13, 11, 8, 0.98);
    border-bottom: 1px solid var(--border);
  }

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

  .site-nav a {
    padding: 14px 0;
  }

  .two-column,
  .mission-grid,
  .certificate-grid,
  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .site-footer,
  .job-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .job-actions {
    width: 100%;
  }

  .job-actions .button,
  .job-actions .button.small:not(.outline) {
    flex: 1 1 160px;
    min-width: 0;
  }

  .modal-actions {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 86vh;
  }

  .brand {
    font-size: 0.86rem;
  }

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

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .map-frame {
    aspect-ratio: 4 / 5;
  }

  .job-card {
    padding: 24px;
  }

  .job-actions {
    flex-direction: column;
  }
}
