:root {
  --background: #07100c;
  --foreground: #f7f3e8;
  --onyx: #050806;
  --green: #0c4b2f;
  --emerald: #1f7a4c;
  --gold: #c99d49;
  --pale-gold: #e7cf91;
  --mist: #dfe8df;
  --slate: #9daaa1;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(201,157,73,.35); }
.focus-ring:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--pale-gold);
  outline-offset: 3px;
}
.icon { width: 20px; height: 20px; }
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(216,181,104,.2);
  background: rgba(5,8,6,.9);
  backdrop-filter: blur(14px);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 24px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; border-radius: 6px; }
.brand img { width: 44px; height: 44px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(231,207,145,.22)); }
.brand-text { font-size: 14px; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.brand-text span { display: block; margin-top: 3px; color: var(--gold); font-size: 12px; font-weight: 600; }
.desktop-nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--mist);
  font-size: 14px;
  font-weight: 650;
  transition: background .2s ease, color .2s ease;
}
.nav-link:hover { background: #153322; }
.nav-link.active { background: var(--green); color: var(--foreground); }
.header-actions { display: flex; gap: 8px; align-items: center; }
.language-toggle { display: flex; border: 1px solid rgba(201,157,73,.45); border-radius: 8px; padding: 4px; }
.lang-button {
  border: 0;
  border-radius: 5px;
  background: transparent;
  color: var(--pale-gold);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 750;
  cursor: pointer;
}
.lang-button.active { background: var(--gold); color: var(--onyx); }
.header-cta {
  display: inline-flex;
  border: 1px solid var(--gold);
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 750;
}
.header-cta:hover { background: var(--gold); color: var(--onyx); }
.mobile-nav { display: none; gap: 4px; overflow-x: auto; border-top: 1px solid rgba(216,181,104,.1); padding: 8px 16px; }
.hero-bg {
  background-image:
    linear-gradient(90deg, rgba(3,8,6,.95), rgba(4,12,8,.78) 43%, rgba(4,10,8,.36)),
    linear-gradient(0deg, rgba(3,8,6,.86), rgba(3,8,6,.08) 46%, rgba(3,8,6,.7)),
    url("https://images.unsplash.com/photo-1600607687939-ce8a6c25118c?auto=format&fit=crop&w=1800&q=82");
  background-position: center;
  background-size: cover;
}
.hero { min-height: 88vh; display: flex; align-items: center; padding-top: 96px; }
.hero-grid {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  padding: 64px 32px;
}
.hero-copy { max-width: 760px; }
.eyebrow, .section-label {
  color: #7fd39a;
  font-size: 14px;
  font-weight: 750;
  text-transform: uppercase;
}
.eyebrow { margin: 0 0 20px; }
h1 {
  margin: 0;
  color: var(--foreground);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 750;
}
.hero-lead { max-width: 690px; margin: 26px 0 0; color: #f4e9cf; font-size: 20px; line-height: 1.65; font-weight: 550; }
.hero-sub { max-width: 690px; margin: 16px 0 0; color: var(--mist); font-size: 16px; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.green-button, .outline-button, .gold-button, .small-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 14px;
  font-weight: 750;
}
.green-button { background: #0c7a48; color: white; }
.green-button:hover { background: #12945a; }
.outline-button, .small-outline { border: 1px solid var(--gold); color: var(--foreground); }
.outline-button:hover, .small-outline:hover { background: var(--gold); color: var(--onyx); }
.gold-button { border: 0; background: var(--gold); color: var(--onyx); cursor: pointer; }
.gold-button:hover { background: var(--pale-gold); }
.green-button.secondary { margin-top: 28px; background: var(--green); }
.small-outline { width: fit-content; padding: 10px 14px; color: var(--pale-gold); }
.hero-card {
  align-self: end;
  justify-self: end;
  width: min(100%, 448px);
  border: 1px solid rgba(201,157,73,.45);
  border-radius: 8px;
  background: rgba(5,8,6,.75);
  padding: 28px 20px 20px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(0,0,0,.42);
  backdrop-filter: blur(6px);
}
.hero-logo { width: 112px; height: 112px; object-fit: contain; margin: 0 auto; filter: drop-shadow(0 0 20px rgba(231,207,145,.18)); }
.hero-brand { margin: 18px 0 0; font-size: 25px; text-transform: uppercase; font-weight: 800; }
.hero-tag { margin: 4px 0 0; color: var(--gold); font-size: 14px; text-transform: uppercase; font-weight: 800; }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 20px; }
.stat-grid div { border: 1px solid rgba(216,181,104,.2); border-radius: 8px; padding: 14px 10px; }
.stat-grid strong { display: block; color: var(--pale-gold); font-size: 18px; }
.stat-grid span { display: block; margin-top: 5px; color: var(--mist); font-size: 12px; }
.section { padding: 80px 24px; }
.dark-section { background: var(--onyx); }
.green-section { background: var(--background); }
.container, .split-grid, .process-grid, .contact-grid, .legal-grid, .footer-grid {
  max-width: 1280px;
  margin: 0 auto;
}
.section-label { display: flex; align-items: center; gap: 12px; margin: 0; }
.section-label span:first-child { width: 40px; height: 1px; background: var(--gold); }
.card-grid, .feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 28px; }
.service-card, .feature-card, .detailed-service, .contact-card, .contact-form, .legal-panel, .process-card {
  border: 1px solid rgba(201,157,73,.32);
  border-radius: 8px;
  background: #0b1710;
  overflow: hidden;
}
.card-image, .feature-card > img { height: 176px; overflow: hidden; }
.card-image img, .feature-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .card-image img { transform: scale(1.05); }
.card-body, .feature-card div { padding: 20px; }
.icon-box {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(201,157,73,.45);
  border-radius: 6px;
  color: var(--pale-gold);
}
.service-card h3, .feature-card h3 { margin: 20px 0 0; color: var(--foreground); font-size: 20px; line-height: 1.35; }
.service-card p, .feature-card p { margin: 12px 0 0; color: var(--mist); font-size: 14px; line-height: 1.7; }
.feature-card p { color: var(--gold); font-weight: 750; }
.split-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: 40px; align-items: center; }
.split-grid h2, .process-grid h2, .section-heading-row h2 { margin: 18px 0 0; font-size: clamp(32px, 4vw, 44px); line-height: 1.15; }
.split-grid p, .center-copy p { margin: 20px 0 0; color: var(--mist); line-height: 1.85; }
.image-frame { border: 1px solid rgba(201,157,73,.35); border-radius: 8px; overflow: hidden; }
.image-frame img { width: 100%; min-height: 360px; height: 100%; object-fit: cover; }
.section-heading-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-top: 16px; }
.cta-section { background: var(--background); }
.cta-band {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(201,157,73,.45);
  border-radius: 8px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(12,75,47,.72), rgba(5,8,6,.95)),
    radial-gradient(circle at 15% 10%, rgba(231,207,145,.16), transparent 34%);
}
.cta-band h2 { margin: 0; max-width: 720px; font-size: 34px; line-height: 1.2; }
.cta-band p { margin: 12px 0 0; max-width: 720px; color: var(--mist); line-height: 1.7; }
.page-main { padding-top: 96px; }
.sub-hero { background: var(--onyx); padding: 64px 24px; }
.sub-hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.sub-hero h1 { margin-top: 22px; font-size: clamp(42px, 5vw, 60px); }
.sub-hero p:not(.section-label) { max-width: 700px; margin: 22px 0 0; color: var(--mist); font-size: 18px; line-height: 1.75; }
.sub-hero-image { border: 1px solid rgba(201,157,73,.35); border-radius: 8px; overflow: hidden; }
.sub-hero-image img { width: 100%; min-height: 340px; object-fit: cover; }
.about-split { grid-template-columns: 1fr .9fr; }
.onyx-panel {
  background:
    linear-gradient(135deg, rgba(12,75,47,.72), rgba(5,8,6,.95)),
    radial-gradient(circle at 15% 10%, rgba(231,207,145,.16), transparent 34%);
}
.values-panel { border: 1px solid rgba(201,157,73,.3); border-radius: 8px; padding: 24px; }
.values-panel h3 { margin: 0; font-size: 26px; }
.value-list { display: grid; gap: 16px; margin-top: 24px; }
.value-item { display: flex; gap: 16px; border: 1px solid rgba(216,181,104,.15); border-radius: 8px; padding: 16px; background: rgba(5,8,6,.42); }
.value-item h4 { margin: 0; }
.value-item p { margin: 6px 0 0; color: var(--mist); font-size: 14px; line-height: 1.65; }
.center-copy { align-self: center; }
.detailed-list { display: grid; gap: 24px; }
.detailed-service { display: grid; grid-template-columns: 1fr 1fr; }
.detail-image { min-height: 320px; }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.order-image { order: 2; }
.detail-body { padding: 32px; }
.detail-body h2 { margin: 22px 0 0; font-size: 32px; line-height: 1.2; }
.detail-body p { margin: 18px 0 0; color: var(--mist); line-height: 1.85; }
.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.pill-row span {
  border: 1px solid rgba(216,181,104,.25);
  border-radius: 6px;
  background: var(--onyx);
  color: var(--pale-gold);
  padding: 9px 12px;
  font-size: 14px;
}
.process-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; }
.process-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.process-card { padding: 22px; }
.process-card p { margin: 0; color: var(--gold); font-size: 14px; font-weight: 800; }
.process-card h3 { margin: 14px 0 0; font-size: 22px; }
.contact-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 32px; }
.contact-card, .contact-form { padding: 28px; }
.contact-card h2, .contact-form h2 { margin: 0; font-size: 32px; }
.contact-lines { display: grid; gap: 18px; margin-top: 24px; }
.contact-line { display: flex; align-items: center; gap: 12px; color: var(--mist); line-height: 1.7; }
.field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin-top: 24px; }
label { display: block; }
label span { display: block; margin-bottom: 8px; color: var(--pale-gold); font-size: 14px; font-weight: 750; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(216,181,104,.25);
  border-radius: 6px;
  background: #101d15;
  color: var(--foreground);
  padding: 13px 14px;
}
textarea { resize: vertical; }
.contact-form label + label, .contact-form .field-grid + label { margin-top: 18px; }
.contact-form button { margin-top: 20px; }
.legal-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.legal-panel { padding: 28px; }
.legal-panel h2 { margin: 20px 0 0; font-size: 26px; }
.legal-panel p { margin: 16px 0 0; color: var(--mist); font-size: 14px; line-height: 1.8; }
.legal-reference {
  max-width: 1280px;
  margin: 32px auto 0;
  color: var(--slate);
  font-size: 14px;
  line-height: 1.8;
}
.legal-reference a { color: var(--pale-gold); text-decoration: underline; }
.site-footer { border-top: 1px solid rgba(216,181,104,.15); background: #030604; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .8fr .8fr;
  gap: 32px;
  padding: 48px 24px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand img { width: 48px; height: 48px; object-fit: contain; filter: drop-shadow(0 0 12px rgba(231,207,145,.22)); }
.footer-brand p { margin: 0; text-transform: uppercase; font-weight: 800; }
.footer-brand span, .site-footer h3 { color: var(--pale-gold); }
.footer-text { max-width: 380px; margin: 18px 0 0; color: var(--mist); font-size: 14px; line-height: 1.7; }
.footer-links, .footer-contact { display: grid; gap: 8px; margin-top: 16px; color: var(--mist); font-size: 14px; }
.footer-contact p { margin: 0; }
.footer-bottom { border-top: 1px solid rgba(216,181,104,.1); padding: 20px 24px; text-align: center; color: var(--slate); font-size: 12px; }
.footer-bottom p { margin: 4px 0; }
@media (max-width: 1023px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: flex; }
  .hero-grid, .split-grid, .sub-hero-grid, .process-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-card { justify-self: center; }
  .order-image { order: initial; }
  .card-grid, .feature-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .header-inner { padding: 12px 16px; }
  .brand-text, .header-cta { display: none; }
  .hero { padding-top: 122px; }
  .hero-grid { padding: 56px 16px 48px; }
  h1 { font-size: 47px; }
  .hero-lead { font-size: 18px; }
  .button-row, .cta-band { align-items: stretch; }
  .green-button, .outline-button, .gold-button { justify-content: center; }
  .stat-grid, .field-grid, .legal-grid, .footer-grid, .process-cards, .detailed-service { grid-template-columns: 1fr; }
  .section, .sub-hero { padding-left: 16px; padding-right: 16px; }
  .section-heading-row, .cta-band { flex-direction: column; align-items: flex-start; }
  .sub-hero { padding-top: 40px; }
  .sub-hero h1 { font-size: 42px; }
  .page-main { padding-top: 122px; }
}
@media (max-width: 390px) {
  h1 { font-size: 42px; }
  .nav-link { padding-left: 10px; padding-right: 10px; }
}

