:root {
  --ink: #08090b;
  --panel: #111318;
  --panel-2: #171a20;
  --line: #30333b;
  --gold: #d9ad57;
  --gold-light: #f0d493;
  --cream: #f3ead8;
  --muted: #aaa49a;
  --blue: #8da8bc;
  --shadow: 0 22px 70px rgba(0, 0, 0, .34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgba(141, 168, 188, .10), transparent 34rem),
    radial-gradient(circle at 8% 24%, rgba(217, 173, 87, .08), transparent 28rem),
    var(--ink);
  color: var(--cream);
  font: 16px/1.65 Georgia, "Times New Roman", serif;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px max(22px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(217, 173, 87, .24);
  background: rgba(8, 9, 11, .94);
  backdrop-filter: blur(16px);
}
.brand {
  flex: 0 0 auto;
  color: var(--cream);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 18px; }
.nav-links a {
  color: #d4cec3;
  font: 700 .76rem/1.2 Arial, sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-light); }
.nav-links .library {
  padding: 9px 13px;
  border: 1px solid rgba(217, 173, 87, .55);
  border-radius: 999px;
}

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.hero { padding: 92px 0 74px; text-align: center; }
.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font: 700 .74rem/1.2 Arial, sans-serif;
  letter-spacing: .22em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 18px; font-size: clamp(2.65rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.045em; }
h2 { margin-bottom: 12px; font-size: clamp(1.9rem, 4vw, 3.2rem); line-height: 1.08; letter-spacing: -.025em; }
h3 { margin-bottom: 8px; font-size: 1.25rem; line-height: 1.22; }
.hero-copy { max-width: 720px; margin: 0 auto 28px; color: #c8c1b7; font-size: 1.12rem; }
.hero-actions, .card-actions, .quick-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: var(--gold);
  color: #111;
  cursor: pointer;
  font: 800 .78rem/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.btn:hover { transform: translateY(-2px); background: var(--gold-light); }
.btn.secondary { background: transparent; color: var(--gold-light); }
.btn.secondary:hover { background: rgba(217, 173, 87, .1); }
.btn.small { min-height: 42px; padding: 10px 15px; font-size: .72rem; }
.btn:disabled { cursor: wait; opacity: .65; transform: none; }

.section { padding: 74px 0; border-top: 1px solid rgba(255,255,255,.08); }
.section-head { max-width: 720px; margin: 0 auto 34px; text-align: center; }
.section-head p { color: var(--muted); }
.path-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.path-card, .product-card, .bundle-card, .note-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(24,27,33,.96), rgba(14,16,20,.98));
  box-shadow: var(--shadow);
}
.path-card { display: flex; min-height: 280px; padding: 28px; flex-direction: column; text-decoration: none; }
.path-card::before, .product-card::before, .bundle-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .7;
}
.path-card:hover { border-color: rgba(217,173,87,.7); transform: translateY(-3px); }
.path-card .number { color: var(--gold); font: 700 .7rem/1 Arial, sans-serif; letter-spacing: .18em; }
.path-card h3 { margin-top: auto; font-size: 1.55rem; }
.path-card p { margin-bottom: 18px; color: var(--muted); }
.arrow { color: var(--gold-light); font: 800 .74rem/1 Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }

