@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --gold: #D4A008;
  --gold-hover: #B08600;
  --gold-light: #FEF8E7;
  --dark: #0D0D0B;
  --nav-bg: #111110;
  --bg: #F7F7F5;
  --card: #FFFFFF;
  --text: #18181A;
  --muted: #6B6B68;
  --border: #E5E5E0;
  --nav-h: 62px;
  --max-w: 1160px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 10px;
  --shadow: 0 1px 4px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.1), 0 12px 40px rgba(0,0,0,0.1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-right: auto;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 6px;
}
.nav-logo span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.07);
}
.nav-links a.active { color: var(--gold); }
.nav-links .nav-cta {
  margin-left: 8px;
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 7px;
}
.nav-links .nav-cta:hover { background: var(--gold-hover); color: #fff; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
}

/* HERO */
.hero {
  position: relative;
  height: calc(100vh - var(--nav-h));
  min-height: 440px;
  max-height: 700px;
  overflow: hidden;
  background: var(--dark);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 55%, transparent 100%);
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 2;
  padding: 0 64px;
}
.hero-text { max-width: 480px; }
.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-text h1 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.hero-text p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-dot.active { background: var(--gold); transform: scale(1.35); }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 11px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.12s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-hover); color: #fff; box-shadow: 0 4px 16px rgba(212,160,8,0.3); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.38); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #2A2A28; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }

/* LAYOUT */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }
.section-dark { background: var(--dark); color: #fff; }
.section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-dark .section-label { color: var(--gold); }
.section-title {
  font-size: clamp(1.35rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 6px;
}
.section-sub {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.6;
}
.section-dark .section-sub { color: rgba(255,255,255,0.5); }

/* FEATURE STRIP */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  background: var(--card);
  padding: 22px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.feature-item-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 3px;
}
.feature-item-text span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.5;
}

/* PRODUCT CARDS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: var(--shadow);
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.product-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #F3F3F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-card-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--gold-light);
  color: #7A5A00;
  width: fit-content;
  margin-bottom: 2px;
}
.product-card-badge.new { background: #E8F5E9; color: #2E7D32; }
.product-card-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.product-card-spec {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.product-card-price {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

/* CTA BANNER */
.cta-banner {
  background: var(--dark);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* TEAM */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
}
.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-height: 220px;
  overflow: hidden;
  background: #F3F3F0;
}
.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card-body .role {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.team-card-body .email { font-size: 0.78rem; color: var(--muted); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}
.value-item {
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.value-item h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.value-item p { font-size: 0.78rem; color: var(--muted); line-height: 1.6; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.service-icon { font-size: 1.8rem; margin-bottom: 14px; }
.service-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

/* CONTACT */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: start;
}
.contact-info-block {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 32px 28px;
  color: #fff;
}
.contact-info-block h2 {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.contact-info-block > p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.6;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.contact-item-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-item-text span { font-size: 0.82rem; color: rgba(255,255,255,0.65); }
.map-wrap {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.map-wrap iframe { display: block; width: 100%; height: 180px; border: 0; }

/* FORMS */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 24px; letter-spacing: -0.01em; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: var(--font);
  font-size: 0.9rem;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: var(--card);
  color: var(--text);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,8,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; line-height: 1.55; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-toast {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.84rem;
  display: none;
}
.form-toast.show { display: block; }
.form-toast.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7; }
.form-toast.error   { background: #FFEBEE; color: #C62828; border: 1px solid #EF9A9A; }

/* STAR RATING */
.star-wrap { display: flex; gap: 4px; }
.star-wrap input[type="radio"] { display: none; }
.star-wrap label {
  font-size: 1.6rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.1s;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}
.star-wrap input[type="radio"]:checked ~ label,
.star-wrap label:hover,
.star-wrap label:hover ~ label { color: var(--gold); }

/* PAGE HERO */
.page-hero {
  background: var(--dark);
  padding: 48px 24px;
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }
.page-hero p {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.page-hero h1 {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #fff;
  line-height: 1.15;
}

/* FOOTER */
.site-footer {
  background: var(--nav-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: auto;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 36px 24px 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; border-radius: 5px; }
.footer-brand span { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
.footer-tagline { font-size: 0.78rem; color: rgba(255,255,255,0.35); line-height: 1.6; }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 12px;
}
.footer-col a {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 14px 24px;
  text-align: center;
  font-size: 0.73rem;
  color: rgba(255,255,255,0.25);
  max-width: var(--max-w);
  margin: 0 auto;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--nav-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 16px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 2px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 9px 12px; font-size: 0.88rem; }
  .nav-links .nav-cta { text-align: center; justify-content: center; margin-left: 0; margin-top: 4px; }
  .site-nav { position: relative; }
  .hero-content { padding: 0 28px; }
  .section { padding: 48px 0; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .feature-strip { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .products-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .feature-strip { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:last-child { border-bottom: none; }
  .hero-content { padding: 0 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; gap: 10px; }
}
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.65rem; }
}
