/* ============================================================
   MrP² Agency — style.css
   Fonts: Outfit (headings), Figtree (body)
   ============================================================ */

@import url('https://cdn.jsdelivr.net/npm/@fontsource/outfit@5/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/outfit@5/700.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/figtree@5/400.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/figtree@5/600.css');
@import url('https://cdn.jsdelivr.net/npm/@fontsource/figtree@5/700.css');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── Tokens ── */
:root {
  --coral: #D85A30;
  --black: #111111;
  --warm:  #F5F1EC;
  --white: #ffffff;
  --muted: #666666;
  --border: rgba(0,0,0,0.08);
}

/* ── Base ── */
body {
  font-family: 'Figtree', sans-serif;
  color: var(--black);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Content width constraint ── */
.inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

/* ── Helpers ── */
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--coral);
  margin-bottom: 0.75rem;
  display: block;
}
.sec { padding: 5rem 2rem; }
.sec-warm  { background: var(--warm); }
.sec-white { background: var(--white); }
.sec-black { background: var(--black); }
.card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); }
.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  background: #fde8df;
  padding: 3px 8px;
  border-radius: 4px;
}
.s-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.s-title em { font-style: normal; color: var(--coral); }

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  padding: 13px 24px;
  border-radius: 7px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.88; }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 13px 24px;
  border-radius: 7px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-white {
  display: inline-block;
  background: var(--white);
  color: var(--coral);
  padding: 13px 26px;
  border-radius: 7px;
  font-family: 'Figtree', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.15s;
}
.btn-white:hover { opacity: 0.9; }

/* ── Nav ── */
.nav {
  background: var(--black);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-img { height: 32px; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links .nav-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--black);
  padding: 4rem 2rem 3.5rem;
}
.page-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 680px;
}
.page-hero h1 em { font-style: normal; color: var(--coral); }
.page-hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.7;
}

/* ── CTA band ── */
.cta-band {
  background: var(--coral);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 500px;
}
.cta-band h2 em { font-style: normal; opacity: 0.62; }

/* ── Footer ── */
.footer {
  background: var(--black);
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 1.75rem; list-style: none; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.38); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   HOME
   ============================================================ */
.hero {
  background: var(--black);
  padding: 5.5rem 2rem 4.5rem;
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--coral); }
.hero p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 0.875rem; flex-wrap: wrap; }

.trust-bar {
  background: #181818;
  padding: 1.25rem 0;
  display: flex;
  gap: 3rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
  align-items: center;
}
.trust-item { display: flex; align-items: baseline; gap: 0.5rem; }
.trust-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.trust-lbl { font-size: 12px; color: rgba(255,255,255,0.38); }

