:root {
  --slate: #52636c;
  --slate-deep: #384a54;
  --slate-soft: #6c7a80;
  --ivory: #f6efe1;
  --cream: #fbf8f2;
  --paper: #fffdf9;
  --accent: #73461c;
  --accent-soft: #b58a60;
  --ink: #26343c;
  --muted: #6e6b65;
  --line: #d9d0c3;
  --shadow: 0 15px 40px rgba(38,52,60,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-header { background: var(--slate); }
.brand-wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 14px 24px 12px;
}
.brand-wrap img { width: 100%; height: auto; }

.site-nav {
  background: rgba(255,253,249,.98);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
}
.nav-links { display: flex; gap: 44px; align-items: center; }
.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: .86rem;
  letter-spacing: .09em;
  padding: 20px 2px 16px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--accent); border-color: var(--accent); }
.nav-toggle { display:none; }

.hero {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(0, 1.07fr);
  min-height: 500px;
}
.hero-copy {
  padding: 70px 58px 64px max(42px, calc((100vw - 1180px)/2));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1, .section-title, .page-title, .service-title, .book-title, .about-title {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--slate-deep);
}
.hero h1 {
  font-size: clamp(2.35rem, 4.1vw, 4.15rem);
  line-height: 1.07;
  margin: 0 0 22px;
}
.hero p { max-width: 570px; font-size: 1.06rem; margin: 0 0 28px; }
.hero-art {
  min-height: 500px;
  background: linear-gradient(90deg, rgba(255,253,249,.08), rgba(255,253,249,0)), url('assets/images/hero-books-vase.jpg') center/cover no-repeat;
}

.ornament {
  width: 115px;
  height: 1px;
  background: var(--accent-soft);
  margin: 22px 0 28px;
  position: relative;
}
.ornament::after { content: "✦"; position:absolute; left:50%; top:50%; transform:translate(-50%,-52%); color:var(--accent-soft); background:var(--paper); padding:0 10px; font-size:.8rem; }

