:root {
  --ink: #0f0f0d;
  --ink-2: #1c1c18;
  --ink-3: #2e2e28;
  --rust: #c0202a;
  --rust-dim: rgba(192,32,42,0.12);
  --rust-light: #e03040;
  --sand: #f5f0e6;
  --sand-2: #ede8dc;
  --warm-gray: #7a7a6e;
  --light: #faf9f5;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Epilogue', sans-serif;
  background: var(--light);
  color: var(--ink);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 4rem;
  background: rgba(250,249,245,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15,15,13,0.08);
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  display: flex; align-items: center; gap: 0.4rem;
}
.nav-logo .dot { color: var(--rust); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-gray);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--light) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--rust) !important; color: white !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--ink);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem;
  position: relative;
  overflow: hidden;
}

/* noise grain overlay */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}

/* rust accent glow */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 70% 15%, rgba(192,32,42,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(192,32,42,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

/* large background text */
.hero-bg-text {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(120px, 18vw, 220px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.025);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.hero-top {
  position: absolute;
  top: 8rem; left: 4rem; right: 4rem;
  display: flex; justify-content: space-between; align-items: flex-start;
  z-index: 2;
}
.hero-tag {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.4);
}
.hero-available {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.8rem;
  color: rgba(245,240,230,0.5);
}
.hero-available::before {
  content: '';
  width: 7px; height: 7px;
  background: #4caf6e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-content {
  position: relative; z-index: 2;
  animation: heroIn 1s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--sand);
  margin-bottom: 3rem;
}
.hero h1 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rust-light);
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245,240,230,0.55);
  max-width: 420px;
  font-weight: 300;
}
.hero-actions {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 1rem;
  flex-shrink: 0;
}
.btn-primary {
  background: var(--rust);
  color: white;
  padding: 1rem 2.2rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  transition: background 0.2s, transform 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--rust-light); transform: translateY(-2px); }
.btn-ghost {
  color: rgba(245,240,230,0.45);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.5rem;
}
.btn-ghost:hover { color: var(--sand); }
.btn-ghost::after { content: '↓'; }

.hero-scroll-line {
  position: absolute;
  bottom: 0; left: 50%;
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(245,240,230,0.15));
  transform: translateX(-50%);
}

/* MARQUEE */
.marquee-wrap {
  background: var(--rust);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}
.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: white;
  padding: 0 2.5rem;
  opacity: 0.9;
}
.marquee-track span.dot { opacity: 0.4; padding: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* SECTIONS */
section { padding: 7rem 4rem; }

.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--rust);
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
h2 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

/* WHY */
.why {
  background:
    radial-gradient(ellipse 70% 60% at 95% 5%, rgba(192,32,42,0.05) 0%, transparent 50%),
    linear-gradient(160deg, var(--sand) 0%, var(--sand-2) 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
.why-left {}
.why-left p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--warm-gray);
  font-weight: 400;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.why-list {
  display: flex; flex-direction: column; gap: 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(15,15,13,0.1);
}
.why-item {
  display: flex; align-items: center; gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(15,15,13,0.08);
  transition: padding-left 0.3s;
}
.why-item:hover { padding-left: 0.5rem; }
.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--rust);
  width: 28px;
  flex-shrink: 0;
}
.why-item-text {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}
.why-item-sub {
  font-size: 0.82rem;
  color: var(--warm-gray);
  margin-top: 0.2rem;
  font-weight: 400;
}
.why-arrow {
  margin-left: auto;
  color: var(--rust);
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 1.1rem;
}
.why-item:hover .why-arrow { opacity: 1; }

