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

:root {
  --red: #e8433a;
  --red-dark: #c73228;
  --red-light: rgba(232,67,58,0.12);
  --black: #f0efe9;
  --off-black: #0d0d0d;
  --gray-900: #e8e6df;
  --gray-700: #a8a49c;
  --gray-500: #6b6760;
  --gray-300: #2e2c29;
  --gray-100: #1e1c1a;
  --white: #181714;
  --cream: #111009;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Instrument Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --nav-h: 68px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--gray-900);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

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

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: rgba(17,16,9,0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  z-index: 100;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 34px;
  height: 34px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--black);
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding: 6px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--black);
  background: rgba(255,255,255,0.06);
}

.nav-cta {
  background: var(--red) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  margin-left: 8px;
  transition: background 0.2s !important;
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.page-wrap {
  padding-top: var(--nav-h);
}

.hero {
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5vw 5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-light);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 1.4rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--red);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-500);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
}

.btn-ghost:hover {
  border-color: var(--gray-700);
  color: var(--black);
}

.btn svg {
  width: 16px;
  height: 16px;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--black);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 3px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hcard {
  background: #1c1a17;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}

.hcard-main {
  position: relative;
  z-index: 2;
}

.hcard-back {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 90%;
  z-index: 1;
  opacity: 0.35;
  transform: rotate(3deg);
}

.hcard-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.hcard-metric {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hcard-metric span {
  color: var(--red);
}

.hcard-sub {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 1.4rem;
}

.progress-bars { display: flex; flex-direction: column; gap: 10px; }

.pbar-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--gray-700);
  margin-bottom: 4px;
}

.pbar-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 100px;
  overflow: hidden;
}

.pbar-fill {
  height: 100%;
  background: var(--red);
  border-radius: 100px;
  transition: width 1.2s var(--ease);
}

.pbar-fill.green { background: #22c55e; }
.pbar-fill.amber { background: #f59e0b; }

.section {
  padding: 7rem 5vw;
  max-width: 1280px;
  margin: 0 auto;
}

.section-full {
  padding: 7rem 5vw;
}

.section-full .inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 1.2rem;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 540px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.service-card {
  background: #1c1a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 44px;
  height: 44px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.portfolio-grid .pcard:first-child {
  grid-column: span 2;
}

.pcard {
  background: #1c1a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.pcard:hover { transform: translateY(-3px); }

.pcard-thumb {
  aspect-ratio: 16/8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gray-500);
  position: relative;
  overflow: hidden;
  filter: brightness(0.6);
}

.pcard:first-child .pcard-thumb { aspect-ratio: 16/7; }

.pcard-thumb-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-pill {
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  filter: brightness(1.6);
}

.pcard-body { padding: 1.5rem; }

.pcard-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.pcard-body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.pcard-body p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.pcard-result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 1rem;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,0.1);
  padding: 5px 12px;
  border-radius: 100px;
}

.pcard-result::before {
  content: '↑';
  font-size: 12px;
}

.testimonials-bg {
  background: #0a0906;
}

.testimonials-bg .section-label { color: #e87570; }
.testimonials-bg .section-title { color: #f0efe9; }
.testimonials-bg .section-sub { color: #5a5750; }

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.tcard {
  background: #141310;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2rem;
}

.tcard-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.2rem;
}

.tcard-stars span {
  color: #f59e0b;
  font-size: 14px;
}

.tcard blockquote {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: #c8c5bc;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.author-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-size: 14px;
  font-weight: 600;
  color: #e8e6df;
}

.author-role {
  font-size: 12px;
  color: #4a4740;
}

.cta-section {
  background: var(--red);
  padding: 7rem 5vw;
  text-align: center;
}

.cta-section .inner {
  max-width: 680px;
  margin: 0 auto;
}

.cta-section .section-label {
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}

.cta-section .section-title {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.cta-section p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.btn-white {
  background: #fff;
  color: var(--red);
  font-weight: 700;
}

.btn-white:hover {
  background: #f0efe9;
}

.btn-outline-white {
  border: 2px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
}

.btn-outline-white:hover {
  border-color: #fff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 6rem;
  align-items: center;
}

.about-img-frame {
  position: relative;
}

.about-img-box {
  background: #1c1a17;
  border-radius: 20px;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 5rem;
  color: #2e2c29;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-badge {
  position: absolute;
  bottom: 2rem;
  right: -1.5rem;
  background: #1c1a17;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem 1.3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  min-width: 170px;
}

.badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}

.badge-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 2px;
}

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-top: 2.5rem;
}

.value-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.value-item h4 {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}

.value-item p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}

