/* =========================================================
   PKMG LLC — style.css
   Dark warm charcoal-brown theme with burned-copper accents
   ========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  background: #161210;
  color: #F4EEE6;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  color: #E0B79B;
  text-decoration: none;
}

a:hover {
  color: #B2572F;
}

ul,
ol {
  list-style: none;
}

::selection {
  background: #B2572F;
  color: #F4EEE6;
}

h1,
h2,
h3,
h4 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.18;
  color: #F4EEE6;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: #B2572F;
  color: #F4EEE6;
}

.btn-primary:hover {
  background: #8F3F1F;
  color: #F4EEE6;
}

.btn-outline {
  border: 1px solid #B2572F;
  color: #E0B79B;
  background: transparent;
}

.btn-outline:hover {
  background: #B2572F;
  color: #F4EEE6;
}

/* ---------- cog glyph ---------- */
.cog {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: none;
}

.cog .cog-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #B2572F;
  background: transparent;
}

.cog span {
  position: absolute;
  background: #B2572F;
}

.cog .c-t {
  top: -3px;
  left: 50%;
  width: 3px;
  height: 5px;
  transform: translateX(-50%);
}

.cog .c-b {
  bottom: -3px;
  left: 50%;
  width: 3px;
  height: 5px;
  transform: translateX(-50%);
}

.cog .c-l {
  left: -3px;
  top: 50%;
  width: 5px;
  height: 3px;
  transform: translateY(-50%);
}

.cog .c-r {
  right: -3px;
  top: 50%;
  width: 5px;
  height: 3px;
  transform: translateY(-50%);
}

.cog.filled .cog-ring {
  background: #B2572F;
  border-color: #B2572F;
}

.cog.filled span {
  background: #F4EEE6;
}

.cog.lg {
  width: 26px;
  height: 26px;
}

.cog.lg .c-t,
.cog.lg .c-b {
  width: 4px;
  height: 6px;
}

.cog.lg .c-t {
  top: -4px;
}

.cog.lg .c-b {
  bottom: -4px;
}

.cog.lg .c-l,
.cog.lg .c-r {
  width: 6px;
  height: 4px;
}

.cog.lg .c-l {
  left: -4px;
}

.cog.lg .c-r {
  right: -4px;
}

/* ---------- cog navigation ---------- */
.cog-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #161210;
  border-bottom: 1px solid #B2572F;
  transition: border-color .2s ease;
}

.cog-nav.scrolled {
  border-bottom-color: #8F3F1F;
  box-shadow: 0 6px 22px #0A0805;
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-square {
  width: 18px;
  height: 18px;
  background: #B2572F;
  flex: none;
}

.brand-word {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #F4EEE6;
}

.brand-cap {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E0B79B;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F4EEE6;
  transition: color .2s ease;
}

.nav-link:hover {
  color: #B2572F;
}

.nav-link.active {
  color: #B2572F;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #E0B79B;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-drop {
  display: none;
  background: #1B1510;
  border-top: 1px solid #6E4326;
  padding: 14px 24px 22px;
}

.mobile-drop.open {
  display: block;
}

.mobile-drop a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 4px;
  color: #F4EEE6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid #241A14;
}

.mobile-drop a:hover {
  color: #B2572F;
}

/* ---------- assembly hero ---------- */
.assembly-hero {
  background: #161210;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 92px 24px 8px;
}

.eyebrow {
  display: inline-block;
  background: #B2572F;
  color: #F4EEE6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 8px 16px;
}

.assembly-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.12;
  margin: 28px 0 22px;
  max-width: 880px;
}

.hero-sub {
  font-size: 18px;
  max-width: 720px;
  color: #F4EEE6;
  margin-bottom: 34px;
}

.hero-sub strong {
  color: #E0B79B;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.assembly {
  margin-top: 64px;
  background: #161210;
}

.a-circles {
  position: relative;
  height: 320px;
  width: min(860px, 100%);
  margin: 0 auto;
}

.a-circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid #B2572F;
  border-radius: 50%;
}

.a-top {
  left: 50%;
  top: 6px;
  transform: translateX(-50%);
}

.a-left {
  left: calc(50% - 82px);
  bottom: 8px;
}

.a-right {
  right: calc(50% - 82px);
  bottom: 8px;
}

