/* ============================================================
   NEAT BOUTIQUE LLC — Design #28 Sienna + Steel
   Colors: #974444 #475569 #fef2f2 | Text: #1c1917 #44403c #78716c
   NO rgba() — all colors are solid hex or 8-digit hex
   ============================================================ */

:root {
  --sienna: #974444;
  --sienna-dark: #7a3636;
  --sienna-light: #b85c5c;
  --steel: #475569;
  --steel-dark: #334155;
  --steel-light: #64748b;
  --cream: #fef2f2;
  --cream-dark: #f5e6e6;
  --text-dark: #1c1917;
  --text-mid: #44403c;
  --text-light: #78716c;
  --white: #ffffff;
  --sienna-06: #9744440f;
  --steel-06: #4755690f;
  --sienna-12: #9744441f;
  --steel-12: #4755691f;
  --sienna-20: #97444433;
  --steel-20: #47556933;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Segoe UI', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--sienna);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--sienna-light);
}

img {
  max-width: 100%;
  display: block;
}

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

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sienna);
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 620px;
  margin-bottom: 48px;
}

.section-subtitle.center {
  margin-left: auto;
  margin-right: auto;
}

.text-center {
  text-align: center;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--sienna);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
}

.nav-links a:hover {
  color: var(--sienna);
}

.nav-cta {
  background: var(--sienna);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  font-size: 0.875rem;
}

.nav-cta:hover {
  background: var(--sienna-dark);
  color: var(--white) !important;
}

/* ============ HERO — Overlapping Blend Circles ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
  padding: 120px 24px 80px;
}

.blend-circles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.blend-circle {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.blend-circle--1 {
  width: 520px;
  height: 520px;
  background: var(--sienna-06);
  top: 8%;
  left: 12%;
}

.blend-circle--2 {
  width: 460px;
  height: 460px;
  background: var(--steel-06);
  top: 30%;
  right: 8%;
}

.blend-circle--3 {
  width: 380px;
  height: 380px;
  background: var(--sienna-12);
  bottom: 5%;
  left: 38%;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sienna);
  border: 1px solid var(--sienna-20);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--sienna);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero-line {
  width: 48px;
  height: 2px;
  background: var(--steel);
  margin: 0 auto 24px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--sienna);
  color: var(--white);
  border-color: var(--sienna);
}

.btn-primary:hover {
  background: var(--sienna-dark);
  border-color: var(--sienna-dark);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--steel);
  border-color: var(--steel);
}

.btn-outline:hover {
  background: var(--steel);
  color: var(--white);
}

/* ============ SERVICES — Corner Badge Cards ============ */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--cream-dark);
  border-radius: 14px;
  padding: 36px 32px 32px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px #1c19171a;
}

.service-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 800;
  color: var(--white);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  padding: 6px 4px 14px 20px;
}

.service-badge--sienna {
  background: var(--sienna);
}

.service-badge--steel {
  background: var(--steel);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.375rem;
}

.service-icon--sienna {
  background: var(--sienna-12);
  color: var(--sienna);
}

.service-icon--steel {
  background: var(--steel-12);
  color: var(--steel);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 14px;
  background: var(--white);
  color: var(--text-mid);
  border: 1px solid var(--cream-dark);
}

/* ============ ABOUT — Brand Split ============ */
.about {
  padding: 100px 0;
  background: var(--cream);
}

.about-split {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: start;
}

.about-left h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-left p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
}

.about-divider {
  width: 1px;
  background: var(--steel);
  opacity: 0.3;
  align-self: stretch;
  min-height: 280px;
}

.about-right h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.promise-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.promise-card {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 10px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.promise-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--sienna-12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--sienna);
}

.promise-card h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.promise-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ============ INDUSTRIES — Interconnected Dots ============ */
.industries {
  padding: 100px 0;
  background: var(--white);
}

.industries-web {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  height: 420px;
}

.industry-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
}

.industry-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.industry-dot--sienna {
  background: var(--sienna);
}