/* ─── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { width: 0; }
  to   { width: 40px; }
}

/* Hero entrance — staggered */
.hero-copy .eyebrow   { opacity: 0; animation: slideRight .7s cubic-bezier(.22,1,.36,1) .18s forwards; }
.hero-copy h1         { opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .36s forwards; }
.hero-copy .hero-lead { opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .52s forwards; }
.hero-copy .hero-sub  { opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .64s forwards; }
.hero-copy .button-row{ opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) .78s forwards; }
.hero-card            { opacity: 0; animation: scaleIn .9s cubic-bezier(.22,1,.36,1) .55s forwards; }

/* Scroll-reveal base */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(.96);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays for grids */
.reveal-stagger > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: .18s; }
.reveal-stagger > *:nth-child(3) { transition-delay: .31s; }
.reveal-stagger > *:nth-child(4) { transition-delay: .44s; }

/* Section label line animation */
.section-label.visible span:first-child {
  animation: lineGrow .5s cubic-bezier(.22,1,.36,1) forwards;
}

/* Enhanced card hover */
.service-card, .feature-card {
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.service-card:hover, .feature-card:hover {
  border-color: rgba(201,157,73,.7);
  box-shadow: 0 8px 32px rgba(0,0,0,.36), 0 0 0 1px rgba(201,157,73,.18);
  transform: translateY(-4px);
}

/* Button press feel */
.green-button, .outline-button, .gold-button, .small-outline, .header-cta {
  transition: background .2s ease, color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.green-button:active, .outline-button:active, .gold-button:active, .header-cta:active {
  transform: scale(.97);
}

/* ─── Gemstone logo ──────────────────────────────────────────── */
@keyframes gemRotate {
  0%   { transform: rotateY(0deg)   rotateX(0deg)   scale(1);    }
  15%  { transform: rotateY(72deg)  rotateX(8deg)   scale(1.04); }
  30%  { transform: rotateY(144deg) rotateX(-6deg)  scale(1);    }
  45%  { transform: rotateY(216deg) rotateX(10deg)  scale(1.05); }
  60%  { transform: rotateY(288deg) rotateX(-4deg)  scale(1);    }
  75%  { transform: rotateY(340deg) rotateX(6deg)   scale(1.03); }
  100% { transform: rotateY(360deg) rotateX(0deg)   scale(1);    }
}
@keyframes gemGlow {
  0%,100% { filter: drop-shadow(0 0 8px rgba(231,207,145,.2))
                    drop-shadow(0 0 0px rgba(100,255,160,0)); }
  20%     { filter: drop-shadow(0 0 22px rgba(231,207,145,.55))
                    drop-shadow(0 0 12px rgba(100,255,160,.35)); }
  40%     { filter: drop-shadow(0 0 6px rgba(231,207,145,.15))
                    drop-shadow(0 0 0px rgba(100,255,160,0)); }
  60%     { filter: drop-shadow(0 0 28px rgba(255,220,100,.6))
                    drop-shadow(0 0 16px rgba(60,200,120,.4)); }
  80%     { filter: drop-shadow(0 0 10px rgba(231,207,145,.25))
                    drop-shadow(0 0 4px rgba(100,255,160,.1)); }
}
@keyframes gemFlash {
  0%,100% { opacity: 0; }
  50%     { opacity: 1; }
}

.hero-logo-wrap {
  position: relative;
  width: 112px;
  height: 112px;
  margin: 0 auto;
  perspective: 400px;
}
.hero-logo {
  width: 112px;
  height: 112px;
  object-fit: contain;
  animation: gemGlow 5s ease-in-out infinite;
  will-change: filter;
}


/* Header scroll-shadow */
.site-header { transition: box-shadow .3s ease; }
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.45); }