.a-core {
  position: absolute;
  left: 50%;
  top: 185px;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  background: #B2572F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.a-core::after {
  content: "";
  width: 14px;
  height: 14px;
  background: #F4EEE6;
  border-radius: 50%;
}

.a-base {
  width: min(860px, 100%);
  height: 1px;
  background: #6E4326;
  margin: 26px auto 0;
}

.a-captions {
  display: flex;
  justify-content: space-around;
  width: min(860px, 100%);
  margin: 14px auto 0;
  padding-bottom: 72px;
}

.a-captions span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #E0B79B;
}

/* ---------- section heads ---------- */
.section-head {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 46px;
}

.kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #E0B79B;
  margin-bottom: 12px;
}

.section-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  max-width: 820px;
}

.section-head .lead {
  max-width: 780px;
  margin-top: 16px;
  color: #F4EEE6;
}

/* ---------- practice rows ---------- */
.practice-rows {
  padding: 84px 0 0;
}

.practice-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.practice-row {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid #6E4326;
}

.practice-row:last-child {
  border-bottom: 1px solid #6E4326;
}

.practice-row .cog {
  margin-top: 5px;
}

.practice-body {
  flex: 1;
}

.practice-body h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.practice-body p {
  color: #F4EEE6;
  max-width: 840px;
}

.chip {
  flex: none;
  margin-top: 8px;
  background: #B2572F;
  color: #F4EEE6;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
}

/* ---------- rings strip ---------- */
.rings-strip {
  background: #241A14;
  padding: 84px 0;
  margin-top: 84px;
  border-top: 1px solid #6E4326;
  border-bottom: 1px solid #6E4326;
}

.rings-strip .section-head {
  padding-bottom: 40px;
}

.rings {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.ring-mark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ring-pair {
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.rp {
  width: 26px;
  height: 26px;
  border: 1px solid #B2572F;
  border-radius: 50%;
}

.rp-a {
  margin-right: -10px;
}

.ring-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 700;
  color: #F4EEE6;
  margin-bottom: 6px;
}

.ring-line {
  font-size: 14px;
  color: #E0B79B;
  line-height: 1.55;
}

/* ---------- advisory rows ---------- */
.advisory-rows {
  padding: 84px 0 0;
}

.advisory-list {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.advisory-row {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px 0;
  border-top: 1px solid #6E4326;
}

.advisory-row:last-child {
  border-bottom: 1px solid #6E4326;
}

.ad-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  color: #E0B79B;
  font-weight: 700;
  width: 64px;
  flex: none;
  margin-top: 2px;
}

.ad-body {
  flex: 1;
}

.ad-body h3 {
  font-size: 23px;
  margin-bottom: 8px;
}

.ad-body p {
  color: #F4EEE6;
  max-width: 840px;
}

.ad-tag {
  flex: none;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E0B79B;
  border-left: 1px solid #6E4326;
  padding-left: 14px;
}

/* ---------- cta band ---------- */
.cta-band {
  background: #B2572F;
  margin-top: 84px;
  padding: 76px 0;
}

.cta-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(26px, 3vw, 36px);
  max-width: 620px;
}

.cta-band p {
  color: #F4EEE6;
  max-width: 640px;
  margin-top: 12px;
}

.cta-inner .btn-primary {
  background: #F4EEE6;
  color: #B2572F;
}

.cta-inner .btn-primary:hover {
  background: #1B1510;
  color: #E0B79B;
}

/* ---------- forge footer ---------- */
.forge-footer {
  background: #161210;
  border-top: 1px solid #B2572F;
}

.footer-row1 {
  max-width: 1180px;
  margin: 0 auto;
  padding: 52px 24px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #F4EEE6;
}

.footer-links a:hover {
  color: #B2572F;
}

.footer-contact {
  font-size: 13px;
  color: #E0B79B;
  letter-spacing: .5px;
}

.footer-contact a {
  color: #E0B79B;
}

.footer-contact a:hover {
  color: #B2572F;
}

.footer-row2 {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 26px 24px;
  border-top: 1px solid #6E4326;
  text-align: center;
}