/* big stat block */
.why-right {
  position: sticky;
  top: 8rem;
}
.stat-block {
  background: var(--ink);
  padding: 3.5rem;
  border-radius: 4px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 1px rgba(192,32,42,0.2), 0 24px 60px rgba(15,15,13,0.25);
}
.stat-big {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 5.5rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--sand);
  margin-bottom: 0.5rem;
}
.stat-big span { color: var(--rust); }
.stat-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245,240,230,0.5);
  font-weight: 300;
  max-width: 260px;
}
.mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mini-stat {
  background: var(--sand-2);
  padding: 1.5rem;
  border-radius: 4px;
}
.mini-num {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.mini-label {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.3rem;
}

/* WORK */
.work {
  background: linear-gradient(175deg, var(--light) 0%, #f0ebe0 100%);
}
.work-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 4rem;
  max-width: 1200px;
}
.work-header h2 { margin-bottom: 0; }
.work-header-right {
  font-size: 0.85rem;
  color: var(--warm-gray);
  max-width: 280px;
  text-align: right;
  line-height: 1.6;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 1200px;
}
.work-card {
  background: var(--sand);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(15,15,13,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
  text-decoration: none;
  display: block;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15,15,13,0.1);
}
.work-card-preview {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.work-card-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.work-card:hover .work-card-preview img {
  transform: scale(1.03);
}
.work-card-preview.green {
  background: linear-gradient(135deg, #1a2e1a 0%, #2d5016 60%, #5c8a2e 100%);
}
.work-card-preview.dark {
  background: linear-gradient(135deg, #0d0d0b 0%, #222220 60%, #3a3a36 100%);
}
.preview-label {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  opacity: 0.2;
  color: white;
  text-align: center;
  padding: 1rem;
}
.work-card-hover {
  position: absolute; inset: 0;
  background: rgba(201,79,44,0.85);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.work-card:hover .work-card-hover { opacity: 1; }
.work-card-hover span {
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.work-card-info { padding: 1.75rem 2rem; }
.work-card-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.5rem;
}
.work-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.work-card-desc {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.work-card-meta {
  display: flex; gap: 1rem; margin-top: 1.25rem;
}
.work-tag {
  font-size: 0.72rem;
  font-weight: 500;
  background: rgba(201,79,44,0.1);
  color: var(--rust);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
}

/* PROCESS */
.process {
  background-color: var(--ink);
  background-image: radial-gradient(rgba(245,240,230,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.process .label { color: rgba(245,240,230,0.4); }
.process .label::before { background: rgba(245,240,230,0.2); }
.process h2 { color: var(--sand); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(245,240,230,0.06);
  margin-top: 4rem;
  max-width: 1200px;
}
.process-step {
  background: var(--ink-2);
  padding: 2.5rem;
  position: relative;
  transition: background 0.3s;
}
.process-step:hover { background: var(--ink-3); }
.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(245,240,230,0.06);
  line-height: 1;
  margin-bottom: 2rem;
}
.process-step h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--sand);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245,240,230,0.6);
  font-weight: 400;
}
.step-timeline {
  margin-top: 1.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rust);
}

/* PRICING */
.pricing {
  background:
    radial-gradient(ellipse 60% 70% at 5% 50%, rgba(192,32,42,0.05) 0%, transparent 50%),
    linear-gradient(160deg, var(--sand) 0%, var(--sand-2) 100%);
}
.pricing-intro {
  max-width: 600px;
  margin-bottom: 4rem;
}
.pricing-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--warm-gray);
  font-weight: 400;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
}
.pricing-card {
  background: var(--light);
  border: 1px solid rgba(15,15,13,0.08);
  padding: 2.5rem;
  border-radius: 6px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(15,15,13,0.08);
}
.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}
.featured-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--rust);
  color: white;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 1rem;
}
.pricing-card.featured .pricing-tier { color: rgba(245,240,230,0.5); }
.pricing-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pricing-card.featured .pricing-price { color: var(--sand); }
.pricing-price sub {
  font-size: 1rem;
  font-weight: 400;
  font-family: 'Epilogue', sans-serif;
  letter-spacing: 0;
  color: var(--warm-gray);
}
.pricing-card.featured .pricing-price sub { color: rgba(245,240,230,0.4); }
.pricing-note {
  font-size: 0.8rem;
  color: var(--warm-gray);
  margin-bottom: 2rem;
}
.pricing-card.featured .pricing-note { color: rgba(245,240,230,0.4); }
.pricing-divider {
  height: 1px;
  background: rgba(15,15,13,0.08);
  margin-bottom: 1.5rem;
}
.pricing-card.featured .pricing-divider { background: rgba(245,240,230,0.08); }
.pricing-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 0.75rem;
  margin-bottom: 2rem;
}
.pricing-features li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--ink);
  line-height: 1.5;
}
.pricing-card.featured .pricing-features li { color: rgba(245,240,230,0.75); }
.pricing-features li::before {
  content: '✓';
  color: var(--rust);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.btn-dark {
  display: block;
  background: var(--ink);
  color: var(--sand);
  padding: 0.85rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-dark:hover { background: var(--rust); }
.btn-rust {
  display: block;
  background: var(--rust);
  color: white;
  padding: 0.85rem;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn-rust:hover { background: var(--rust-light); }

/* TESTIMONIALS */
.testimonials {
  background:
    radial-gradient(ellipse 60% 80% at 10% 90%, rgba(192,32,42,0.04) 0%, transparent 50%),
    linear-gradient(160deg, var(--light) 0%, var(--sand) 100%);
}
.testimonials-scroll {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin-top: 3rem;
}
.t-card {
  background: var(--sand);
  padding: 2.5rem;
  border-radius: 6px;
  border: 1px solid rgba(15,15,13,0.06);
  position: relative;
  transition: transform 0.3s;
}
.t-card:hover { transform: translateY(-3px); }
.t-quote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-3);
  margin-bottom: 2rem;
  position: relative;
}
.t-quote::before {
  content: '"';
  font-size: 5rem;
  color: rgba(201,79,44,0.1);
  position: absolute;
  top: -1.5rem; left: -0.5rem;
  font-style: normal;
  line-height: 1;
  font-family: 'Instrument Serif', serif;
}
.t-author {
  display: flex; align-items: center; gap: 1rem;
  border-top: 1px solid rgba(15,15,13,0.08);
  padding-top: 1.5rem;
}
.t-avatar {
  width: 40px; height: 40px;
  background: var(--rust-dim);
  border: 1px solid rgba(201,79,44,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rust);
  flex-shrink: 0;
}
.t-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}
.t-biz {
  font-size: 0.78rem;
  color: var(--warm-gray);
  margin-top: 0.15rem;
}