.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.svc-card { padding: 1.75rem; }
.svc-icon {
  width: 40px; height: 40px;
  background: #fde8df;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.svc-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.svc-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.about-text p { font-size: 0.95rem; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.about-text p strong { color: var(--black); }
.about-box { background: var(--black); border-radius: 14px; padding: 2.5rem; }
.about-box blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.about-box blockquote em { font-style: normal; color: var(--coral); }
.about-box cite { font-size: 12px; color: rgba(255,255,255,0.4); font-style: normal; }

.work-grid-home { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3rem; }
.work-thumb {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 700; letter-spacing: -0.04em;
}
.work-info { padding: 1.25rem; }
.work-info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  margin-bottom: 0.3rem; letter-spacing: -0.02em;
}
.work-info p { font-size: 12px; color: #777; line-height: 1.5; }
.work-info .tag { margin-top: 0.6rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.svc-full {
  display: flex; flex-direction: column;
  gap: 1px;
  background: rgba(0,0,0,0.07);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.svc-row {
  background: var(--white);
  padding: 2rem;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 2rem;
  align-items: start;
}
.svc-row-head { display: flex; flex-direction: column; gap: 0.75rem; }
.svc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem; font-weight: 700;
  color: rgba(216,90,48,0.15); line-height: 1;
}
.svc-row h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem; font-weight: 700; letter-spacing: -0.02em;
}
.svc-row p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.svc-includes { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.svc-includes li { font-size: 13px; color: #444; display: flex; align-items: center; gap: 0.5rem; }
.svc-includes li::before { content: ''; width: 6px; height: 6px; background: var(--coral); border-radius: 50%; flex-shrink: 0; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.proc-card { padding: 1.5rem; }
.proc-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem; font-weight: 700;
  color: rgba(216,90,48,0.12); line-height: 1; margin-bottom: 0.75rem;
}
.proc-card h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.proc-card p { font-size: 12px; color: #777; line-height: 1.6; }

/* ============================================================
   WORK
   ============================================================ */
.filter-bar { display: flex; gap: 0.5rem; margin-bottom: 2rem; flex-wrap: wrap; }
.f-pill {
  background: transparent;
  border: 1px solid rgba(0,0,0,0.15);
  color: #555;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: 'Figtree', sans-serif;
  font-size: 12px; cursor: pointer; font-weight: 600;
  transition: background 0.15s, color 0.15s;
}
.f-pill:hover, .f-pill.active { background: var(--black); border-color: var(--black); color: var(--white); }

.work-grid-full { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.w-card-full { overflow: hidden; text-decoration: none; color: inherit; display: block; }
a.w-card-full:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.w-thumb-full {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem; font-weight: 700; letter-spacing: -0.04em;
}
.w-thumb-full img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.w-body { padding: 1.5rem; }
.w-body h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.w-body p { font-size: 13px; color: #666; line-height: 1.65; margin-bottom: 1rem; }
.w-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.w-link { display: inline-block; margin-top: 1rem; font-size: 13px; font-weight: 700; color: var(--coral); text-decoration: none; }
.w-link:hover { text-decoration: underline; }

/* ============================================================
   BLOG LIST
   ============================================================ */
.blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 2.5rem; align-items: start; }
.post-list { display: flex; flex-direction: column; gap: 1.5rem; }
.post-card-link { text-decoration: none; color: inherit; display: block; }
.post-card-link:hover .card { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-2px); }
.card { transition: transform 0.15s, box-shadow 0.15s; }
.post-card { overflow: hidden; border-left: 3px solid var(--coral); }
.post-body { padding: 1.5rem; }
.post-meta { font-size: 11px; color: #aaa; margin-bottom: 0.4rem; display: flex; gap: 0.75rem; align-items: center; flex-wrap: wrap; }
.post-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); }
.post-body h3 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 0.4rem; line-height: 1.25; }
.post-body p { font-size: 13px; color: #777; line-height: 1.6; }
.read-more { font-size: 12px; font-weight: 700; color: var(--coral); display: inline-block; margin-top: 0.6rem; text-decoration: none; }
.read-more:hover { text-decoration: underline; }

.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-card { padding: 1.25rem; }
.sidebar-card h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; }
.topic-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.topic-list li { font-size: 13px; color: #555; display: flex; justify-content: space-between; }
.topic-list li span { font-size: 11px; color: #bbb; }
.topic-list a { text-decoration: none; color: #555; }
.topic-list a:hover { color: var(--coral); }
.topic-list a.active { color: var(--coral); font-weight: 700; }
.sidebar-cta { background: var(--black); border-radius: 12px; padding: 1.5rem; }
.sidebar-cta h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.sidebar-cta p { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 1rem; line-height: 1.6; }

/* ============================================================
   BLOG POST
   ============================================================ */
.post-hero { background: var(--black); padding: 4rem 2rem 0; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; margin-bottom: 1.5rem; transition: color 0.15s; }
.back-link:hover { color: rgba(255,255,255,0.75); }
.post-hero-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.post-cat-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); background: var(--coral); padding: 4px 10px; border-radius: 4px; }
.post-date, .post-read { font-size: 12px; color: rgba(255,255,255,0.4); }
.post-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.03em; color: var(--white); margin-bottom: 1.25rem; max-width: 700px; }
.post-intro { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 600px; line-height: 1.7; margin-bottom: 2.5rem; }

.post-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; padding: 3.5rem 2rem; align-items: start; background: var(--warm); }

article h2 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.025em; margin: 2rem 0 0.75rem; }
article h2:first-child { margin-top: 0; }
article h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; margin: 1.5rem 0 0.5rem; }
article p { font-size: 15px; line-height: 1.8; color: #333; margin-bottom: 1.25rem; }
article ul { margin: 0 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
article ul li { font-size: 15px; line-height: 1.7; color: #333; }
article ul li::marker { color: var(--coral); }
.pullquote { background: var(--white); border-left: 3px solid var(--coral); padding: 1.25rem 1.5rem; border-radius: 0 10px 10px 0; margin: 2rem 0; font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; line-height: 1.4; letter-spacing: -0.02em; }
.post-img { background: #e8e8e8; border-radius: 10px; height: 220px; display: flex; align-items: center; justify-content: center; margin: 2rem 0; font-size: 13px; color: #aaa; overflow: hidden; }
.post-img img { width: 100%; height: 100%; object-fit: cover; }
.author-card { background: var(--white); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); display: flex; align-items: center; gap: 1rem; margin-top: 2.5rem; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); flex-shrink: 0; line-height: 1; }
.author-avatar sup { font-size: 8px; position: relative; top: -5px; }
.author-info strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.author-info span { font-size: 12px; color: #888; line-height: 1.5; }

.post-sidebar { display: flex; flex-direction: column; gap: 1.5rem; position: sticky; top: 80px; }
.post-sidebar .sidebar-card { padding: 1.25rem; }
.post-sidebar .sidebar-card h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; }
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.toc-list li a { font-size: 13px; color: #555; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.15s; }
.toc-list li a::before { content: ''; width: 4px; height: 4px; background: var(--coral); border-radius: 50%; flex-shrink: 0; }
.toc-list li a:hover { color: var(--coral); }
.related-post { display: flex; flex-direction: column; gap: 0.3rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.related-post:last-child { border-bottom: none; padding-bottom: 0; }
.rel-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); }
.related-post a { font-size: 13px; font-weight: 600; color: var(--black); text-decoration: none; line-height: 1.35; }
.related-post a:hover { color: var(--coral); }

.more-posts { padding: 3.5rem 2rem; background: var(--white); }
.more-posts h2 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.rel-card { overflow: hidden; }
.rel-thumb { height: 110px; display: flex; align-items: center; justify-content: center; font-size: 1.75rem; background: #fde8df; }
.rel-body { padding: 1rem; }
.rel-cat-sm { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--coral); margin-bottom: 0.35rem; display: block; }
.rel-body h3 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; line-height: 1.3; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
.rel-body a { font-size: 12px; font-weight: 700; color: var(--coral); text-decoration: none; }
.rel-body a:hover { text-decoration: underline; }

/* ============================================================
   ABOUT
   ============================================================ */
.intro-text { max-width: 760px; margin: 0 auto 2.5rem; }
.intro-text p { font-size: 1.05rem; color: #444; line-height: 1.8; margin-bottom: 1.25rem; }
.intro-text p:last-child { margin-bottom: 0; }
.intro-text p strong { color: var(--black); }
.author-row { max-width: 760px; margin: 0 auto; display: flex; align-items: center; gap: 1.25rem; }
.author-avatar-sm { width: 72px; height: 72px; border-radius: 50%; background: var(--coral); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); flex-shrink: 0; line-height: 1; }
.author-avatar-sm sup { font-size: 11px; position: relative; top: -6px; }
.author-byline strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--black); }
.author-byline span { font-size: 13px; color: #888; }

.stack-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.stack-card { background: var(--white); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); }
.stack-card h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; }
.stack-list { list-style: none; display: flex; flex-direction: column; gap: 0.35rem; }
.stack-list li { font-size: 13px; color: #555; display: flex; align-items: center; gap: 0.5rem; }
.stack-list li::before { content: ''; width: 5px; height: 5px; background: var(--coral); border-radius: 50%; flex-shrink: 0; }

.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.logo-card { background: var(--white); border-radius: 12px; padding: 2rem 1.5rem; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; min-height: 140px; transition: border-color 0.2s ease, transform 0.2s ease; }
a.logo-card:hover { border-color: var(--coral); transform: translateY(-2px); }
.logo-card img { max-width: 180px; max-height: 80px; width: auto; height: auto; object-fit: contain; }
.logo-wordmark { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--black); letter-spacing: -0.01em; }