.footer-row2 .cog {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.footer-legal {
  font-size: 12px;
  color: #F4EEE6;
  line-height: 1.8;
}

.footer-legal a {
  color: #E0B79B;
}

.footer-legal a:hover {
  color: #B2572F;
}

/* ---------- secondary page hero ---------- */
.page-hero {
  background: #161210;
  border-bottom: 1px solid #6E4326;
  padding: 78px 0 66px;
}

.page-hero .eyebrow {
  margin-bottom: 22px;
}

.page-hero h1 {
  font-size: clamp(32px, 4.5vw, 48px);
  max-width: 860px;
}

.page-hero p {
  max-width: 740px;
  margin-top: 18px;
  font-size: 17px;
  color: #F4EEE6;
}

/* ---------- services ---------- */
.svc-section {
  padding: 76px 0;
  background: #161210;
}

.svc-section.alt {
  background: #1B1510;
}

.svc-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.svc-marker {
  flex: none;
  width: 58px;
  height: 58px;
  border: 1px solid #B2572F;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  color: #E0B79B;
  font-weight: 700;
}

.svc-body {
  flex: 1;
}

.svc-body h2 {
  font-size: 27px;
  margin-bottom: 12px;
}

.svc-body p {
  color: #F4EEE6;
  max-width: 840px;
}

.svc-body p + p {
  margin-top: 14px;
}

.process-band {
  background: #241A14;
  padding: 76px 0;
  border-top: 1px solid #6E4326;
  border-bottom: 1px solid #6E4326;
}

.process-steps {
  max-width: 1180px;
  margin: 40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.step .step-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #B2572F;
  font-weight: 700;
}

.step h3 {
  font-size: 16px;
  margin: 8px 0 6px;
}

.step p {
  font-size: 13px;
  color: #E0B79B;
  line-height: 1.55;
}

/* ---------- contact ---------- */
.contact-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 76px 0;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 64px;
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #E0B79B;
  margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #1B1510;
  border: 1px solid #6E4326;
  color: #F4EEE6;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  margin-bottom: 22px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #B2572F;
}

.contact-form textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-form .btn {
  border: none;
  cursor: pointer;
}

.form-note {
  font-size: 13px;
  color: #E0B79B;
  margin-top: 8px;
}

.form-status {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  background: #241A14;
  border: 1px solid #6E4326;
  color: #F4EEE6;
  font-size: 14px;
}

.form-status.show {
  display: block;
}

.contact-details h3 {
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #B2572F;
  margin-bottom: 6px;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

.contact-details p {
  color: #F4EEE6;
}

.contact-details a {
  color: #E0B79B;
}

.contact-details a:hover {
  color: #B2572F;
}

.detail {
  margin-bottom: 28px;
}

.faq {
  margin-top: 34px;
}

.faq-item {
  border-top: 1px solid #6E4326;
}

.faq-item:last-child {
  border-bottom: 1px solid #6E4326;
}

.faq-q {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: #F4EEE6;
  font-size: 17px;
  font-weight: 700;
  font-family: Georgia, "Times New Roman", serif;
}

.faq-q::after {
  content: "+";
  color: #B2572F;
  font-size: 22px;
  font-weight: 400;
}

.faq-item.open .faq-q::after {
  content: "\2212";
}

.faq-a {
  display: none;
  padding: 0 0 22px;
  color: #F4EEE6;
  max-width: 720px;
}

.faq-item.open .faq-a {
  display: block;
}

/* ---------- scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .rings {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    padding-top: 64px;
  }
  .assembly-hero h1 {
    font-size: 34px;
  }
  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }
  .assembly {
    margin-top: 48px;
  }
  .a-circles {
    height: 190px;
  }
  .a-circle {
    width: 92px;
    height: 92px;
  }
  .a-left {
    left: calc(50% - 50px);
  }
  .a-right {
    right: calc(50% - 50px);
  }
  .a-core {
    top: 108px;
    width: 36px;
    height: 36px;
  }
  .a-captions {
    padding-bottom: 48px;
  }
  .practice-rows,
  .advisory-rows {
    padding-top: 60px;
  }
  .practice-row,
  .advisory-row {
    flex-direction: column;
    gap: 14px;
  }
  .chip,
  .ad-tag {
    order: 2;
  }
  .rings-strip,
  .process-band {
    padding: 60px 0;
  }
  .cta-band {
    padding: 56px 0;
  }
  .svc-inner {
    flex-direction: column;
    gap: 20px;
  }
  .footer-row1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-row2 {
    text-align: left;
    padding-left: 48px;
  }
  .footer-row2 .cog {
    left: 12px;
  }
}
