@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,600;0,700;0,800;0,900;1,700&family=Barlow:wght@300;400;500;600&family=Courier+Prime:wght@400;700&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css");

:root {
  --ink: #1a1612;
  --ink-2: #231f1a;
  --ink-3: #2c2722;
  --panel: #302b25;
  --panel-2: #3a342d;
  --amber: #e8710a;
  --amber-2: #f08c2d;
  --amber-dim: rgba(232, 113, 10, 0.12);
  --amber-glow: rgba(232, 113, 10, 0.3);
  --sand: #c8b89a;
  --sand-2: #d4c4a8;
  --cream: #f0e8d8;
  --text: #e8dfd0;
  --text-muted: #9a8e7e;
  --text-dim: #5a5248;
  --rule: rgba(200, 184, 154, 0.15);
  --rule-amber: rgba(232, 113, 10, 0.25);
  --r: 0px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Barlow", sans-serif;
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.008) 40px,
    rgba(255, 255, 255, 0.008) 41px
  );
  pointer-events: none;
  z-index: 0;
}

h1,
h2,
h3,
h4 {
  font-family: "Barlow Condensed", sans-serif;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}
.section--panel {
  background: var(--ink-2);
}
.section--dark {
  background: var(--ink-3);
}

.label {
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Courier Prime", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--amber);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: var(--cream);
  margin-bottom: 22px;
}

.section-lead {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
  font-weight: 300;
}

.section-header {
  margin-bottom: 64px;
}
.section-header--center {
  text-align: center;
}
.section-header--center .eyebrow {
  justify-content: center;
}
.section-header--center .section-lead {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 14px 30px;
  border: none;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  border-radius: var(--r);
}

.btn-amber {
  background: var(--amber);
  color: var(--ink);
}
.btn-amber:hover {
  background: var(--amber-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--amber-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--rule);
}
.btn-ghost:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn-sm {
  font-size: 0.75rem;
  padding: 10px 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 22, 18, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 2px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 40px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.brand-sub {
  font-family: "Courier Prime", monospace;
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
}

.brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
}

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

.nav a {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.18s;
  position: relative;
}

.nav a:hover,
.nav a.active {
  color: var(--amber);
}

.nav a.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--amber);
}

.nav-toggle {
  display: none;
  background: none;
  border: 2px solid var(--rule);
  color: var(--text);
  cursor: pointer;
  padding: 8px 14px;
  font-size: 1rem;
  font-family: "Barlow Condensed", sans-serif;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 44%;
  min-height: calc(100vh - 72px);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  left: 56%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--amber);
  z-index: 2;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  border: 2px solid var(--rule-amber);
  padding: 8px 16px;
  margin-bottom: 32px;
  width: fit-content;
  background: var(--amber-dim);
}

.hero h1 {
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 28px;
  line-height: 1;
}

.hero h1 span {
  color: var(--amber);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 2px solid var(--rule);
  border-right: none;
}

.hero-stat {
  padding: 20px 22px;
  border-right: 2px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--amber);
  letter-spacing: 0.04em;
}

.hero-stat span {
  font-family: "Courier Prime", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-right {
  position: relative;
  background: var(--ink-2);
  border-left: 3px solid var(--amber);
  display: flex;
  flex-direction: column;
}

.hero-img-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--ink-3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.img-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 50%,
    rgba(26, 22, 18, 0.75) 100%
  );
}

.img-prompt {
  font-family: "Courier Prime", monospace;
  font-size: 0.65rem;
  color: var(--sand);
  opacity: 0.45;
  text-align: center;
  padding: 24px;
  line-height: 2;
  position: relative;
  z-index: 2;
}

.hero-contact-panel {
  border-top: 2px solid var(--rule);
  padding: 28px 36px;
  background: var(--panel);
}

.hero-contact-panel .label {
  margin-bottom: 16px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-line:last-child {
  margin-bottom: 0;
}

.contact-line i {
  color: var(--amber);
  width: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.8rem;
}

.stats-bar {
  background: var(--amber);
  position: relative;
  z-index: 1;
}

.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 80px;
}

.stat-cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 32px;
  border-right: 2px solid rgba(26, 22, 18, 0.2);
}

.stat-cell:last-child {
  border-right: none;
}

.stat-cell strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.stat-cell span {
  font-family: "Courier Prime", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26, 22, 18, 0.6);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--rule);
}

.feature-card {
  padding: 48px 40px;
  border-right: 2px solid var(--rule);
  position: relative;
  transition: background 0.2s;
}

.feature-card:last-child {
  border-right: none;
}
.feature-card:hover {
  background: var(--panel);
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.2s;
}