.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { display: flex; min-height: 300px; padding: 25px; flex-direction: column; }
.product-card.featured { border-color: rgba(217,173,87,.55); }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.tag {
  padding: 5px 8px;
  border: 1px solid #414650;
  border-radius: 999px;
  color: #b8bbc2;
  font: 700 .64rem/1 Arial, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag.gold { border-color: rgba(217,173,87,.55); color: var(--gold-light); }
.product-card p { color: var(--muted); }
.product-card ul { margin: 0 0 21px; padding-left: 18px; color: #c9c4bc; }
.product-card .card-bottom { margin-top: auto; }
.price { display: block; margin-bottom: 13px; color: var(--gold-light); font-size: 1.42rem; font-weight: 700; }
.card-actions { justify-content: flex-start; }

.featured-strip { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.featured-copy, .featured-side { padding: clamp(27px, 5vw, 48px); border: 1px solid var(--line); border-radius: 8px; background: var(--panel); }
.featured-copy p, .featured-side p { color: var(--muted); }
.featured-side { background: linear-gradient(145deg, rgba(217,173,87,.12), rgba(17,19,24,.98)); }

.catalog-band { padding: 34px; border: 1px solid rgba(217,173,87,.35); border-radius: 8px; text-align: center; background: rgba(217,173,87,.06); }
.catalog-band p { color: var(--muted); }
.quick-links a { color: var(--gold-light); font-weight: 700; }

.bundle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.bundle-card { display: flex; padding: 28px; flex-direction: column; }
.bundle-card p { color: var(--muted); }
.bundle-card ul { margin: 0 0 22px; padding-left: 18px; color: #c9c4bc; }
.bundle-card .card-bottom { margin-top: auto; }

.crumbs { padding-top: 25px; color: var(--muted); font: 700 .72rem/1.4 Arial, sans-serif; letter-spacing: .08em; text-transform: uppercase; }
.crumbs a { color: var(--gold-light); text-decoration: none; }
.category-hero { padding: 64px 0 52px; }
.category-hero h1 { max-width: 850px; font-size: clamp(2.55rem, 6vw, 4.8rem); }
.category-hero p { max-width: 720px; color: #c8c1b7; font-size: 1.08rem; }
.category-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.category-nav a { padding: 8px 11px; border: 1px solid var(--line); border-radius: 999px; color: #c8c1b7; font: 700 .68rem/1 Arial, sans-serif; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.category-nav a:hover { border-color: var(--gold); color: var(--gold-light); }

.note-card { padding: 30px; }
.note-card p:last-child { margin-bottom: 0; color: var(--muted); }
.faq-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.faq-grid article { padding: 24px; border-top: 1px solid var(--line); }
.faq-grid p { color: var(--muted); }
.inquiry-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 24px; align-items: start; }
.inquiry-copy { position: sticky; top: 104px; padding: 12px 18px 12px 0; }
.inquiry-copy p, .inquiry-copy li { color: var(--muted); }
.inquiry-copy ul { padding-left: 20px; }
.form-safety { margin-top: 24px; padding: 16px; border-left: 2px solid var(--gold); background: rgba(217,173,87,.07); }
.service-form { padding: clamp(24px, 4vw, 40px); border: 1px solid rgba(217,173,87,.4); border-radius: 8px; background: linear-gradient(145deg, rgba(24,27,33,.98), rgba(14,16,20,.99)); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.form-grid label { display: flex; flex-direction: column; gap: 7px; color: var(--cream); font: 700 .77rem/1.35 Arial, sans-serif; letter-spacing: .04em; }
.form-grid label.full { grid-column: 1 / -1; }
.service-form input, .service-form select, .service-form textarea {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #414650;
  border-radius: 4px;
  outline: none;
  background: #0d0f13;
  color: var(--cream);
  font: 400 1rem/1.4 Arial, sans-serif;
}
.service-form input, .service-form select { min-height: 48px; }
.service-form textarea { resize: vertical; }
.service-form input:focus, .service-form select:focus, .service-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,173,87,.12); }
.service-form input::placeholder, .service-form textarea::placeholder { color: #777b84; }
.consent-row { display: flex; gap: 11px; align-items: flex-start; margin: 22px 0; color: #c9c4bc; font: .82rem/1.5 Arial, sans-serif; }
.consent-row input { flex: 0 0 auto; width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--gold); }
.form-note { margin: 13px 0 0; color: var(--muted); font: .76rem/1.5 Arial, sans-serif; }
.bot-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
footer { padding: 42px 20px; border-top: 1px solid var(--line); color: #777; text-align: center; font: .76rem/1.6 Arial, sans-serif; }
footer a { color: #aaa; }

@media (max-width: 980px) {
  .site-nav { align-items: flex-start; flex-direction: column; gap: 10px; }
  .nav-links { width: 100%; overflow-x: auto; justify-content: flex-start; padding-bottom: 4px; }
  .path-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .bundle-grid { grid-template-columns: repeat(2, 1fr); }
  .inquiry-layout { grid-template-columns: 1fr; }
  .inquiry-copy { position: static; padding-right: 0; }
}
@media (max-width: 680px) {
  .shell { width: min(100% - 28px, 1180px); }
  .hero { padding: 62px 0 52px; }
  .section { padding: 54px 0; }
  .path-grid, .product-grid, .bundle-grid, .featured-strip, .faq-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid label.full { grid-column: auto; }
  .path-card { min-height: 230px; }
  .product-card { min-height: 0; }
  .hero-actions .btn, .card-actions .btn { width: 100%; }
  .site-nav { padding-inline: 14px; }
}