.timeline { display: flex; flex-direction: column; }
.tl-item { display: grid; grid-template-columns: 100px 1fr; gap: 2rem; padding: 1.75rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.tl-item:last-child { border-bottom: none; }
.tl-year { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--coral); padding-top: 2px; }
.tl-content h4 { font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 700; margin-bottom: 0.3rem; }
.tl-content p { font-size: 13px; color: #666; line-height: 1.65; }

.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.value-card { padding: 2rem; border-radius: 12px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); }
.value-card h4 { font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.value-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.65; }
.value-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; color: rgba(216,90,48,0.3); line-height: 1; margin-bottom: 0.75rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-top { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; }
.contact-info h2 { font-family: 'Outfit', sans-serif; font-size: clamp(1.3rem, 3vw, 1.6rem); font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 1rem; }
.contact-info > p { font-size: 14px; color: #555; line-height: 1.75; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.c-detail { display: flex; align-items: center; gap: 0.875rem; }
.c-icon { width: 38px; height: 38px; background: #fde8df; border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-text strong { display: block; font-size: 13px; font-weight: 700; }
.c-text span { font-size: 12px; color: #888; }
.faq-list { display: flex; flex-direction: column; gap: 1px; background: rgba(0,0,0,0.06); border-radius: 10px; overflow: hidden; }
.faq-item { background: var(--white); padding: 1.25rem 1.5rem; }
.faq-item h4 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.4rem; }
.faq-item p { font-size: 13px; color: #666; line-height: 1.65; }
.contact-form { border-radius: 14px; padding: 2rem; background: var(--white); border: 1px solid var(--border); }
.contact-form h3 { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 1.5rem; letter-spacing: -0.02em; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-bottom-row { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; align-items: end; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 12px; font-weight: 700; color: #444; }
.form-group input,
.form-group select,
.form-group textarea { padding: 10px 13px; border: 1px solid rgba(0,0,0,0.15); border-radius: 7px; font-family: 'Figtree', sans-serif; font-size: 14px; color: var(--black); background: #fafafa; outline: none; transition: border-color 0.15s; width: 100%; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--coral); background: var(--white); }
.form-group textarea { height: 130px; resize: vertical; }
.form-status { margin-top: 1rem; font-size: 13px; line-height: 1.55; padding: 0; border-radius: 7px; }
.form-status:empty { display: none; }
.form-status--loading { padding: 0.75rem 1rem; background: #f4f4f4; color: #555; border: 1px solid rgba(0,0,0,0.08); }
.form-status--success { padding: 0.75rem 1rem; background: #e8f5ec; color: #1f6b3a; border: 1px solid #b9e0c6; }
.form-status--error   { padding: 0.75rem 1rem; background: #fdece7; color: #a03016; border: 1px solid #f4c4b5; }

/* ============================================================
   PROJECT (single)
   ============================================================ */
.project-hero { background: var(--black); padding: 4rem 2rem 0; }
.project-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.project-hero h1 { font-family: 'Outfit', sans-serif; font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: var(--white); margin-bottom: 1rem; max-width: 680px; }
.project-hero h1 em { font-style: normal; color: var(--coral); }
.project-lede { font-size: 1rem; color: rgba(255,255,255,0.5); max-width: 560px; line-height: 1.7; margin-bottom: 2.5rem; }
.project-cover { height: 340px; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 6rem; font-weight: 700; overflow: hidden; }
.project-cover img { width: 100%; height: 100%; object-fit: cover; }

.project-layout { display: grid; grid-template-columns: 1fr 280px; gap: 3rem; padding: 3.5rem 2rem; background: var(--warm); align-items: start; }
.project-body h2 { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.025em; margin: 2rem 0 0.75rem; }
.project-body h2:first-child { margin-top: 0; }
.project-body p { font-size: 15px; line-height: 1.8; color: #333; margin-bottom: 1.25rem; }
.project-body ul { margin: 0 0 1.25rem 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.project-body ul li { font-size: 15px; line-height: 1.7; color: #333; }
.project-body ul li::marker { color: var(--coral); }
.screenshot { background: #e0e0e0; border-radius: 10px; height: 200px; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #aaa; margin: 2rem 0; overflow: hidden; }
.screenshot img { width: 100%; height: 100%; object-fit: cover; }
.screenshot-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 2rem 0; }
.screenshot-2col .screenshot { margin: 0; }

.project-sidebar { display: flex; flex-direction: column; gap: 1.25rem; position: sticky; top: 80px; }
.info-card { background: var(--white); border-radius: 12px; padding: 1.5rem; border: 1px solid var(--border); }
.info-card h4 { font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; margin-bottom: 1rem; }
.info-row { display: flex; flex-direction: column; gap: 0.75rem; }
.info-item { display: flex; flex-direction: column; gap: 0.2rem; }
.info-item .label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.info-item .value { font-size: 13px; font-weight: 600; color: var(--black); }
.info-item .value a { color: var(--coral); text-decoration: none; }
.info-item .value a:hover { text-decoration: underline; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.25rem; }
.tech-tag { font-size: 11px; background: var(--warm); color: #555; padding: 3px 8px; border-radius: 4px; font-weight: 600; }

.more-projects { padding: 3.5rem 2rem; background: var(--white); }
.more-projects h2 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 1.5rem; }
.proj-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.proj-card { background: var(--warm); border-radius: 12px; overflow: hidden; border: 1px solid rgba(0,0,0,0.06); text-decoration: none; color: inherit; display: block; transition: opacity 0.15s; }
.proj-card:hover { opacity: 0.85; }
.proj-thumb { height: 120px; display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 700; }
.proj-body { padding: 1.1rem; }
.proj-body h3 { font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; letter-spacing: -0.01em; }
.proj-body p { font-size: 12px; color: #777; line-height: 1.5; }
.proj-link { font-size: 12px; font-weight: 700; color: var(--coral); display: inline-block; margin-top: 0.5rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--black); padding: 1.5rem 2rem; gap: 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { text-align: center; padding: 10px; }
  .nav-toggle { display: flex; }
  .nav { position: relative; }

  .svc-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .work-grid-home { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 1fr; gap: 1rem; }
  .work-grid-full { grid-template-columns: 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .post-layout { grid-template-columns: 1fr; padding: 2rem; }
  .post-sidebar { display: none; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-row-3 { grid-template-columns: 1fr 1fr; }
  .form-bottom-row { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .stack-grid { grid-template-columns: repeat(2, 1fr); }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .project-layout { grid-template-columns: 1fr; padding: 2rem; }
  .project-sidebar { position: static; }
  .proj-grid { grid-template-columns: repeat(2, 1fr); }
  .tl-item { grid-template-columns: 80px 1fr; gap: 1rem; }
}

@media (max-width: 600px) {
  .sec { padding: 3.5rem 1.25rem; }
  .page-hero, .post-hero, .project-hero { padding: 3rem 1.25rem; }
  .project-hero { padding-bottom: 0; }
  .hero { padding: 3.5rem 1.25rem 3rem; }
  .trust-bar { gap: 1.5rem; padding: 1rem 1.25rem; }
  .nav { padding: 0 1.25rem; }
  .footer { padding: 1.75rem 1.25rem; flex-direction: column; align-items: flex-start; }
  .work-grid-home { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .svc-row { padding: 1.5rem; }
  .form-row-3 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .proj-grid { grid-template-columns: 1fr; }
  .more-posts, .more-projects { padding: 2.5rem 1.25rem; }
  .cta-band { padding: 3rem 1.25rem; }
  .contact-form { padding: 1.5rem 1.25rem; }
  .stack-grid { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshot-2col { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; gap: 0.25rem; }
  .tl-year { font-size: 0.85rem; }
  .post-layout { padding: 2rem 1.25rem; }
  .project-layout { padding: 2rem 1.25rem; }
  .intro-text { margin-bottom: 2rem; }
}