.industry-dot--steel {
  background: var(--steel);
}

.industry-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Connecting lines via pseudo-elements */
.industry-node::after {
  content: '';
  position: absolute;
  height: 1px;
  background: var(--text-light);
  opacity: 0.25;
  z-index: 0;
}

.industry-node--1::after { width: 120px; left: 14px; top: 7px; transform-origin: left center; transform: rotate(25deg); }
.industry-node--2::after { width: 110px; left: 14px; top: 7px; transform-origin: left center; transform: rotate(-15deg); }
.industry-node--3::after { width: 100px; left: 14px; top: 7px; transform-origin: left center; transform: rotate(15deg); }
.industry-node--4::after { width: 130px; left: 14px; top: 7px; transform-origin: left center; transform: rotate(-20deg); }
.industry-node--5::after { width: 95px; left: 14px; top: 7px; transform-origin: left center; transform: rotate(30deg); }

.industry-node--1 { top: 10%; left: 15%; }
.industry-node--2 { top: 15%; right: 18%; }
.industry-node--3 { top: 42%; left: 8%; }
.industry-node--4 { top: 45%; right: 10%; }
.industry-node--5 { top: 72%; left: 22%; }
.industry-node--6 { top: 75%; right: 20%; }

/* ============ APPROACH — Arrow Step Cards ============ */
.approach {
  padding: 100px 0;
  background: var(--cream);
}

.approach-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.step-card {
  background: var(--steel);
  color: var(--cream);
  border-radius: 14px;
  padding: 36px 24px 32px;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
}

.step-card::after {
  content: '';
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 18px solid var(--steel);
  z-index: 2;
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--steel);
  font-size: 1.125rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--cream);
}

.step-card p {
  font-size: 0.875rem;
  color: #e2e8f0;
  line-height: 1.6;
}

/* ============ CTA — Value Statement ============ */
.cta {
  padding: 100px 0;
  background: var(--steel);
  text-align: center;
}

.cta h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.cta p {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

/* ============ CONTACT — Minimal Social Card ============ */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact-card {
  max-width: 520px;
  margin: 0 auto;
  border: 2px solid var(--sienna);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
}

.contact-card h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  color: var(--text-mid);
  font-weight: 500;
  transition: color 0.2s ease;
}

.contact-link:hover {
  color: var(--sienna);
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--sienna-20);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sienna);
  font-size: 1.125rem;
  transition: all 0.25s ease;
}

.social-btn:hover {
  background: var(--sienna);
  color: var(--white);
  border-color: var(--sienna);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--text-dark);
  color: #a8a29e;
  padding: 40px 0;
  text-align: center;
  font-size: 0.875rem;
}

.footer a {
  color: var(--sienna-light);
}

.footer a:hover {
  color: var(--sienna);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
}

.footer p {
  color: #78716c;
}

/* ============ POLICY PAGES ============ */
.policy-page {
  padding: 120px 0 80px;
  background: var(--white);
}

.policy-header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--cream-dark);
}

.policy-header h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--sienna);
  margin-bottom: 8px;
}

.policy-header p {
  font-size: 0.875rem;
  color: var(--text-light);
}

.policy-content {
  max-width: 760px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
}

.policy-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--cream-dark);
}

.policy-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.policy-content p {
  margin-bottom: 16px;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.policy-content li {
  margin-bottom: 8px;
}

.policy-content address {
  font-style: normal;
  background: var(--cream);
  padding: 16px 20px;
  border-radius: 8px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.policy-nav {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--cream-dark);
}

.policy-nav a {
  font-weight: 600;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-divider {
    display: none;
  }

  .approach-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .step-card::after {
    display: none;
  }

  .industries-web {
    height: 360px;
  }

  .cta h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .approach-row {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
  }

  .industries-web {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px 0;
  }

  .industry-node {
    position: static;
  }

  .industry-node::after {
    display: none;
  }

  .cta h2 {
    font-size: 1.75rem;
  }

  .contact-card {
    padding: 36px 24px;
  }
}