.feature-card:hover::before {
  background: var(--amber);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border: 2px solid var(--rule-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--amber);
  margin-bottom: 24px;
}

.feature-num {
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--amber);
  margin-bottom: 12px;
  display: block;
}

.feature-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--cream);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-content {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink-2);
}

.split-visual {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-left: 3px solid var(--amber);
}

.split-visual--left {
  border-left: none;
  border-right: 3px solid var(--amber);
}

.checklist {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.check-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.check-box {
  width: 32px;
  height: 32px;
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--amber);
  font-size: 0.75rem;
  margin-top: 2px;
}

.check-item strong {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--cream);
  display: block;
  margin-bottom: 6px;
}

.check-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.process-step {
  padding: 52px 40px;
  border: 2px solid var(--rule);
  border-right: none;
  position: relative;
  transition: background 0.2s;
}

.process-step:last-child {
  border-right: 2px solid var(--rule);
}
.process-step:hover {
  background: var(--panel);
}

.step-num {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.process-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 12px;
}

.process-step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 2px solid var(--rule);
}

.testimonial-card {
  padding: 48px 44px;
  border-right: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
  transition: background 0.2s;
  position: relative;
}

.testimonial-card::before {
  content: "\201C";
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: var(--amber);
  opacity: 0.12;
  position: absolute;
  top: 20px;
  left: 32px;
  line-height: 1;
}

.testimonial-card:nth-child(2n) {
  border-right: none;
}
.testimonial-card:nth-child(n + 3) {
  border-bottom: none;
}
.testimonial-card:hover {
  background: var(--panel);
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.testimonial-card strong {
  font-family: "Courier Prime", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
}

.cta-band {
  background: var(--ink-3);
  border-top: 3px solid var(--amber);
  border-bottom: 3px solid var(--amber);
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 40%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 48px,
    rgba(232, 113, 10, 0.04) 48px,
    rgba(232, 113, 10, 0.04) 50px
  );
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 64px;
  border-left: 3px solid var(--rule);
}

.cta-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

.cta-contact-item i {
  color: var(--amber);
  width: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.82rem;
}

.site-footer {
  background: var(--ink);
  border-top: 2px solid var(--rule);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
  padding: 72px 0;
  border-bottom: 2px solid var(--rule);
}

.footer-brand-link {
  display: block;
  margin-bottom: 20px;
}

.footer-brand-sub {
  font-family: "Courier Prime", monospace;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
}

.footer-brand-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: 0.04em;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 340px;
  font-weight: 300;
}

.footer-col h4 {
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 22px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.18s;
  font-weight: 300;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.page-hero {
  background: var(--ink-2);
  border-bottom: 3px solid var(--amber);
  padding: 84px 0;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 18px,
    rgba(232, 113, 10, 0.04) 18px,
    rgba(232, 113, 10, 0.04) 19px
  );
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  margin-top: 16px;
  margin-bottom: 22px;
}

.info-box {
  background: var(--panel);
  border: 2px solid var(--rule);
  border-top: 3px solid var(--amber);
  padding: 28px 32px;
  min-width: 280px;
}

.info-box .label {
  margin-bottom: 14px;
}
.info-box p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.85;
  font-weight: 300;
}
.info-box a {
  color: var(--amber);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 2px solid var(--rule);
}

.value-card {
  padding: 52px 40px;
  border-right: 2px solid var(--rule);
  transition: background 0.2s;
}

.value-card:last-child {
  border-right: none;
}
.value-card:hover {
  background: var(--panel);
}

.value-icon-wrap {
  width: 52px;
  height: 52px;
  border: 2px solid var(--rule-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--amber);
  margin-bottom: 24px;
}

.value-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}

.value-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 2px solid var(--rule);
}

.team-card {
  border-right: 2px solid var(--rule);
  overflow: hidden;
  transition: background 0.2s;
}

.team-card:last-child {
  border-right: none;
}

.team-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  position: relative;
  border-bottom: 2px solid var(--rule);
}

.team-info {
  padding: 24px 26px;
}

.team-info h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 4px;
}

.team-info .role {
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  display: block;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}

.service-stack {
  display: flex;
  flex-direction: column;
}

.service-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--rule);
}

.service-item:nth-child(even) {
  direction: rtl;
}
.service-item:nth-child(even) > * {
  direction: ltr;
}

.service-img {
  overflow: hidden;
  min-height: 380px;
  position: relative;
}

.service-body {
  padding: 68px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ink-2);
  border-left: 2px solid var(--rule);
}

.service-item:nth-child(even) .service-body {
  border-left: none;
  border-right: 2px solid var(--rule);
}

.service-num {
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  color: var(--amber);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.service-body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 18px;
}

