/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFF9F0;
  --fg: #111111;
  --accent: #FF4E2A;
  --accent-dark: #D93B1A;
  --ink: #111111;
  --muted: #6B6B6B;
  --cream: #FFF9F0;
  --warm: #FFF3E0;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5 {
  font-family: 'Syne', sans-serif;
  line-height: 1.1;
  font-weight: 800;
  color: var(--ink);
}

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  margin: 0.5rem 0 1rem;
}

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: rgba(255,249,240,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover,
.nav-link-active {
  color: var(--ink);
}

.nav-link-active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -100px;
  opacity: 0.25;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: #FF8C42;
  bottom: -100px;
  left: -100px;
  opacity: 0.2;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: #FFB84D;
  top: 40%;
  right: 30%;
  opacity: 0.15;
}

.hero-dot-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(4rem, 11vw, 8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-accent {
  color: var(--accent);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  color: rgba(255,255,255,0.7);
}

/* === SERVICES === */
.services {
  padding: 7rem 2rem;
  background: var(--bg);
}

.services-header {
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(17,17,17,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(17,17,17,0.08);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: var(--warm);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service-name {
  font-family: 'Syne', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.service-from {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* === PROCESS === */
.process {
  padding: 7rem 2rem;
  background: var(--white);
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.process-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 1rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(17,17,17,0.08);
}

.step:first-child { border-top: 1px solid rgba(17,17,17,0.08); }

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  padding-top: 0.2rem;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* === MANIFESTO === */
.manifesto {
  position: relative;
  padding: 7rem 2rem;
  background: var(--ink);
  overflow: hidden;
}

.manifesto-bg { position: absolute; inset: 0; pointer-events: none; }

.manifesto-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.manifesto-shape-1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -150px; left: -150px;
  opacity: 0.2;
}

.manifesto-shape-2 {
  width: 350px; height: 350px;
  background: #FF8C42;
  bottom: -100px; right: -100px;
  opacity: 0.15;
}

.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-label { color: rgba(255,255,255,0.5); margin-bottom: 2rem; }

.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 2rem;
}

.manifesto-quote em {
  font-style: italic;
  color: var(--accent);
}

.manifesto-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 3rem;
}

.manifesto-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.stat { text-align: center; }

.stat-val {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
  max-width: 160px;
  margin: 0 auto;
}

/* === PRICING === */
.pricing {
  padding: 7rem 2rem;
  background: var(--bg);
}

.pricing-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.pricing-sub {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0.5rem auto 0;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  border: 1px solid rgba(17,17,17,0.06);
  position: relative;
}

.price-card-featured {
  background: var(--ink);
  border-color: var(--ink);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.price-tier {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.price-card-featured .price-tier { color: rgba(255,255,255,0.6); }

.price-range {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.price-card-featured .price-range { color: var(--white); }

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-features li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  opacity: 0.4;
}

.price-card-featured .price-features li { color: rgba(255,255,255,0.6); }

/* === CLOSING === */
.closing {
  padding: 8rem 2rem;
  background: var(--warm);
  text-align: center;
}

.closing-inner { max-width: 700px; margin: 0 auto; }

.closing-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.closing-vibe {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.closing-tool {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.closing-divider { color: var(--accent); font-weight: 700; }

/* === FOOTER === */
.footer {
  padding: 3rem 2rem;
  background: var(--ink);
  text-align: center;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}

.footer-link {
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
}

.footer-link:hover { text-decoration: underline; }

/* === PORTFOLIO === */
.portfolio {
  padding: 7rem 2rem;
  background: var(--bg);
}

.portfolio-header {
  margin-bottom: 4rem;
}

.portfolio-cta-link {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.btn-portfolio {
  font-family: 'Syne', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-decoration: none;
  padding: 0.85rem 2rem;
  border: 2px solid var(--ink);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.btn-portfolio:hover {
  background: var(--ink);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.project-card {
  background: var(--white);
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(17,17,17,0.1);
}

.project-preview {
  aspect-ratio: 16/10;
  background: var(--warm);
  overflow: hidden;
  position: relative;
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-preview-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.75rem;
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--warm) 0%, #FFE4CC 100%);
}

.placeholder-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 78, 42, 0.15);
  color: var(--accent);
}

.placeholder-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

.project-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-type {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.project-title {
  font-family: 'Syne', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.project-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.project-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--warm);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* Portfolio CTA */
.portfolio-cta {
  padding: 5rem 2rem;
  background: var(--ink);
  text-align: center;
}

.portfolio-cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.portfolio-cta-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.portfolio-cta-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.portfolio-cta-email {
  font-family: 'Syne', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.portfolio-cta-email:hover {
  text-decoration: underline;
}

/* Portfolio page header */
.portfolio-page-header {
  padding: 6rem 2rem 4rem;
  background: var(--ink);
  text-align: center;
}

.portfolio-page-header .section-label { color: var(--accent); }
.portfolio-page-header .section-title { color: var(--white); }
.portfolio-page-header .section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0.75rem auto 0;
  line-height: 1.6;
}

.portfolio-back {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 2.5rem;
  transition: color 0.2s ease;
}

.portfolio-back:hover {
  color: var(--accent);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .process-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .manifesto-stats { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { padding: 5rem 1.5rem 3rem; }
  .services, .process, .manifesto, .pricing, .closing, .portfolio, .portfolio-cta, .portfolio-page-header { padding: 5rem 1.5rem; }
  .hero-tags { gap: 0.4rem; }
  .tag { font-size: 0.7rem; }
  .portfolio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .manifesto-stats { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}