Publishing Services
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Publishing Services — Anclote Press</title>
<link href="https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap" rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--black: #0f0f0f;
--white: #fafaf7;
--accent: #b5651d;
--gray-light: #e8e8e4;
--gray-mid: #9a9a94;
--gray-dark: #3a3a36;
--serif: 'Cormorant Garamond', Georgia, serif;
--sans: 'Jost', sans-serif;
}
html { scroll-behavior: smooth; }
body {
background: var(--white);
color: var(--black);
font-family: var(--sans);
font-weight: 300;
line-height: 1.7;
font-size: 16px;
-webkit-font-smoothing: antialiased;
}
/* NAV */
nav {
position: fixed;
top: 0; left: 0; right: 0;
z-index: 100;
display: flex;
justify-content: space-between;
align-items: center;
padding: 1.5rem 4rem;
background: var(--white);
border-bottom: 1px solid var(--gray-light);
}
.nav-logo {
font-family: var(--serif);
font-size: 1.4rem;
font-weight: 300;
letter-spacing: 0.08em;
text-decoration: none;
color: var(--black);
}
.nav-links {
display: flex;
gap: 2.5rem;
list-style: none;
}
.nav-links a {
font-family: var(--sans);
font-size: 0.75rem;
font-weight: 400;
letter-spacing: 0.15em;
text-transform: uppercase;
text-decoration: none;
color: var(--gray-dark);
transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
/* HERO */
.hero {
padding: 14rem 4rem 6rem;
max-width: 900px;
opacity: 0;
animation: fadeUp 0.9s ease forwards 0.2s;
}
.hero-eyebrow {
font-family: var(--sans);
font-size: 0.7rem;
font-weight: 500;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1.5rem;
}
.hero h1 {
font-family: var(--serif);
font-size: clamp(2.8rem, 6vw, 5rem);
font-weight: 300;
line-height: 1.1;
letter-spacing: -0.01em;
margin-bottom: 2rem;
}
.hero h1 em {
font-style: italic;
color: var(--accent);
}
.hero-lead {
font-size: 1.05rem;
color: var(--gray-dark);
max-width: 560px;
line-height: 1.8;
}
/* DIVIDER */
.divider {
width: 100%;
height: 1px;
background: var(--gray-light);
margin: 0 4rem;
width: calc(100% - 8rem);
}
/* SECTION */
section {
padding: 6rem 4rem;
opacity: 0;
animation: fadeUp 0.8s ease forwards;
}
section:nth-child(2) { animation-delay: 0.3s; }
section:nth-child(3) { animation-delay: 0.4s; }
section:nth-child(4) { animation-delay: 0.5s; }
section:nth-child(5) { animation-delay: 0.6s; }
section:nth-child(6) { animation-delay: 0.7s; }
.section-label {
font-size: 0.68rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 3rem;
display: flex;
align-items: center;
gap: 1rem;
}
.section-label::after {
content: '';
display: block;
width: 40px;
height: 1px;
background: var(--accent);
}
.section-title {
font-family: var(--serif);
font-size: clamp(1.8rem, 3.5vw, 2.8rem);
font-weight: 300;
line-height: 1.2;
margin-bottom: 1.5rem;
}
.section-intro {
color: var(--gray-dark);
max-width: 620px;
margin-bottom: 4rem;
font-size: 1rem;
}
/* REVIEW CALLOUT */
.callout {
background: var(--black);
color: var(--white);
padding: 3rem 3.5rem;
max-width: 700px;
margin-bottom: 5rem;
}
.callout p {
font-family: var(--serif);
font-size: 1.25rem;
font-weight: 300;
line-height: 1.6;
font-style: italic;
}
.callout .callout-detail {
font-family: var(--sans);
font-size: 0.8rem;
letter-spacing: 0.1em;
color: var(--accent);
margin-top: 1.5rem;
font-style: normal;
}
/* SERVICE ITEMS */
.service-group {
margin-bottom: 4rem;
}
.service-group-title {
font-family: var(--serif);
font-size: 1.5rem;
font-weight: 400;
margin-bottom: 0.5rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--gray-light);
}
.service-item {
display: grid;
grid-template-columns: 1fr auto;
gap: 2rem;
align-items: start;
padding: 1.5rem 0;
border-bottom: 1px solid var(--gray-light);
transition: background 0.2s;
}
.service-item:hover {
padding-left: 0.75rem;
transition: padding 0.2s ease;
}
.service-name {
font-family: var(--serif);
font-size: 1.15rem;
font-weight: 400;
margin-bottom: 0.3rem;
}
.service-desc {
font-size: 0.88rem;
color: var(--gray-mid);
line-height: 1.6;
max-width: 500px;
}
.service-price {
font-family: var(--sans);
font-size: 0.85rem;
font-weight: 500;
color: var(--accent);
white-space: nowrap;
text-align: right;
padding-top: 0.2rem;
}
/* PACKAGES */
.packages-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2px;
background: var(--gray-light);
margin-top: 1rem;
}
.package-card {
background: var(--white);
padding: 2.5rem;
transition: background 0.25s;
}
.package-card:hover {
background: #f5f4f0;
}
.package-card.featured {
background: var(--black);
color: var(--white);
}
.package-card.featured:hover {
background: var(--gray-dark);
}
.package-label {
font-size: 0.65rem;
font-weight: 500;
letter-spacing: 0.2em;
text-transform: uppercase;
color: var(--accent);
margin-bottom: 1rem;
}
.package-name {
font-family: var(--serif);
font-size: 1.6rem;
font-weight: 300;
margin-bottom: 0.5rem;
}
.package-price {
font-size: 0.9rem;
font-weight: 500;
color: var(--accent);
margin-bottom: 1.5rem;
}
.package-includes {
font-size: 0.85rem;
color: var(--gray-mid);
line-height: 1.9;
}
.package-card.featured .package-includes {
color: #aaa;
}
.package-includes li {
list-style: none;
padding-left: 1rem;
position: relative;
}
.package-includes li::before {
content: '—';
position: absolute;
left: 0;
color: var(--accent);
}
/* ROYALTY */
.royalty-block {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 2px;
background: var(--gray-light);
margin-top: 2rem;
}
.royalty-item {
background: var(--white);
padding: 2rem 2.5rem;
}
.royalty-format {
font-size: 0.7rem;
letter-spacing: 0.15em;
text-transform: uppercase;
color: var(--gray-mid);
margin-bottom: 0.75rem;
}
.royalty-numbers {
display: flex;
gap: 2rem;
align-items: baseline;
}
.royalty-pct {
font-family: var(--serif);
font-size: 2.8rem;
font-weight: 300;
line-height: 1;
}
.royalty-pct span {
font-size: 1rem;
}
.royalty-who {
font-size: 0.75rem;
color: var(--gray-mid);
line-height: 1.5;
}
.royalty-who strong {
display: block;
color: var(--black);
font-weight: 400;
}
/* CTA */
.cta-section {
background: var(--black);
color: var(--white);
padding: 6rem 4rem;
display: flex;
justify-content: space-between;
align-items: center;
gap: 3rem;
flex-wrap: wrap;
}
.cta-text h2 {
font-family: var(--serif);
font-size: clamp(1.8rem, 4vw, 3rem);
font-weight: 300;
line-height: 1.2;
margin-bottom: 1rem;
}
.cta-text p {
color: #aaa;
font-size: 0.9rem;
max-width: 420px;
}
.btn {
display: inline-block;
font-family: var(--sans);
font-size: 0.72rem;
font-weight: 500;
letter-spacing: 0.18em;
text-transform: uppercase;
text-decoration: none;
padding: 1rem 2.5rem;
border: 1px solid var(--accent);
color: var(--accent);
transition: background 0.2s, color 0.2s;
white-space: nowrap;
}
.btn:hover {
background: var(--accent);
color: var(--white);
}
/* FOOTER */
footer {
padding: 3rem 4rem;
border-top: 1px solid var(--gray-light);
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 1rem;
}
.footer-logo {
font-family: var(--serif);
font-size: 1.1rem;
font-weight: 300;
letter-spacing: 0.08em;
color: var(--black);
}
.footer-copy {
font-size: 0.75rem;
color: var(--gray-mid);
letter-spacing: 0.05em;
}
/* ANIMATION */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
/* RESPONSIVE */
@media (max-width: 768px) {
nav { padding: 1.25rem 1.5rem; }
.nav-links { gap: 1.25rem; }
.hero, section { padding-left: 1.5rem; padding-right: 1.5rem; }
.hero { padding-top: 10rem; }
.divider { margin: 0 1.5rem; width: calc(100% - 3rem); }
.cta-section { padding: 4rem 1.5rem; }
footer { padding: 2rem 1.5rem; }
.service-item { grid-template-columns: 1fr; gap: 0.5rem; }
.service-price { text-align: left; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<a class="nav-logo" href="#">Anclote Press</a>
<ul class="nav-links">
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Submissions</a></li>
<li><a href="#" class="active">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<!-- HERO -->
<div class="hero">
<p class="hero-eyebrow">Publishing Services</p>
<h1>Your book, <em>professionally</em> published.</h1>
<p class="hero-lead">
Anclote Press offers full-service publishing to a select number of authors each year. Every project published under our imprint meets the same standard — regardless of how it arrives at our door.
</p>
</div>
<div class="divider"></div>
<!-- MANUSCRIPT REVIEW -->
<section>
<p class="section-label">First Step</p>
<h2 class="section-title">Manuscript Review</h2>
<p class="section-intro">
Because every services client publishes under the Anclote Press imprint, we begin with a manuscript review before any project moves forward. This is not a formality — it is how we maintain the integrity of everything we put our name on.
</p>
<div class="callout">
<p>We reserve the right to decline projects that do not meet our editorial standard. We are not a vanity press. We are a small press that happens to offer services.</p>
<p class="callout-detail">Manuscript Review Fee: $100–$150 · Credited toward your package if accepted</p>
</div>
</section>
<div class="divider"></div>
<!-- À LA CARTE -->
<section>
<p class="section-label">À La Carte</p>
<h2 class="section-title">Individual Services</h2>
<p class="section-intro">
For authors who need specific help rather than end-to-end production. All services are available individually and can be combined as needed.
</p>
<div class="service-group">
<h3 class="service-group-title">Editorial</h3>
<div class="service-item">
<div>
<p class="service-name">Developmental Editing</p>
<p class="service-desc">Big-picture feedback on structure, pacing, voice, and narrative arc. A 70,000-word manuscript runs approximately $1,400–$3,500.</p>
</div>
<p class="service-price">$0.02–$0.05 / word</p>
</div>
<div class="service-item">
<div>
<p class="service-name">Copy Editing</p>
<p class="service-desc">Grammar, syntax, consistency, and clarity. A 70,000-word manuscript runs approximately $1,050–$2,100.</p>
</div>
<p class="service-price">$0.015–$0.03 / word</p>
</div>
<div class="service-item">
<div>
<p class="service-name">Proofreading</p>
<p class="service-desc">Final error check before print. A 70,000-word manuscript runs approximately $700–$1,400.</p>
</div>
<p class="service-price">$0.01–$0.02 / word</p>
</div>
</div>
<div class="service-group">
<h3 class="service-group-title">Design & Formatting</h3>
<div class="service-item">
<div>
<p class="service-name">Cover Design — Print & eBook</p>
<p class="service-desc">Front cover, spine, back cover, and digital-ready files. Print-ready and eBook formats both included.</p>
</div>
<p class="service-price">$450–$750</p>
</div>
<div class="service-item">
<div>
<p class="service-name">Interior Formatting — Print</p>
<p class="service-desc">Typeset interior with chapter headers, drop caps, and print-ready PDF.</p>
</div>
<p class="service-price">$200–$400</p>
</div>
<div class="service-item">
<div>
<p class="service-name">Interior Formatting — eBook</p>
<p class="service-desc">Clean .epub and .mobi files optimized for all major platforms.</p>
</div>
<p class="service-price">$100–$200</p>
</div>
<div class="service-item">
<div>
<p class="service-name">Children's Book Layout</p>
<p class="service-desc">Illustration placement, full spread design, and print-ready files. Pricing varies by page count.</p>
</div>
<p class="service-price">$400–$800</p>
</div>
</div>
<div class="service-group">
<h3 class="service-group-title">Production & Distribution</h3>
<div class="service-item">
<div>
<p class="service-name">ISBN Assignment</p>
<p class="service-desc">One ISBN registered under the Anclote Press imprint.</p>
</div>
<p class="service-price">$25–$50</p>
</div>
<div class="service-item">
<div>
<p class="service-name">Print Distribution Setup</p>
<p class="service-desc">File upload, metadata, and activation via IngramSpark for wide bookstore distribution.</p>
</div>
<p class="service-price">$100–$150</p>
</div>
<div class="service-item">
<div>
<p class="service-name">eBook Distribution Setup</p>
<p class="service-desc">Upload and activation across 10+ platforms via Draft2Digital.</p>
</div>
<p class="service-price">$75–$125</p>
</div>
<div class="service-item">
<div>
<p class="service-name">Copyright Registration Assistance</p>
<p class="service-desc">Form preparation and filing guidance with the U.S. Copyright Office.</p>
</div>
<p class="service-price">$50–$75</p>
</div>
</div>
</section>
<div class="divider"></div>
<!-- PACKAGES -->
<section>
<p class="section-label">Full Service</p>
<h2 class="section-title">Publishing Packages</h2>
<p class="section-intro">
End-to-end production for authors who want a single, managed process from edited manuscript to published book.
</p>
<div class="packages-grid">
<div class="package-card">
<p class="package-label">Poetry & Short Collections</p>
<h3 class="package-name">Essential</h3>
<p class="package-price">$800–$1,200</p>
<ul class="package-includes">
<li>Proofreading</li>
<li>Interior formatting</li>
<li>Cover design</li>
<li>eBook distribution</li>
</ul>
</div>
<div class="package-card">
<p class="package-label">Novels, Memoir, Self-Help</p>
<h3 class="package-name">Standard</h3>
<p class="package-price">$2,500–$3,500</p>
<ul class="package-includes">
<li>Copy editing</li>
<li>Proofreading</li>
<li>Cover design (print + eBook)</li>
<li>Interior formatting (both formats)</li>
<li>Full distribution setup</li>
</ul>
</div>
<div class="package-card featured">
<p class="package-label">Full Service — Most Popular</p>
<h3 class="package-name">Premium</h3>
<p class="package-price">$5,000–$7,000</p>
<ul class="package-includes">
<li>Developmental editing</li>
<li>Copy editing</li>
<li>Proofreading</li>
<li>Cover design (print + eBook)</li>
<li>Interior formatting (both formats)</li>
<li>Full distribution setup</li>
<li>Marketing kit</li>
</ul>
</div>
<div class="package-card">
<p class="package-label">Picture Books</p>
<h3 class="package-name">Children's</h3>
<p class="package-price">$2,000–$4,000</p>
<ul class="package-includes">
<li>Editing</li>
<li>Illustration coordination</li>
<li>Full layout design</li>
<li>Print + eBook distribution</li>
</ul>
</div>
</div>
</section>
<div class="divider"></div>
<!-- ROYALTIES -->
<section>
<p class="section-label">Ongoing Partnership</p>
<h2 class="section-title">Royalty Structure</h2>
<p class="section-intro">
Because services clients fund their own production, they keep the larger share of sales. Anclote Press retains a royalty in exchange for the use of our imprint, our distribution relationships, and continued administrative support.
</p>
<div class="royalty-block">
<div class="royalty-item">
<p class="royalty-format">Print — Net Sales</p>
<div class="royalty-numbers">
<div>
<p class="royalty-pct">80<span>%</span></p>
<p class="royalty-who"><strong>Author</strong>keeps</p>
</div>
<div>
<p class="royalty-pct" style="color: var(--gray-mid); font-size: 1.8rem;">20<span style="font-size: 0.85rem;">%</span></p>
<p class="royalty-who"><strong>Anclote Press</strong>retains</p>
</div>
</div>
</div>
<div class="royalty-item">
<p class="royalty-format">eBook — Net Sales</p>
<div class="royalty-numbers">
<div>
<p class="royalty-pct">80<span>%</span></p>
<p class="royalty-who"><strong>Author</strong>keeps</p>
</div>
<div>
<p class="royalty-pct" style="color: var(--gray-mid); font-size: 1.8rem;">20<span style="font-size: 0.85rem;">%</span></p>
<p class="royalty-who"><strong>Anclote Press</strong>retains</p>
</div>
</div>
</div>
</div>
</section>
<!-- CTA -->
<div class="cta-section">
<div class="cta-text">
<h2>Ready to begin?</h2>
<p>Start with a manuscript review. We'll read your work, give you an honest assessment, and recommend the right path forward — with no obligation to proceed.</p>
</div>
<a class="btn" href="mailto:services@anclotepress.com">Submit for Review</a>
</div>
<!-- FOOTER -->
<footer>
<p class="footer-logo">Anclote Press</p>
<p class="footer-copy">© 2025 Anclote Press · services@anclotepress.com</p>
</footer>
</body>
</html>
