:root {
  --bg: #0f0f10;
  --panel: #121316;
  --panel-soft: #1b1d21;
  --ink: #f3efe7;
  --muted: #bbb4a6;
  --gold: #c89b3c;
  --gold-strong: #f0bf59;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 155, 60, 0.12), transparent 18%),
    radial-gradient(circle at 80% 10%, rgba(240, 191, 89, 0.06), transparent 16%),
    linear-gradient(180deg, #111214 0%, #0a0b0d 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.03), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01), transparent 50%, rgba(200, 155, 60, 0.03));
  z-index: -3;
}

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

.ore-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.ore-glow-one {
  background:
    radial-gradient(circle at 15% 22%, rgba(200, 155, 60, 0.12), transparent 0 18%),
    radial-gradient(circle at 92% 68%, rgba(200, 155, 60, 0.07), transparent 0 16%);
}

.ore-glow-two {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.25;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 80%);
}

.hero,
.section,
.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  padding: 1rem 0 3rem;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 19, 22, 0.82);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0.8rem;
  z-index: 10;
  box-shadow: var(--shadow);
}

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

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 3px solid var(--gold);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  background: #f3efe7;
}

.brand-mark::before {
  width: 1.45rem;
  height: 1.45rem;
  left: 0.18rem;
  bottom: 0.25rem;
  clip-path: polygon(0 100%, 45% 44%, 58% 58%, 82% 18%, 100% 54%, 100% 100%);
}

.brand-mark::after {
  width: 0.55rem;
  height: 1.1rem;
  left: 1rem;
  top: 0.75rem;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 40%, 62% 100%, 0 58%);
}

.brand-text {
  display: grid;
  line-height: 1;
  gap: 0.12rem;
}

.brand-text strong,
.brand-text span {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
}

.brand-text strong {
  font-size: 1.95rem;
  font-weight: 700;
}

.brand-text span {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  font-weight: 700;
  font-size: 0.96rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: 1.5rem;
  align-items: start;
  min-height: calc(100vh - 120px);
  padding-top: 1.8rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

h1,
h2,
h3,
strong,
.equipment-tag,
.card-label {
  font-family: "Oswald", sans-serif;
}

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

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.95;
  text-transform: uppercase;
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  text-transform: uppercase;
}

h3 {
  font-size: 1.45rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.lead,
.story-card p,
.info-body p,
.equipment-copy p,
.pillar-card p,
.contact-copy p,
.hero-card p,
.footer {
  color: var(--muted);
  line-height: 1.75;
}

.lead {
  max-width: 60ch;
  font-size: 1.05rem;
  margin-top: 1.3rem;
}

.hero-text-block,
.contact-text-block {
  display: grid;
  gap: 0.95rem;
  margin-top: 1.2rem;
}

.hero-text-block p,
.contact-text-block p {
  color: var(--muted);
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 800;
  transition: transform 180ms ease, background-color 180ms ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #0f0f10;
  border-color: transparent;
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 2rem;
}

.metric-card,
.story-card,
.info-card,
.equipment-card,
.pillar-card,
.contact-panel,
.hero-card,
.about-photo {
  border: 1px solid var(--line);
  background: rgba(23, 24, 27, 0.9);
  box-shadow: var(--shadow);
}

.metric-card {
  overflow: hidden;
  border-radius: 22px;
}

.metric-photo,
.gallery-photo,
.card-photo,
.about-photo,
.info-photo,
.equipment-photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(200, 155, 60, 0.26), rgba(15, 15, 16, 0.92));
}

.metric-photo::after,
.gallery-photo::after,
.card-photo::after,
.about-photo::after,
.info-photo::after,
.equipment-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 36%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.68));
}

.metric-photo img,
.gallery-photo img,
.card-photo img,
.about-photo img,
.info-photo img,
.equipment-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.metric-photo {
  min-height: 180px;
}

.metric-copy {
  padding: 1rem;
}

.metric-copy strong {
  display: block;
  font-size: 1.25rem;
  color: var(--gold-strong);
  margin-bottom: 0.2rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
}