.bcard {
  background: #1c1a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}

.bcard:hover { transform: translateY(-3px); }

.bcard-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  filter: brightness(0.55);
}

.bcard-cat {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 100px;
  filter: brightness(1.8);
}

.bcard-body { padding: 1.4rem; }

.bcard-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  margin-bottom: 0.6rem;
}

.bcard-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.bcard-body p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.read-more:hover { gap: 9px; }

.services-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.scard {
  background: #1c1a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.2rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.scard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.scard-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.scard h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.scard p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.scard-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.scard-includes li {
  font-size: 13px;
  color: var(--gray-700);
  padding-left: 1.2rem;
  position: relative;
}

.scard-includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 12px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.price-card {
  background: #1c1a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 2rem;
  position: relative;
}

.price-card.featured {
  background: #f0efe9;
  border-color: #f0efe9;
}

.price-card.featured .price-name,
.price-card.featured .price-amount,
.price-card.featured .price-period,
.price-card.featured .price-features li {
  color: #111009;
}

.price-card.featured .price-features li::before {
  background: var(--red);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.price-name {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--black);
  line-height: 1;
}

.price-amount sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.price-period {
  font-size: 13px;
  color: var(--gray-500);
  margin: 6px 0 1.5rem;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.8rem;
}

.price-features li {
  font-size: 14px;
  color: var(--gray-700);
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.5;
}

.price-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--gray-300);
  border-radius: 50%;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info { padding-top: 1rem; }

.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.8rem;
}

.cm-icon {
  width: 42px;
  height: 42px;
  background: var(--red-light);
  border-radius: 10px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cm-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--red);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cm-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-500);
  margin-bottom: 3px;
}

.cm-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.contact-form {
  background: #1c1a17;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  background: #111009;
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s;
}

.form-group select option {
  background: #1c1a17;
  color: var(--black);
}

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

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

.form-success {
  display: none;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-size: 14px;
  color: #4ade80;
  margin-bottom: 1rem;
}

.page-hero {
  padding: 5rem 5vw 4rem;
  max-width: 1280px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 5rem;
}

.page-hero .section-label { margin-bottom: 0.8rem; }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 1.1;
  max-width: 700px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer {
  background: #0a0906;
  padding: 5rem 5vw 2rem;
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: #e8e6df; }

.footer-brand p {
  font-size: 14px;
  color: #3a3830;
  max-width: 280px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2e2c28;
  margin-bottom: 1rem;
}

.footer-col li { margin-bottom: 8px; }

.footer-col a {
  font-size: 14px;
  color: #3a3830;
  transition: color 0.2s;
}

.footer-col a:hover { color: #e8e6df; }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom span {
  font-size: 13px;
  color: #2e2c28;
}

.footer-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.divider {
  height: 1px;
  background: rgba(255,255,255,0.04);
  margin: 0 5vw;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 4rem 5vw;
    gap: 3rem;
  }
  .hero-visual { display: none; }
  .tgrid { grid-template-columns: 1fr; }
  .about-layout { grid-template-columns: 1fr; }
  .about-img-frame { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-grid .pcard:first-child { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #111009;
    flex-direction: column;
    padding: 1.5rem 5vw 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; font-size: 16px; }
  .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}