:root {
  --ink: #050608;
  --navy: #0c1218;
  --navy-2: #141c26;
  --paper: #f4efe6;
  --cream: #faf6ef;
  --brass: #c9a66b;
  --brass-2: #ead7b0;
  --brass-d: #9a7540;
  --muted: #8a8276;
  --text: #161410;
  --line: rgba(201,166,107,.28);
  --shadow: 0 30px 80px rgba(0,0,0,.28);
  --radius: 22px;
  --max: 1280px;
  --header: 78px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  pointer-events: none;
  position: fixed; inset: 0; z-index: 80; opacity: .045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font-family: inherit; }
ul { list-style: none; }
.container { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; z-index: 90; background: #fff; padding: 8px 12px; }

.topbar {
  background: #000;
  color: var(--brass-2);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 5vw; font-weight: 500;
}
.topbar a { color: var(--brass-2); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5,6,8,.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201,166,107,.14);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header); gap: 16px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; mix-blend-mode: screen; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; color: #fff; }
.brand-text b { font-family: var(--serif); font-size: 22px; letter-spacing: .12em; font-weight: 600; }
.brand-text small { font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--brass); }

.menu { display: flex; align-items: center; gap: 2px; }
.menu > li { position: relative; }
.menu > li > a {
  display: block; padding: 10px 14px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  color: rgba(255,255,255,.82);
}
.menu > li > a:hover, .menu > li:hover > a { color: var(--brass-2); }
.dropdown {
  position: absolute; top: 100%; left: 0; min-width: 300px; padding: 12px;
  background: #11161c; border: 1px solid var(--line); border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease;
}
.menu > li:hover .dropdown, .menu > li:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: none;
}
.dropdown a { display: block; padding: 10px 12px; border-radius: 10px; color: #f3eee6; font-size: 14px; }
.dropdown a:hover { background: rgba(201,166,107,.12); color: var(--brass-2); }
.dropdown a small { display: block; color: #8d8578; font-size: 11px; }

.nav-cta { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px; border: 1px solid transparent;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; font-weight: 500;
  cursor: pointer; transition: .25s ease;
}
.btn-gold { background: linear-gradient(180deg, #e0c48a, #c9a66b); color: #1a140a; }
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass-2); }
.btn-line { background: transparent; color: #fff; border-color: rgba(255,255,255,.22); }
.btn-line:hover { border-color: var(--brass); }
.btn-ink { background: transparent; color: var(--navy); border-color: rgba(16,24,32,.18); }
.btn-ink:hover { border-color: var(--brass); color: var(--brass-d); }
.btn-dark { background: var(--navy); color: #fff; }
.hamburger { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; }
.hamburger span { display: block; height: 1.5px; background: #fff; margin: 7px 11px; }

.hero {
  position: relative; min-height: 92vh; color: #fff;
  display: grid; place-items: center; overflow: hidden; background: #000;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(105deg, rgba(5,6,8,.92) 8%, rgba(5,6,8,.55) 48%, rgba(5,6,8,.35) 100%),
    url("../images/0_3.webp") center/cover no-repeat;
  animation: ken 22s ease-in-out infinite alternate;
}
@keyframes ken { from { transform: scale(1.02); } to { transform: scale(1.1); } }
.hero-inner { position: relative; z-index: 1; padding: 90px 0 80px; width: min(var(--max), calc(100% - 48px)); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--brass); letter-spacing: .32em; text-transform: uppercase; font-size: 11px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--brass); }
h1, .h1 {
  font-family: var(--serif); font-weight: 500; line-height: 1.02;
  font-size: clamp(44px, 7vw, 92px); letter-spacing: -.03em; margin: 18px 0 20px;
}
.gold { color: var(--brass-2); font-style: italic; }
.hero p.lead { max-width: 620px; color: rgba(250,246,239,.78); font-size: 19px; font-weight: 300; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-top: 72px; padding-top: 28px; border-top: 1px solid rgba(201,166,107,.22);
}
.hero-stats b { display: block; font-family: var(--serif); font-size: 36px; color: var(--brass-2); font-weight: 500; }
.hero-stats span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); }

.marquee {
  background: var(--ink); color: var(--brass);
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 14px 0;
}
.marquee-track {
  display: flex; gap: 48px; width: max-content;
  animation: slide 32s linear infinite;
  letter-spacing: .28em; text-transform: uppercase; font-size: 12px; white-space: nowrap;
}
@keyframes slide { to { transform: translateX(-50%); } }

.page-hero {
  position: relative; color: #fff; padding: 110px 0 72px; overflow: hidden;
  background: #0b1016 center/cover no-repeat;
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,6,8,.88), rgba(5,6,8,.45));
}
.page-hero .container { position: relative; z-index: 1; }
.ph-nails { background-image: url("../images/coil-nails.jpg"); }
.ph-tools { background-image: url("../images/WhatsApp_Image_2024-02-29_at_3.23.19_PM-removebg-preview.png"), linear-gradient(#121820,#0b1016); background-size: 52% auto, cover; background-position: right center, center; }
.ph-air { background-image: linear-gradient(90deg, #0b1016 35%, transparent 70%), url("../images/download-54.png"); background-size: cover, 48% auto; background-position: center, right center; background-repeat: no-repeat; }
.ph-factory { background-image: url("../images/0_3.webp"); }
.crumbs { font-size: 13px; color: var(--brass-2); margin-bottom: 16px; }
.crumbs a { color: rgba(255,255,255,.65); }
.page-hero h1 { font-size: clamp(38px, 5.4vw, 76px); }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.72); font-size: 18px; font-weight: 300; }

section { padding: 96px 0; }
.section-kicker { color: var(--brass-d); letter-spacing: .28em; text-transform: uppercase; font-size: 11px; }
h2 { font-family: var(--serif); font-size: clamp(34px, 4.2vw, 56px); font-weight: 500; line-height: 1.1; margin: 10px 0 16px; }
h3 { font-family: var(--serif); font-size: 28px; font-weight: 500; }
.muted { color: var(--muted); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.stage {
  border-radius: var(--radius); min-height: 460px; padding: 28px;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 38%, #2a3545 0%, #101820 62%);
  border: 1px solid rgba(201,166,107,.16);
  box-shadow: var(--shadow);
}
.stage img { max-height: 420px; width: auto; max-width: 100%; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.35)); }
.stage.cover { padding: 0; overflow: hidden; }
.stage.cover img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; max-height: none; filter: none; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.card {
  background: #fff; border: 1px solid rgba(16,24,32,.06); border-radius: var(--radius);
  overflow: hidden; transition: .35s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.card-media {
  height: 250px; display: grid; place-items: center; padding: 20px;
  background: radial-gradient(circle at 50% 40%, #2f3c4d 0%, #121820 70%);
  position: relative; overflow: hidden;
}
.card-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.12) 50%, transparent 60%);
  transform: translateX(-120%); transition: transform .7s ease;
  pointer-events: none;
}
.card:hover .card-media::after { transform: translateX(120%); }
.card-media.photo { padding: 0; }
.card-media.photo img { width: 100%; height: 250px; max-height: none; object-fit: cover; }
.card-media img { max-height: 210px; width: auto; object-fit: contain; filter: drop-shadow(0 12px 18px rgba(0,0,0,.28)); }
.card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-body h3 { font-size: 24px; }
.card-body p { color: var(--muted); font-size: 15px; }
.card-body .more { margin-top: auto; padding-top: 14px; color: var(--brass-d); letter-spacing: .16em; text-transform: uppercase; font-size: 11px; }