.button, .button-outline {
  display: inline-block;
  width: fit-content;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .07em;
  font-size: .78rem;
  border-radius: 2px;
  padding: 12px 21px;
  transition: transform .15s ease, background .15s ease, color .15s ease;
}
.button { background: var(--accent); color: #fff; border: 1px solid var(--accent); }
.button:hover, .button-outline:hover { transform: translateY(-1px); }
.button-outline { border: 1px solid var(--accent); color: var(--accent); background: transparent; }
.button-outline:hover { background: var(--accent); color: white; }
.button-dark { background: var(--slate-deep); border-color: var(--slate-deep); }

.section { padding: 64px 22px; }
.section.paper { background: var(--paper); }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-heading { text-align:center; max-width: 760px; margin: 0 auto 38px; }
.section-title { font-size: clamp(2rem, 3vw, 3rem); margin: 0; }
.section-kicker { color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; margin-bottom: 8px; }
.section-heading p { color: var(--muted); }

.books-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.book-card {
  display:grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  gap: 22px;
  align-items: start;
}
.book-cover {
  box-shadow: 0 10px 24px rgba(38,52,60,.20);
  border-radius: 2px;
}
.book-meta { padding-top: 8px; }
.book-title { font-size: 1.55rem; line-height: 1.05; margin: 0 0 8px; }
.book-series { font-size:.82rem; color:var(--muted); margin-bottom:14px; }
.book-copy { font-size:.92rem; line-height:1.55; margin: 0 0 16px; }
.coming { color:var(--accent); text-transform:uppercase; letter-spacing:.09em; font-size:.74rem; font-weight:700; }
.center-action { text-align:center; margin-top: 38px; }

.services-strip { background: #f7f1e8; border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.services-grid { display:grid; grid-template-columns: repeat(5, 1fr); gap:0; }
.service-mini { padding: 16px 18px; text-align:center; border-right:1px solid var(--line); }
.service-mini:last-child { border-right:0; }
.service-icon { width:48px; height:48px; margin:0 auto 10px; color:var(--slate-deep); }
.service-mini h3 { font-family: Georgia, "Times New Roman", serif; font-weight:400; font-size:1.02rem; line-height:1.25; margin:0 0 8px; }
.service-mini .coming { font-size:.68rem; }

.about-split { display:grid; grid-template-columns: .9fr 1.1fr; min-height: 350px; background:var(--paper); }
.about-image { background:url('assets/images/stone-sky-mountains.jpg') center/cover no-repeat; min-height:350px; }
.about-copy { padding: 58px 64px; display:flex; flex-direction:column; justify-content:center; }
.about-title { font-size:2.2rem; margin:0 0 18px; }
.about-copy p { margin:0 0 22px; max-width:600px; }

.page-hero { background:var(--paper); border-bottom:1px solid var(--line); padding:62px 22px 54px; text-align:center; }
.page-hero-inner { max-width: 850px; margin:0 auto; }
.page-title { font-size:clamp(2.5rem, 5vw, 4.25rem); line-height:1; margin:0 0 18px; }
.page-hero p { color:var(--muted); font-size:1.08rem; }

.book-detail { display:grid; grid-template-columns: 280px 1fr; gap:48px; padding:52px 0; border-bottom:1px solid var(--line); }
.book-detail:last-child { border-bottom:0; }
.book-detail .book-cover { width:280px; }
.book-detail h2 { font-family:Georgia,"Times New Roman",serif; font-size:2.25rem; line-height:1.1; font-weight:400; margin:0 0 8px; color:var(--slate-deep); }
.book-detail .subtitle { color:var(--accent); text-transform:uppercase; letter-spacing:.1em; font-size:.76rem; margin-bottom:20px; }
.book-detail p { max-width:760px; }

.service-list { display:grid; grid-template-columns: repeat(2, 1fr); gap:24px; }
.service-card { background:var(--paper); border:1px solid var(--line); padding:30px; box-shadow:0 8px 22px rgba(38,52,60,.06); }
.service-title { font-size:1.65rem; margin:0 0 8px; }
.service-card p { margin:0 0 14px; }
.status-pill { display:inline-block; color:var(--accent); background:#f3e7da; border-radius:999px; padding:5px 10px; text-transform:uppercase; letter-spacing:.08em; font-size:.66rem; font-weight:700; }
.pricing-box { border-left:4px solid var(--accent); background:var(--paper); padding:24px 28px; margin-top:42px; }

.content-narrow { max-width:820px; margin:0 auto; }
.content-narrow h2 { font-family:Georgia,"Times New Roman",serif; font-size:1.9rem; color:var(--slate-deep); font-weight:400; margin-top:38px; }
.note { background:#f5eee5; border:1px solid #dfcfbf; padding:18px 20px; }

.contact-card { background:var(--paper); border:1px solid var(--line); max-width:760px; margin:0 auto; padding:38px; text-align:center; box-shadow:var(--shadow); }
.contact-email { font-family:Georgia,"Times New Roman",serif; font-size:clamp(1.35rem,3vw,2rem); color:var(--slate-deep); word-break:break-word; }

.site-footer { background:var(--slate-deep); color:#f7f1e8; padding:34px 22px 18px; }
.footer-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns: 1.4fr .7fr 1fr; gap:42px; align-items:start; }
.footer-brand img { width:min(330px,100%); margin-bottom:12px; }
.footer-brand p { max-width:330px; color:#e8e2d8; font-size:.9rem; }
.footer-heading { text-transform:uppercase; letter-spacing:.1em; font-size:.72rem; margin:4px 0 12px; color:var(--ivory); }
.footer-links { display:grid; gap:5px; }
.footer-links a, .footer-contact a { color:#f7f1e8; text-decoration:none; font-size:.9rem; }
.footer-links a:hover, .footer-contact a:hover { text-decoration:underline; }
.copyright { max-width:var(--max); margin:25px auto 0; padding-top:14px; border-top:1px solid rgba(255,255,255,.18); display:flex; justify-content:space-between; gap:20px; color:#ddd5c9; font-size:.76rem; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 56px 34px; }
  .hero-art { min-height: 360px; }
  .books-grid { grid-template-columns:1fr; gap:44px; }
  .book-card { grid-template-columns: 190px 1fr; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .service-mini { border-bottom:1px solid var(--line); }
  .about-split { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:1 / -1; }
}

@media (max-width: 700px) {
  .brand-wrap { padding:8px; }
  .nav-inner { min-height:54px; justify-content:flex-end; position:relative; }
  .nav-toggle { display:block; border:0; background:transparent; color:var(--slate-deep); font-size:1.6rem; cursor:pointer; padding:8px 4px; }
  .nav-links { display:none; position:absolute; top:54px; left:0; right:0; background:var(--paper); border-bottom:1px solid var(--line); flex-direction:column; gap:0; align-items:stretch; padding:6px 22px 16px; }
  .nav-links.open { display:flex; }
  .nav-links a { padding:12px 2px; }
  .hero h1 { font-size:2.55rem; }
  .hero-copy { padding:46px 24px; }
  .hero-art { min-height:280px; }
  .section { padding:50px 18px; }
  .book-card { grid-template-columns: 135px 1fr; gap:16px; }
  .book-title { font-size:1.3rem; }
  .services-grid { grid-template-columns:1fr; }
  .service-mini { border-right:0; }
  .about-copy { padding:42px 24px; }
  .book-detail { grid-template-columns:1fr; gap:28px; }
  .book-detail .book-cover { width:min(280px,80vw); margin:0 auto; }
  .service-list { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand { grid-column:auto; }
  .copyright { flex-direction:column; }
}