.service-body > p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  font-weight: 300;
}

.service-features {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 300;
}

.service-features li i {
  color: var(--amber);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.contact-info {
  padding: 80px 64px;
  background: var(--ink-2);
  border-right: 2px solid var(--rule);
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  margin-top: 16px;
  margin-bottom: 44px;
}

.contact-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 2px solid var(--rule);
}

.contact-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.contact-block .label {
  margin-bottom: 10px;
}

.contact-block a {
  font-size: 1.05rem;
  color: var(--amber);
  display: block;
  margin-bottom: 4px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.contact-block p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.form-panel {
  padding: 80px 64px;
  background: var(--ink-3);
}

.form-panel h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cream);
  margin-top: 16px;
  margin-bottom: 40px;
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-family: "Courier Prime", monospace;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--panel);
  border: 2px solid var(--rule);
  color: var(--text);
  padding: 13px 16px;
  font-family: "Barlow", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.18s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--amber);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 2px solid var(--rule);
}

.faq-item {
  padding: 44px 40px;
  border-right: 2px solid var(--rule);
  border-bottom: 2px solid var(--rule);
  transition: background 0.2s;
}

.faq-item:nth-child(even) {
  border-right: none;
}
.faq-item:nth-child(n + 5) {
  border-bottom: none;
}
.faq-item:hover {
  background: var(--panel);
}

.faq-item h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 14px;
}

.faq-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
}

.legal-intro {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 2px solid var(--rule);
  font-weight: 300;
}

.legal-grid {
  display: flex;
  flex-direction: column;
}

.legal-card {
  padding: 44px 0;
  border-bottom: 2px solid var(--rule);
}

.legal-card:last-child {
  border-bottom: none;
}

.legal-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--amber);
}

.legal-card p,
.legal-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
  font-weight: 300;
}

.legal-card ul,
.legal-card ol {
  padding-left: 20px;
  margin-top: 12px;
}
.legal-card a {
  color: var(--amber);
}

#cc-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--panel);
  border-top: 3px solid var(--amber);
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  z-index: 999;
  transition: transform 0.3s ease;
}

#cc-popup.is-hidden {
  transform: translateY(100%);
}

#cc-popup p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}
#cc-popup p a {
  color: var(--amber);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 0;
  }
  .hero::before {
    display: none;
  }
  .hero-right {
    display: none;
  }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat:nth-child(2) {
    border-right: none;
  }
  .hero-stat:nth-child(3) {
    border-top: 2px solid var(--rule);
  }
  .hero-stat:nth-child(4) {
    border-top: 2px solid var(--rule);
    border-right: none;
  }
  .stats-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
  }
  .stat-cell {
    padding: 18px 24px;
  }
  .stat-cell:nth-child(2) {
    border-right: none;
  }
  .stat-cell:nth-child(3) {
    border-top: 2px solid rgba(26, 22, 18, 0.2);
  }
  .stat-cell:nth-child(4) {
    border-top: 2px solid rgba(26, 22, 18, 0.2);
    border-right: none;
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    border-right: none;
    border-bottom: 2px solid var(--rule);
  }
  .feature-card:last-child {
    border-bottom: none;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .split-content {
    padding: 60px 24px;
  }
  .split-visual {
    min-height: 320px;
    border-left: none;
    border-right: none;
    border-top: 3px solid var(--amber);
  }
  .split-visual--left {
    border-top: 3px solid var(--amber);
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-step {
    border-right: 2px solid var(--rule);
    border-bottom: 2px solid var(--rule);
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card {
    border-right: none;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .cta-contact-list {
    padding-left: 0;
    border-left: none;
    padding-top: 48px;
    border-top: 2px solid var(--rule);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .value-card {
    border-right: none;
    border-bottom: 2px solid var(--rule);
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-card:nth-child(2) {
    border-right: none;
  }
  .team-card {
    border-bottom: 2px solid var(--rule);
  }
  .service-item {
    grid-template-columns: 1fr;
    direction: ltr !important;
  }
  .service-body {
    border-left: none !important;
    border-right: none !important;
    padding: 44px 28px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-info {
    border-right: none;
    padding: 60px 24px;
  }
  .form-panel {
    padding: 60px 24px;
  }
  .form-row2 {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .faq-item {
    border-right: none;
  }
  .page-hero-inner {
    grid-template-columns: 1fr;
  }
  .nav {
    display: none;
  }
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--ink);
    border-bottom: 2px solid var(--rule);
    padding: 28px;
    gap: 22px;
    z-index: 99;
  }
  .nav-toggle {
    display: block;
  }
  #cc-popup {
    flex-direction: column;
    align-items: flex-start;
  }
}