.gallery {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-template-rows: 220px 220px; gap: 12px;
}
.gallery img { width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.gallery img:first-child { grid-row: 1 / span 2; }

.why { background: var(--navy); color: #fff; }
.why h2, .why .section-kicker { color: var(--brass-2); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.why-item {
  padding: 28px; border-radius: 18px;
  border: 1px solid rgba(201,166,107,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.04), transparent);
}
.why-item b { display: block; color: var(--brass); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px; }

.industries { background: #efe8db; }
.chip-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.chip {
  padding: 12px 16px; border-radius: 999px; background: #fff;
  border: 1px solid rgba(16,24,32,.08); font-size: 14px;
}

.table-wrap { overflow-x: auto; border-radius: 16px; background: #fff; border: 1px solid var(--line); }
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(16,24,32,.06); font-size: 14px; }
th { background: var(--navy); color: #fff; font-weight: 500; letter-spacing: .06em; }
tr:hover td { background: #f7f1e6; }
.specs th { width: 42%; background: #efe8db; color: var(--navy); }

.faq details { background: #fff; border: 1px solid rgba(16,24,32,.07); border-radius: 14px; padding: 4px 20px; margin-bottom: 10px; }
.faq summary { cursor: pointer; padding: 16px 0; font-weight: 500; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { padding-bottom: 16px; color: var(--muted); }

.cta-band {
  background:
    linear-gradient(100deg, rgba(5,6,8,.9), rgba(12,18,24,.62)),
    url("../images/0_3.webp") center/cover;
  color: #fff; border-radius: 28px; padding: 64px; display: flex; justify-content: space-between; gap: 24px; align-items: center;
}
.cta-band h2 { margin: 8px 0 10px; color: #fff; }

.form {
  display: grid; gap: 14px; background: #fff; padding: 36px; border-radius: 24px;
  border: 1px solid rgba(16,24,32,.07); box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; padding: 14px; border-radius: 12px; border: 1px solid rgba(16,24,32,.12);
  background: var(--cream); font-size: 15px;
}
textarea { min-height: 130px; resize: vertical; }
input:focus, textarea:focus, select:focus { outline: 2px solid var(--brass); border-color: transparent; }
.contact-cards { display: grid; gap: 12px; }
.info-card { background: var(--navy); color: #fff; padding: 26px; border-radius: 18px; }
.info-card span { color: var(--brass); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; }
.info-card a, .info-card p { color: #fff; margin-top: 8px; font-size: 18px; }
.map { border: 0; width: 100%; height: 380px; border-radius: 22px; filter: grayscale(.3) contrast(1.08); }

.footer { background: #050608; color: rgba(255,255,255,.68); padding: 72px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { color: #fff; font-family: var(--serif); font-size: 24px; margin-bottom: 16px; font-weight: 500; }
.footer a { display: block; padding: 5px 0; color: rgba(255,255,255,.62); }
.footer a:hover { color: var(--brass-2); }
.footer-bottom {
  margin-top: 48px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 12px; font-size: 13px; flex-wrap: wrap;
}
.wa {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 58px; height: 58px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 12px 24px rgba(37,211,102,.4);
}
.prose p, .prose li { margin-bottom: 14px; color: #3c372f; }
.prose ul { list-style: disc; padding-left: 18px; }
.note { font-size: 13px; color: var(--muted); margin-top: 10px; }
.reveal { animation: up .8s ease both; }
@keyframes up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  .hamburger { display: block; }
  .menu, .nav-cta .btn-line { display: none; }
  .menu.open {
    display: flex; flex-direction: column; position: absolute;
    top: calc(var(--header) + 36px); left: 0; right: 0;
    background: #0c1218; padding: 16px; border-bottom: 1px solid var(--line); max-height: 70vh; overflow: auto;
  }
  .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 0 0 8px 12px; }
  .split, .split.reverse, .grid-3, .grid-4, .why-grid, .footer-grid, .hero-stats, .form-row, .gallery { grid-template-columns: 1fr; }
  .gallery { grid-template-rows: none; }
  .gallery img:first-child { grid-row: auto; min-height: 240px; }
  .cta-band { flex-direction: column; padding: 32px; align-items: flex-start; }
  .topbar { display: none; }
  .ph-tools, .ph-air { background-size: cover; background-position: center; }
}
@media (max-width: 640px) {
  h1 { font-size: 40px; }
  section { padding: 64px 0; }
  .card-media, .card-media.photo img { height: 200px; }
}