.hero-badge {
  justify-self: start;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(200, 155, 60, 0.12);
  color: var(--gold-strong);
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid rgba(200, 155, 60, 0.18);
}

.hero-gallery {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 0.9rem;
}

.gallery-main,
.gallery-small-a,
.gallery-small-b {
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gallery-main {
  min-height: 420px;
}

.gallery-stack {
  display: grid;
  gap: 0.9rem;
}

.gallery-small-a,
.gallery-small-b {
  min-height: 205px;
}

.hero-card {
  padding: 1.2rem;
  border-radius: 24px;
}

.card-label {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--gold-strong);
  letter-spacing: 0.08em;
}

.hero-card h2 {
  margin-top: 0.35rem;
  font-size: 2.2rem;
}

.card-photo {
  min-height: 220px;
  margin-top: 0.9rem;
  border-radius: 20px;
}

.hero-card p {
  margin-top: 0.8rem;
}

.section {
  padding: 4rem 0;
}

.section-head {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.7rem;
}

.intro-band {
  padding-top: 1.2rem;
}

.split-layout,
.equipment-grid,
.contact-zone {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.story-card,
.info-card,
.pillar-card,
.contact-panel,
.about-photo {
  padding: 1.35rem;
  border-radius: 26px;
}

.story-card strong {
  color: var(--gold-strong);
  letter-spacing: 0.04em;
}

.about-image-layout {
  align-items: stretch;
}

.about-photo {
  min-height: 360px;
  padding: 0;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.three-cols {
  grid-template-columns: repeat(3, 1fr);
}

.four-cols {
  grid-template-columns: repeat(4, 1fr);
}

.image-card {
  padding: 0;
  overflow: hidden;
}

.info-photo {
  min-height: 230px;
}

.info-body {
  padding: 1.35rem;
}

.info-body span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(200, 155, 60, 0.14);
  color: var(--gold-strong);
  font-weight: 800;
}

.info-body h3,
.pillar-card h3 {
  margin: 1rem 0 0.8rem;
}

.dark-zone {
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(12, 12, 13, 0.98), rgba(24, 25, 29, 0.98));
  padding-left: 1.3rem;
  padding-right: 1.3rem;
}

.equipment-grid {
  gap: 1.2rem;
}

.equipment-card {
  display: grid;
  grid-template-rows: 340px auto;
  border-radius: 30px;
  overflow: hidden;
}

.equipment-photo {
  min-height: 340px;
}

.equipment-copy {
  padding: 1.3rem;
}

.equipment-tag {
  display: inline-block;
  color: var(--gold-strong);
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.equipment-copy h3 {
  margin: 0.55rem 0 0.8rem;
}

.pillar-card {
  min-height: 100%;
}

.contact-zone {
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 0.9rem;
}

.contact-item {
  display: grid;
  gap: 0.28rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.contact-item strong {
  font-size: 1.1rem;
  color: var(--gold-strong);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 2.4rem;
  color: #9b9388;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 12;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #1ccf7a, #0ca15b);
  color: #ffffff;
  box-shadow: 0 24px 40px rgba(12, 161, 91, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 28px 44px rgba(12, 161, 91, 0.42);
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.whatsapp-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: currentColor;
}

.whatsapp-text {
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media (max-width: 960px) {
  .hero-grid,
  .split-layout,
  .equipment-grid,
  .contact-zone,
  .three-cols,
  .four-cols,
  .hero-metrics,
  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav-links {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero,
  .section,
  .footer {
    width: min(1180px, calc(100% - 1.2rem));
  }

  h1 {
    font-size: 3rem;
  }

  .dark-zone {
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 28px;
  }

  .equipment-card {
    grid-template-rows: 260px auto;
  }

  .equipment-photo {
    min-height: 260px;
  }

  .gallery-main,
  .gallery-small-a,
  .gallery-small-b,
  .about-photo,
  .metric-photo,
  .info-photo,
  .card-photo {
    min-height: 220px;
  }

  .brand-text strong {
    font-size: 1.45rem;
  }

  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    padding: 0.85rem;
  }

  .whatsapp-text {
    display: none;
  }
}
