:root {
  --bg: #faf8f3;
  --bg-alt: #f3eee5;
  --ink: #1a1612;
  --ink-soft: #2a231e;
  --gray-1: #6b665d;
  --gray-2: #9a948a;
  --gray-3: #cfc8bc;
  --gray-4: #e6e0d3;
  --gray-5: #efe9dc;
  --accent: #c8a96e;
  --accent-soft: #e3cb9e;
  --max: 1080px;
  --gap: 1.5rem;
  --section-y: 7rem;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.75rem; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}
.nav nav { display: flex; align-items: center; gap: 2rem; }
.nav nav a {
  font-size: 0.85rem;
  color: var(--gray-1);
  transition: color 0.15s ease;
}
.nav nav a:hover { color: var(--ink); }
.nav-cta {
  border: 1px solid var(--ink);
  color: var(--ink) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-cta:hover { background: var(--ink); color: var(--bg) !important; }

/* Hero */
.hero {
  padding: 9.5rem 0 9rem;
  border-bottom: 1px solid var(--gray-4);
}
.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 2.25rem;
}
.hero h1 {
  font-size: clamp(3.25rem, 9.5vw, 8rem);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: #0D0D0D;
}
.hero h1 span { display: block; }
.hero .lede {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-1);
  max-width: 34ch;
  margin: 3rem 0 3rem;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: var(--ink-soft); }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--gray-3); }
.btn-secondary:hover { border-color: var(--ink); }
.btn-tier { width: 100%; justify-content: center; background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn-tier:hover { background: var(--ink-soft); }
.btn-full { width: 100%; justify-content: center; }

/* Sections */
.section { padding: var(--section-y) 0; border-bottom: 1px solid var(--gray-4); }
.section-alt { background: var(--bg-alt); }
.section-label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-1);
  margin-bottom: 1.25rem;
}
.section h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
  margin-bottom: 4rem;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem 3rem;
  counter-reset: step;
}
.steps li { padding-top: 1.25rem; border-top: 1px solid var(--gray-3); }
.step-num {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.steps h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.6rem;
}
.steps p {
  color: var(--gray-1);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}
.tier {
  position: relative;
  padding: 2.25rem 2rem;
  background: var(--bg);
  border: 1px solid var(--gray-4);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}
.tier-featured { border-color: var(--ink); }
.tier-tag {
  position: absolute;
  top: -10px;
  left: 1.75rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.2rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
}
.tier h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.4rem;
}
.price {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 0.4rem;
}
.tier-desc {
  color: var(--gray-1);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  min-height: 3rem;
}
.tier ul {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
  flex: 1;
}
.tier-fineprint {
  font-size: 0.74rem;
  line-height: 1.55;
  color: var(--gray-2);
  margin-bottom: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-4);
}
.tier li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  padding-left: 1.4rem;
  position: relative;
}
.tier li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 1px;
  background: var(--gray-2);
}

/* Portfolio */
.portfolio {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.card {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-2px); }
.card:hover .card-thumb { border-color: var(--gray-2); }
.card-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--gray-5);
  border: 1px solid var(--gray-4);
  border-radius: 12px;
  margin-bottom: 1.25rem;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
}
.card p {
  font-size: 0.9rem;
  color: var(--gray-1);
  line-height: 1.55;
}
.card-meta {
  margin-top: 0.75rem;
  font-size: 0.78rem !important;
  color: var(--gray-2) !important;
  letter-spacing: 0.04em;
}

/* Intake */
.intake {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.intake-copy h2 { margin-bottom: 1.5rem; }
.intake-copy p {
  color: var(--gray-1);
  font-size: 1rem;
  max-width: 36ch;
}
.intake-form { display: flex; flex-direction: column; gap: 1.25rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gray-1);
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--gray-3);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.15s ease;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b665d' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
  cursor: pointer;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--gray-2); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--ink); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note {
  font-size: 0.78rem;
  color: var(--gray-2);
  text-align: center;
}

/* Footer */
.footer {
  padding: 2.5rem 0;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-1);
}
.footer-inner a { color: var(--gray-1); transition: color 0.15s ease; }
.footer-inner a:hover { color: var(--ink); }

/* Responsive */
@media (max-width: 760px) {
  :root { --section-y: 5rem; }
  .nav nav { gap: 1rem; }
  .nav nav a:not(.nav-cta) { display: none; }
  .hero { padding: 5rem 0 4.5rem; }
  .intake { grid-template-columns: 1fr; gap: 2.5rem; }
  .section h2 { margin-bottom: 2.5rem; }
}