/* CONTACT */
.contact { background: var(--ink); }
.contact .label { color: rgba(245,240,230,0.35); }
.contact .label::before { background: rgba(245,240,230,0.15); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  max-width: 1100px;
  align-items: start;
}
.contact h2 { color: var(--sand); }
.contact-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(245,240,230,0.45);
  font-weight: 300;
  margin-bottom: 3rem;
}
.c-info {
  display: flex; flex-direction: column; gap: 1.5rem;
  margin-bottom: 3rem;
}
.c-row {
  display: flex; align-items: center; gap: 1.2rem;
}
.c-icon {
  width: 42px; height: 42px;
  background: rgba(245,240,230,0.05);
  border: 1px solid rgba(245,240,230,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.c-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 0.2rem;
}
.c-val {
  font-size: 0.95rem;
  color: rgba(245,240,230,0.65);
}
.c-val a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.c-val a:hover { color: var(--sand); }

.contact-form {
  background: var(--ink-2);
  border: 1px solid rgba(245,240,230,0.06);
  padding: 2.5rem;
  border-radius: 6px;
}
.form-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.4);
  margin-bottom: 0.5rem;
  display: block;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(245,240,230,0.04);
  border: 1px solid rgba(245,240,230,0.08);
  color: var(--sand);
  font-family: 'Epilogue', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 4px;
  margin-bottom: 1.25rem;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(201,79,44,0.5);
}
.form-input::placeholder { color: rgba(245,240,230,0.2); }
.form-textarea::placeholder { color: rgba(245,240,230,0.2); }
.form-select option { background: var(--ink-2); }
.form-textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  background: var(--rust);
  color: white;
  border: none;
  padding: 1rem;
  font-family: 'Epilogue', sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--rust-light); }

/* FOOTER */
footer {
  background: var(--ink-2);
  border-top: 1px solid rgba(245,240,230,0.06);
  padding: 2.5rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: rgba(245,240,230,0.5);
  letter-spacing: -0.02em;
}
.footer-logo .dot { color: var(--rust); }
footer p { font-size: 0.78rem; color: rgba(245,240,230,0.25); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a {
  font-size: 0.78rem;
  color: rgba(245,240,230,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rust); }

/* FAQ */
.faq {
  background:
    radial-gradient(ellipse 80% 60% at 85% 100%, rgba(192,32,42,0.05) 0%, transparent 50%),
    linear-gradient(160deg, var(--sand) 0%, var(--sand-2) 100%);
}
.faq-list {
  max-width: 740px;
  margin-top: 3rem;
  border-top: 1px solid rgba(15,15,13,0.1);
}
.faq-item {
  border-bottom: 1px solid rgba(15,15,13,0.08);
  overflow: hidden;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  cursor: pointer;
  gap: 1rem;
}
.faq-q:hover { color: var(--rust); }
.faq-icon {
  font-size: 1.3rem;
  color: var(--rust);
  flex-shrink: 0;
  transition: transform 0.3s;
  font-family: monospace;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-a p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--warm-gray);
  padding-bottom: 1.5rem;
  font-weight: 400;
}
.faq-item.open .faq-a { max-height: 300px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* PAGE HERO */
.page-hero {
  background: var(--ink);
  padding: 10rem 4rem 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 85% 25%, rgba(192,32,42,0.16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 85%, rgba(192,32,42,0.07) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.page-hero-content { position: relative; z-index: 2; max-width: 700px; }
.page-hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--sand);
  margin-bottom: 1.5rem;
}
.page-hero h1 .italic {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--rust-light);
}
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245,240,230,0.5);
  font-weight: 300;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 61px;
    left: 0; right: 0;
    background: var(--ink-2);
    border-bottom: 1px solid rgba(245,240,230,0.08);
    padding: 0.5rem 1.5rem 1.5rem;
    gap: 0;
    z-index: 99;
    animation: slideDown 0.2s ease;
  }
  .nav-links.open li { border-bottom: 1px solid rgba(245,240,230,0.06); }
  .nav-links.open li:last-child { border-bottom: none; }
  .nav-links.open a {
    color: rgba(245,240,230,0.65) !important;
    padding: 1rem 0 !important;
    font-size: 0.95rem;
    display: block;
    background: none !important;
    border-radius: 0 !important;
  }
  .nav-links.open a:hover { color: var(--sand) !important; }
  .nav-links.open .nav-cta {
    background: var(--rust) !important;
    color: white !important;
    margin-top: 0.5rem;
    padding: 0.85rem 1rem !important;
    border-radius: 4px !important;
    text-align: center;
  }
  section { padding: 4rem 1.5rem; }
  .hero { padding: 0 1.5rem 4rem; }
  .hero-top { left: 1.5rem; right: 1.5rem; }
  .hero h1 { font-size: clamp(3rem, 12vw, 5rem); }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-actions { align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .why-right { position: static; }
  .work-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .testimonials-scroll { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  footer { flex-direction: column; gap: 1.5rem; text-align: center; }
  .page-hero { padding: 8rem 1.5rem 3rem; }
}
