/* ---- Tiger Forge base styles ---- */
:root {
  --black: #0D0D0D;
  --charcoal: #2B2B2B;
  --gray: #757575;
  --white: #FFFFFF;
  --orange: #FF6A00;
  --max: 1140px;
  --pad: clamp(1rem, 4vw, 3rem);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", system-ui, Arial, sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-weight: 800; line-height: 1.1; margin: 0 0 .5em; }
p { margin: 0 0 1rem; color: #cfcfcf; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.label { text-transform: uppercase; letter-spacing: .15em; font-size: .75rem; color: var(--orange); font-weight: 700; }

.btn {
  display: inline-block; font-weight: 700; font-size: .95rem;
  padding: .8rem 1.6rem; border-radius: 8px; cursor: pointer; border: 0;
  transition: transform .12s ease, background .12s ease;
}
.btn-primary { background: var(--orange); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); background: #ff7d1f; }
.btn-ghost { border: 1px solid var(--gray); color: var(--white); background: transparent; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* wordmark */
.wordmark { font-weight: 800; letter-spacing: .04em; font-size: 1.25rem; }
.wordmark .o { color: var(--orange); }

/* ---- header ---- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,13,.85); backdrop-filter: blur(8px);
  border-bottom: 1px solid #1c1c1c;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-nav { display: flex; align-items: center; gap: 1.5rem; }
.site-nav a { font-weight: 600; font-size: .95rem; color: #ddd; }
.site-nav a:hover { color: var(--orange); }
.site-nav .nav-cta { color: var(--black); }
.nav-toggle { display: none; background: none; border: 0; color: var(--white); font-size: 1.6rem; cursor: pointer; }

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black); border-bottom: 1px solid #1c1c1c;
    padding: .5rem var(--pad) 1rem; display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem 0; }
  .site-nav .nav-cta { text-align: center; margin-top: .5rem; }
}

/* ---- hero ---- */
.hero {
  position: relative; text-align: center;
  padding: clamp(4rem, 12vw, 8rem) 0 clamp(4rem, 10vw, 7rem);
  background:
    radial-gradient(ellipse 80% 60% at 50% 120%, rgba(255,106,0,.45), transparent 60%),
    var(--black);
  overflow: hidden;
}
.hero-emblem { width: clamp(120px, 22vw, 190px); margin: 0 auto 1.5rem; filter: drop-shadow(0 0 28px rgba(255,106,0,.35)); }
.hero h1 { font-size: clamp(2.2rem, 7vw, 4.5rem); overflow-wrap: break-word; }
.hero-sub { max-width: 620px; margin: 1rem auto 2rem; font-size: clamp(1rem, 2.2vw, 1.2rem); color: #cccccc; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---- services ---- */
.services { background: var(--black); }
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.service-card {
  background: #161616; border: 1px solid #232323; border-bottom: 3px solid var(--orange);
  border-radius: 10px; padding: 1.5rem; transition: transform .15s ease, border-color .15s ease;
}
.service-card:hover { transform: translateY(-4px); border-color: var(--gray); border-bottom-color: var(--orange); }
.service-card h3 { font-size: 1.2rem; }
.service-card p { margin: 0; font-size: .95rem; }

/* ---- about ---- */
.about { background: linear-gradient(180deg, #0d0d0d, #141414); }
.about-lead { max-width: 720px; font-size: 1.1rem; }
.pillars { list-style: none; padding: 0; margin: 2rem 0 0; display: flex; flex-wrap: wrap; gap: .75rem; }
.pillars li {
  background: #161616; border: 1px solid #2b2b2b; border-left: 3px solid var(--orange);
  padding: .6rem 1rem; border-radius: 6px; font-weight: 600; font-size: .9rem;
}

/* ---- contact ---- */
.contact { background: var(--black); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.contact-direct a { color: var(--orange); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .85rem; font-weight: 600; color: #bbb; }
.contact-form input, .contact-form textarea {
  background: #161616; border: 1px solid #2b2b2b; border-radius: 6px;
  color: var(--white); padding: .7rem .8rem; font: inherit; font-size: .95rem;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--orange); }
.contact-form .btn { align-self: flex-start; }
.form-status { font-size: .9rem; margin: 0; min-height: 1.2em; }
.form-status.success { color: #4caf50; }
.form-status.error { color: #ff6a6a; }
@media (max-width: 760px) { .contact-inner { grid-template-columns: 1fr; } }

/* ---- footer ---- */
.site-footer { background: #0a0a0a; border-top: 1px solid #1c1c1c; padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.legal { margin: 0; font-size: .8rem; color: var(--gray); }
