/* ============ Norka Enterprises — shared styles ============ */
:root {
  --black: #0a0a0a;
  --charcoal: #141414;
  --card: #1b1b1b;
  --gold: #c09050;
  --gold-light: #e0c080;
  --gold-deep: #8a6534;
  --silver: #c9ccd1;
  --silver-dim: #9a9ea6;
  --white: #f5f4f0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--silver);
  font-family: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }

a { color: var(--gold-light); text-decoration: none; }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  text-align: center;
  padding: 72px 24px 56px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(192,144,80,0.18), transparent 60%),
    linear-gradient(180deg, #101010 0%, var(--black) 100%);
  border-bottom: 1px solid rgba(192,144,80,0.25);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 320px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero img.logo {
  width: 190px;
  filter: drop-shadow(0 8px 30px rgba(192,144,80,0.35));
  border-radius: 14px;
  animation: rise 0.9s ease both;
}

.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.4rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 26px;
  color: var(--white);
  font-weight: 700;
  animation: rise 0.9s 0.15s ease both;
}

.hero h1 .gold { color: var(--gold-light); }

.hero .tagline {
  margin-top: 14px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--silver-dim);
  letter-spacing: 0.05em;
  animation: rise 0.9s 0.3s ease both;
}

.hero .rule {
  width: 70px; height: 3px;
  margin: 26px auto 0;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-light));
  border-radius: 2px;
  animation: rise 0.9s 0.4s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- intro ---------- */
.intro {
  text-align: center;
  max-width: 780px;
  margin: 56px auto 8px;
  padding: 0 24px;
}

.intro h2, .section-title {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.intro p { font-size: 1.08rem; color: var(--silver); }

/* ---------- brand cards ---------- */
.brands {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 28px;
  padding: 48px 0 72px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--card) 0%, #101010 100%);
  border: 1px solid rgba(192,144,80,0.22);
  border-radius: 16px;
  padding: 36px 30px 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.brand-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: 0 18px 45px rgba(0,0,0,0.6), 0 0 0 1px rgba(192,144,80,0.35);
}

.brand-card .icon {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.icon svg {
  width: 46px;
  height: 46px;
  stroke: var(--gold-light);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature .icon svg { width: 38px; height: 38px; }

.brand-card h3 {
  color: var(--gold-light);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.brand-card .kicker {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin-bottom: 16px;
}

.brand-card p { flex: 1; font-size: 0.98rem; color: var(--silver); }

.brand-card ul {
  list-style: none;
  margin: 14px 0 4px;
  font-size: 0.92rem;
}

.brand-card ul li {
  padding-left: 22px;
  position: relative;
  margin-bottom: 7px;
  color: var(--silver);
}

.brand-card ul li::before {
  content: "◆";
  position: absolute; left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 5px;
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 13px 30px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold-deep), var(--gold) 55%, var(--gold-light));
  color: #111;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 24px rgba(192,144,80,0.35);
}

.btn.ghost {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}

/* ---------- sub-page sections ---------- */
.page-section { padding: 60px 0; }

.page-section.alt {
  background: var(--charcoal);
  border-top: 1px solid rgba(192,144,80,0.15);
  border-bottom: 1px solid rgba(192,144,80,0.15);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.feature {
  background: var(--card);
  border: 1px solid rgba(192,144,80,0.18);
  border-radius: 14px;
  padding: 26px 24px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature:hover { transform: translateY(-5px); border-color: var(--gold); }

.feature .icon { font-size: 1.9rem; }

.feature h4 {
  color: var(--gold-light);
  margin: 12px 0 8px;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

.feature p { font-size: 0.93rem; color: var(--silver); }

.center { text-align: center; }

.lede {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
}

.back-link {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

.back-link:hover { color: var(--gold-light); }

/* ---------- stat band ---------- */
.stat-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
  margin-top: 36px;
}

.stat .num {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat .label {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver-dim);
}

/* ---------- contact modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal-overlay.open { display: flex; }

.modal {
  background: linear-gradient(160deg, var(--card) 0%, #101010 100%);
  border: 1px solid var(--gold);
  border-radius: 16px;
  max-width: 470px;
  width: 100%;
  padding: 32px 30px 28px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 22px 60px rgba(0,0,0,0.7), 0 0 40px rgba(192,144,80,0.12);
  animation: rise 0.35s ease both;
}

.modal h3 {
  color: var(--gold-light);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal .modal-sub {
  color: var(--silver-dim);
  font-size: 0.92rem;
  margin-bottom: 6px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 0;
  color: var(--silver-dim);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  padding: 4px;
}

.modal-close:hover { color: var(--gold-light); }

.modal label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--silver-dim);
  margin: 15px 0 6px;
}

.modal input,
.modal textarea {
  width: 100%;
  background: #0d0d0d;
  border: 1px solid rgba(192,144,80,0.35);
  border-radius: 8px;
  color: var(--white);
  padding: 11px 12px;
  font-family: inherit;
  font-size: 0.95rem;
}

.modal input:focus,
.modal textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(192,144,80,0.18);
}

.modal textarea { min-height: 110px; resize: vertical; }

.modal .modal-send {
  width: 100%;
  margin-top: 22px;
}

.modal .modal-send:disabled { opacity: 0.6; cursor: wait; }

.form-status { margin-top: 14px; font-size: 0.92rem; text-align: center; }
.form-status.ok { color: #9ed8a0; }
.form-status.err { color: #e08c8c; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ---------- footer ---------- */
footer {
  border-top: 1px solid rgba(192,144,80,0.2);
  padding: 40px 24px;
  text-align: center;
  background: #0d0d0d;
}

footer .foot-brands {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

footer .foot-brands a { color: var(--silver-dim); }
footer .foot-brands a:hover { color: var(--gold-light); }

footer .copy { font-size: 0.82rem; color: #6d7076; }
footer .contact { font-size: 0.9rem; color: var(--silver-dim); margin-bottom: 10px; }
