:root {
  --bg: #faf8f5;
  --bg-alt: #f0ede8;
  --fg: #1a1a1a;
  --fg-light: #5a5a5a;
  --accent: #d4922a;
  --accent-light: rgba(212, 146, 42, 0.12);
  --border: #e2ddd7;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: white; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--fg);
  text-decoration: none;
}
.header-nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.header-nav a {
  font-size: 0.875rem;
  color: var(--fg-light);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 400;
}
.header-nav a:hover { color: var(--fg); }

/* Hero */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--fg-light);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 2rem;
  font-weight: 300;
}
.hero-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hero-services span {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-light);
  font-weight: 400;
}

/* Design showcase */
.design-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.design-card {
  border-radius: 12px;
  padding: 1.25rem;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.design-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.06);
}
.card-grad { background: #fffdf9; }
.card-flyer { background: #f9f6f0; }
.card-logo { background: #f5f5f5; }
.card-social { background: #f0f5fb; }

/* Graduation card */
.card-cap {
  width: 40px;
  height: 26px;
  margin: 0 auto 0.75rem;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.card-name { font-family: var(--font-display); font-size: 0.95rem; letter-spacing: 0.05em; text-align: center; margin-bottom: 0.2rem; }
.card-sub { font-size: 0.65rem; text-align: center; color: var(--fg-light); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.6rem; }
.card-info { font-size: 0.7rem; text-align: center; color: var(--fg-light); line-height: 1.4; margin-bottom: 0.5rem; }
.card-date { font-size: 0.6rem; text-align: center; color: var(--accent); font-weight: 500; }
.card-ornament { display: flex; justify-content: center; margin-top: 0.6rem; }

/* Flyer card */
.flyer-header { font-size: 0.55rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 0.4rem; }
.flyer-name { font-family: var(--font-display); font-size: 1.15rem; line-height: 1.15; color: var(--fg); margin-bottom: 0.6rem; }
.flyer-deco { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.6rem; }
.deco-line { flex: 1; height: 1px; background: var(--border); }
.deco-dots { display: flex; gap: 3px; }
.deco-dots span { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); display: block; }
.flyer-details { font-size: 0.65rem; color: var(--fg-light); text-align: center; line-height: 1.6; }

/* Logo card */
.logo-mock-circle { display: flex; justify-content: center; margin-bottom: 0.6rem; }
.logo-mock-name { font-family: var(--font-display); font-size: 0.75rem; text-align: center; letter-spacing: 0.12em; margin-bottom: 0.15rem; }
.logo-mock-tagline { font-size: 0.55rem; text-align: center; color: var(--fg-light); letter-spacing: 0.05em; }

/* Social card */
.social-header { display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.6rem; }
.social-avatar { width: 20px; height: 20px; border-radius: 50%; background: var(--accent); opacity: 0.3; }
.social-name { font-size: 0.6rem; font-weight: 600; color: var(--fg); }

/* Section label */
.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

/* Manifesto */
.manifesto {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.manifesto-rule {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 2.5rem;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.4;
  color: var(--fg);
  max-width: 720px;
  margin-bottom: 2rem;
  font-style: normal;
}
.manifesto-body p {
  max-width: 640px;
  font-size: 0.95rem;
  color: var(--fg-light);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}
.manifesto-body em { font-style: italic; }
.manifesto-body strong { font-weight: 600; color: var(--fg); }

/* Niche */
.niche { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.niche h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 3.5rem; }
.niche-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
.niche-item { }
.niche-icon { margin-bottom: 1rem; }
.niche-item h3 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.6rem; letter-spacing: -0.01em; }
.niche-item p { font-size: 0.9rem; color: var(--fg-light); line-height: 1.65; font-weight: 300; }

/* Proof */
.proof { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.proof h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 3rem; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.proof-item { }
.proof-visual {
  aspect-ratio: 3/4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}
.proof-grad { background: #fffdf9; border: 1px solid var(--border); }
.proof-flyer { background: #f9f6f0; border: 1px solid var(--border); }
.proof-logo { background: #f5f5f5; border: 1px solid var(--border); }
.proof-social { background: #f0f5fb; border: 1px solid var(--border); }
.proof-label { font-size: 0.8rem; font-weight: 500; color: var(--fg-light); text-align: center; }
.proof-sample { padding: 1.25rem; text-align: center; width: 100%; }
.sample-cap { margin-bottom: 0.5rem; display: flex; justify-content: center; }
.sample-text { font-size: 0.65rem; line-height: 1.6; color: var(--fg-light); }
.sample-text strong { display: block; font-size: 0.8rem; color: var(--fg); letter-spacing: 0.05em; }
.sample-text span { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; }
.sample-header { font-size: 0.55rem; font-weight: 700; letter-spacing: 0.15em; color: var(--accent); margin-bottom: 0.3rem; text-transform: uppercase; }
.sample-body { font-family: var(--font-display); font-size: 0.9rem; line-height: 1.25; margin-bottom: 0.5rem; }
.sample-dots { display: flex; justify-content: center; gap: 4px; }
.sample-dots span { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.logo-text { font-family: var(--font-display); font-size: 0.7rem; letter-spacing: 0.12em; margin-top: 0.5rem; }
.sample-social-block { display: flex; align-items: center; gap: 0.6rem; width: 100%; }
.social-icon { width: 28px; height: 28px; border-radius: 50%; background: var(--accent); flex-shrink: 0; opacity: 0.4; }
.social-lines { flex: 1; }
.s-line { height: 6px; background: var(--fg); border-radius: 3px; margin-bottom: 5px; opacity: 0.7; }
.s-line.l1 { width: 70%; }
.s-line.l2 { width: 50%; }
.s-line.l3 { width: 60%; }

/* Testimonials */
.testimonials { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.testimonials-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.testimonials h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 3rem; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonials-item { background: white; border-radius: 12px; padding: 2rem; box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04); }
.testimonials-quote { font-family: var(--font-display); font-size: 1rem; font-style: italic; line-height: 1.65; color: var(--fg); margin-bottom: 1.25rem; }
.testimonials-author { font-size: 0.85rem; font-weight: 600; color: var(--fg); margin-bottom: 0.25rem; }
.testimonials-title { font-size: 0.8rem; color: var(--fg-light); font-weight: 300; }

/* Philosophy */
.philosophy { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.philosophy-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.philosophy-left h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 2.5vw, 2.2rem); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 1.5rem; }
.philosophy-body { font-size: 0.95rem; color: var(--fg-light); line-height: 1.75; font-weight: 300; }
.philosophy-body em { font-style: italic; }
.philosophy-steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:first-child { border-top: 1px solid var(--border); }
.step-num { font-size: 0.7rem; font-weight: 700; color: var(--accent); letter-spacing: 0.1em; padding-top: 0.25rem; }
.step-body h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; }
.step-body p { font-size: 0.85rem; color: var(--fg-light); line-height: 1.6; font-weight: 300; }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* Pricing */
.pricing { background: var(--fg); color: white; }
.pricing-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.pricing .section-label { color: var(--accent); }
.pricing h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2.5rem; }
.pricing-item.pricing-management .pricing-range span {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--fg-light);
}
.pricing-item { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 2rem; position: relative; }
.pricing-featured { border-color: var(--accent); background: rgba(212,146,42,0.1); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: white; font-size: 0.65rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.75rem; border-radius: 100px; }
.pricing-type { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 0.75rem; }
.pricing-range { font-family: var(--font-display); font-size: 2rem; margin-bottom: 0.75rem; }
.pricing-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; font-weight: 300; }
.pricing-note { font-size: 0.85rem; color: rgba(255,255,255,0.45); font-style: italic; }

/* Closing */
.closing { background: var(--accent-light); border-top: 1px solid var(--border); }
.closing-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; text-align: center; }

/* Contact form in layout */
.contact-success-banner {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.contact-success-banner h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.contact-success-banner p {
  font-size: 0.9rem;
  color: var(--fg-light);
}
.closing-deco { margin-bottom: 2rem; display: flex; justify-content: center; }
.closing h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1rem; }
.closing p { font-size: 1rem; color: var(--fg-light); font-weight: 300; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; font-size: 0.8rem; color: var(--fg-light); }

/* Portfolio page */
.portfolio-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.portfolio-hero .section-label { margin-bottom: 1rem; }
.portfolio-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.portfolio-hero h1 em { font-style: italic; color: var(--accent); }
.portfolio-hero p {
  font-size: 1rem;
  color: var(--fg-light);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.portfolio-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.portfolio-section { margin-bottom: 5rem; }
.portfolio-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.portfolio-section-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.portfolio-section-header span {
  font-size: 0.75rem;
  color: var(--fg-light);
  font-weight: 400;
}
.portfolio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(480px, 1fr));
  gap: 1.5rem;
}
.portfolio-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.06);
}
.portfolio-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.portfolio-card-body { padding: 1.5rem 1.75rem; }
.portfolio-card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}
.portfolio-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--fg);
}
.portfolio-card p {
  font-size: 0.875rem;
  color: var(--fg-light);
  line-height: 1.65;
  font-weight: 300;
}
.portfolio-card-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.portfolio-card-meta span {
  font-size: 0.75rem;
  color: var(--fg-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.portfolio-cta {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.portfolio-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.portfolio-cta p {
  font-size: 1rem;
  color: var(--fg-light);
  font-weight: 300;
  margin-bottom: 2rem;
}
.btn-primary {
  display: inline-block;
  background: var(--fg);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { background: var(--accent); }

/* Contact form */
.contact-page-body {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  color: var(--fg);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

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

.contact-success {
  background: var(--accent-light);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 1.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-success h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-success p {
  font-size: 0.9rem;
  color: var(--fg-light);
}

.contact-success a {
  color: var(--accent);
  font-weight: 500;
}

.contact-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.contact-hero .section-label { margin-bottom: 1rem; }
.contact-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.contact-hero h1 em { font-style: italic; color: var(--accent); }
.contact-hero p {
  font-size: 1rem;
  color: var(--fg-light);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services page */
.services-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  text-align: center;
}
.services-hero .section-label { margin-bottom: 1rem; }
.services-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 1rem;
}
.services-hero h1 em { font-style: italic; color: var(--accent); }
.services-hero p {
  font-size: 1rem;
  color: var(--fg-light);
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.services-categories {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}

.services-category {
  margin-bottom: 4rem;
}
.services-category:last-child { margin-bottom: 0; }

.services-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.services-category-header h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}
.services-category-header span {
  font-size: 0.75rem;
  color: var(--fg-light);
  font-weight: 400;
}

.services-tiers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tier-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06), 0 0 0 1px rgba(0,0,0,0.04);
  position: relative;
  display: flex;
  flex-direction: column;
}
.tier-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.1), 0 0 0 1px rgba(0,0,0,0.06);
}
.tier-card.tier-featured {
  border: 2px solid var(--accent);
}
.tier-card.tier-featured .tier-name { color: var(--accent); }

.tier-name {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-light);
  margin-bottom: 0.75rem;
}
.tier-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.tier-price span {
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--fg-light);
}
.tier-desc {
  font-size: 0.875rem;
  color: var(--fg-light);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 1.25rem;
}
.tier-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex: 1;
}
.tier-features li {
  font-size: 0.8rem;
  color: var(--fg-light);
  line-height: 1.5;
  padding: 0.25rem 0;
  padding-left: 1.25rem;
  position: relative;
}
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 9.5l3-3 2 2 3-4' stroke='%23d4922a' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.tier-cta {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--fg);
  text-decoration: none;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  margin-top: auto;
}
.tier-cta:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.tier-grad .tier-card { background: #fffdf9; }
.tier-flyer .tier-card { background: #f9f6f0; }
.tier-logo .tier-card { background: #f5f5f5; }
.tier-social .tier-card { background: #f0f5fb; }
.tier-merch .tier-card { background: #faf5f0; }

/* Social media management section */
.social-management-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--border);
}
.management-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.management-header h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
.management-header span {
  font-size: 0.75rem;
  color: var(--fg-light);
  font-weight: 400;
}

/* Tier badge */
.tier-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--accent);
  color: white;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 0 0 6px 6px;
}

.services-cta {
  background: var(--accent-light);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
  text-align: center;
}
.services-cta-inner { max-width: 600px; margin: 0 auto; }
.services-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}
.services-cta p {
  font-size: 1rem;
  color: var(--fg-light);
  font-weight: 300;
  margin-bottom: 2rem;
}

/* Thank-you page */
.thankyou-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--fg);
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--fg); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .niche-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .header-nav { display: none; }
  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-inner { padding: 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .manifesto-inner, .niche, .philosophy, .proof-inner, .pricing-inner, .closing-inner, .services-cta { padding: 3.5rem 1.5rem; }
  .niche h2, .proof h2, .philosophy h2, .pricing h2 { font-size: 1.8rem; }
  .manifesto-quote { font-size: 1.2rem; }
  .services-tiers-grid { grid-template-columns: 1fr; }
  .services-category-header { flex-direction: column; gap: 0.5rem; }
}