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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -1px; }
h1 { font-size: clamp(2.7rem, 6vw, 4.3rem); letter-spacing: -1.8px; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.3px; }

a { color: var(--accent-dark); }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 12px;
}

/* Handwritten notes: the site's recurring flair */
.note { font-family: var(--font-hand); font-size: 21px; color: var(--accent-dark); }

.scribble-wrap { position: relative; display: inline-block; }

.scribble { position: absolute; left: 0; right: 0; bottom: -4px; width: 100%; height: 12px; color: var(--accent); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 241, 0.92);
  backdrop-filter: blur(8px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 18px;
  padding-bottom: 0;
  position: relative;
}

.wordmark { display: contents; }

.wordmark span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.6px;
  line-height: 1.1;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

/* Ruler line: mark (left), name (center), button (right) share one vertical center */
.wm-mark { width: 58px; height: 22px; color: var(--accent-dark); position: absolute; left: 24px; top: 20px; }

.site-header .header-cta {
  position: absolute;
  right: 24px;
  top: 16px;
  padding: 5px 15px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .wm-mark { display: none; }
  .site-header .header-cta { position: static; }
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
  width: 100%;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--hairline);
  padding: 13px 0;
}

.site-nav a {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 11.5px; letter-spacing: 1.3px; }
}

@media (max-width: 860px) {
  .site-nav { gap: 13px; }
  .site-nav a { font-size: 10.5px; letter-spacing: 1px; }
}

.drop-menu a {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}

.site-nav > a:not(.btn), .nav-drop > a {
  position: relative;
  padding: 4px 0;
  display: inline-block;
  line-height: 1.7;
}

.site-nav > a:not(.btn)::after, .nav-drop > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0;
  background: var(--accent-dark);
  transition: width 0.18s ease;
}

.site-nav > a:not(.btn):hover::after, .nav-drop > a:hover::after,
.site-nav > a.active::after, .nav-drop > a.active::after { width: 100%; }

.site-nav a.active { color: var(--accent-dark); }

.site-nav a:hover { color: var(--accent-dark); }

@media (max-width: 700px) {
  .site-nav { flex-wrap: wrap; gap: 12px 18px; }
  .site-nav a { font-size: 11.5px; letter-spacing: 1.4px; }
}

/* Services dropdown */
.nav-drop { position: relative; display: flex; align-items: center; }

.nav-drop > a .caret { font-size: 10px; display: inline-block; line-height: 1; vertical-align: 1px; color: var(--muted); }

.drop-menu {
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 8px 0;
  display: none;
  z-index: 60;
  box-shadow: 0 12px 30px rgba(38, 42, 39, 0.10);
}

.nav-drop:hover .drop-menu, .nav-drop:focus-within .drop-menu { display: block; }

.drop-menu a { display: block; padding: 9px 20px; font-size: 14.5px; }

.drop-menu a:hover { background: var(--bg); }

@media (max-width: 860px) {
  .drop-menu { display: none !important; }
}

.site-nav a.btn { color: #FFFFFF; }

.site-nav a.btn-outline { color: var(--ink); }

.site-nav a.btn-outline:hover { color: var(--bg); }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--accent-dark);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.35;
  padding: 13px 26px;
  border: 1.5px solid var(--accent-dark);
  border-radius: 99px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease;
}

.btn:hover { background: #46523D; border-color: #46523D; }

.btn-outline { background: transparent; color: var(--ink); }

.btn-outline:hover { background: var(--ink); color: var(--bg); }

.btn-small { padding: 9px 20px; font-size: 14px; }

/* Homepage hero */
.hero { padding: 88px 0 52px; text-align: center; }

.hero h1 { max-width: 17ch; margin: 0 auto; }

.hero-sub { margin: 26px auto 0; color: var(--muted); max-width: 50ch; }

.hero-role {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-ctas { margin-top: 34px; display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }

.cta-note { transform: rotate(-3deg); }

/* Guide shelf */
.shelf-section { padding: 60px 0 30px; }

.shelf { display: flex; justify-content: center; align-items: flex-end; }

.book {
  width: 200px;
  aspect-ratio: 3 / 4.1;
  background: var(--ink);
  border-radius: 6px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(38, 42, 39, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.book:nth-child(1) { transform: rotate(-6deg) translateY(7px); z-index: 1; }
.book:nth-child(2) { transform: rotate(-3deg) translateY(-4px); z-index: 2; margin-left: -32px; }
.book:nth-child(3) { transform: rotate(0.5deg) translateY(3px); z-index: 3; margin-left: -32px; }
.book:nth-child(4) { transform: rotate(3.5deg) translateY(-3px); z-index: 4; margin-left: -32px; }
.book:nth-child(5) { transform: rotate(6.5deg) translateY(11px); z-index: 5; margin-left: -32px; }

.book:hover { transform: rotate(0deg) translateY(-16px); z-index: 9; box-shadow: 0 28px 50px rgba(38, 42, 39, 0.32); }

.b-brand { font-size: 9px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase; color: #9BA19C; }

.b-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.22rem;
  line-height: 1.25;
  letter-spacing: -0.3px;
  color: #F5F5F1;
}

.b-title::before { content: ""; display: block; width: 26px; height: 3px; background: var(--accent-light); margin-bottom: 12px; }

.b-title em { font-style: normal; color: var(--accent-light); }

.b-foot { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: #9BA19C; }

.shelf-cap { text-align: center; margin-top: 30px; font-size: 15px; color: var(--muted); }

.shelf-cap .note { font-size: 20px; }

/* Path cards (Buy / Sell / Invest) */
.path-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.path-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 34px 30px 30px;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.path-card:hover { border-color: var(--accent); transform: translateY(-3px); }

/* Services index: even 2x2 */
.path-grid.path-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 620px) {
  .path-grid.path-grid-2 { grid-template-columns: 1fr; }
}

.path-card h3 { font-size: 2.1rem; font-weight: 700; letter-spacing: -1px; }

.path-card p { font-size: 15px; color: var(--muted); flex-grow: 1; }

.path-go { font-size: 14.5px; font-weight: 500; color: var(--accent-dark); }

.path-note { position: absolute; top: -16px; right: 18px; transform: rotate(-3deg); }

/* Mini book inside a form card */
.form-card .book {
  width: 150px;
  aspect-ratio: 3 / 4.1;
  margin: 0 auto 24px;
  transform: rotate(-3deg);
  box-shadow: 0 12px 26px rgba(38, 42, 39, 0.22);
  padding: 16px 14px;
}

.form-card .book:hover { transform: rotate(0deg); }

.form-card .b-title { font-size: 1rem; }

/* Numbered process steps */
.steps { list-style: none; counter-reset: step; display: grid; gap: 22px; margin-top: 30px; max-width: 720px; }

.steps li { counter-increment: step; position: relative; padding-left: 60px; }

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #FFFFFF;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

/* Sage thread connecting the step circles */
.steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: -26px;
  width: 2px;
  background: rgba(110, 127, 99, 0.3);
}

.steps h3 { font-size: 1.05rem; margin-bottom: 4px; }

.steps p { font-size: 15px; color: var(--muted); }

/* FAQ accordions */
.faq { display: grid; gap: 10px; margin: 28px auto 0; max-width: 760px; }

.faq details { background: var(--surface); border: 1px solid var(--hairline); border-radius: 10px; transition: border-color 0.15s ease; }

.faq details[open] { border-color: var(--accent); }

.faq details[open] summary { color: var(--accent-dark); }

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15.5px;
  padding: 16px 20px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after { content: "+"; color: var(--accent-dark); font-size: 20px; font-weight: 500; flex-shrink: 0; }

.faq details[open] summary::after { content: "\2013"; }

.faq details p { padding: 0 20px 16px; color: var(--muted); font-size: 15px; }

/* Chips (audiences, situation quotes) */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }

.chip {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 99px;
  padding: 10px 22px;
  font-size: 15px;
  color: var(--ink);
}

.chip-quote { font-style: italic; color: var(--muted); }

.chip-quote::before { content: "\201C"; color: var(--accent-dark); font-style: normal; }

.chip-quote::after { content: "\201D"; color: var(--accent-dark); font-style: normal; }

/* Callout band */
.callout {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 30px 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.callout h3 { font-size: 1.3rem; }

.callout p { font-size: 15px; color: var(--muted); margin-top: 4px; }

/* Sections */
.section { padding: 76px 0; }

.section-head { text-align: center; max-width: 60ch; margin: 0 auto 44px; }

.section-head p { color: var(--muted); margin-top: 12px; }

/* Icon tiles */
.h-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(110, 127, 99, 0.14);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.help-grid-left { text-align: left; }

.help-grid-left .h-icon { margin-left: 0; }

/* Even two-column card grid (uniform 2x2 on desktop) */
.help-grid.help-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

.help-grid-2 .help-item {
  background: rgba(110, 127, 99, 0.10);
  border-radius: 14px;
  padding: 26px 28px;
  text-align: left;
}

.help-grid-2 .help-item h3 { color: var(--accent-dark); }

/* Even three-column card grid */
.help-grid.help-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.help-grid-3 .help-item {
  background: rgba(110, 127, 99, 0.10);
  border-radius: 14px;
  padding: 26px 28px;
  text-align: left;
}

.help-grid-3 .help-item h3 { color: var(--accent-dark); }

@media (max-width: 768px) {
  .help-grid.help-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .help-grid.help-grid-3 { grid-template-columns: 1fr; }
}

/* Tinted section band */
.section-tint { background: rgba(110, 127, 99, 0.07); }

/* Sage-tinted card variant */
.form-card.card-tint {
  background: rgba(110, 127, 99, 0.10);
  border-color: rgba(110, 127, 99, 0.18);
}

.form-card.card-tint h3 { color: var(--accent-dark); }

.form-card.card-tint input { background: var(--surface); }

/* Side-by-side card pair */
.duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}

.duo-grid .form-card {
  position: static;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: rgba(110, 127, 99, 0.10);
  border: 1px solid rgba(110, 127, 99, 0.18);
}

.duo-grid .form-card h3 { color: var(--accent-dark); }

.duo-grid .form-card label { text-align: center; }

.duo-grid .form-card input { background: var(--surface); text-align: center; }

.duo-grid .form-card .btn { margin-top: auto; }

.duo-grid .form-card form { display: flex; flex-direction: column; flex-grow: 1; }

.duo-grid .form-card form .btn { margin-top: auto; }

@media (max-width: 700px) {
  .duo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .help-grid.help-grid-2 { grid-template-columns: 1fr; }
}

/* Centered flex variant: keeps odd last rows centered instead of left-orphaned */
.help-flex { display: flex; flex-wrap: wrap; justify-content: center; gap: 36px 28px; text-align: center; }

.help-flex .help-item { flex: 0 1 300px; }

/* How I help */
.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 36px 28px;
  text-align: center;
}

.help-item h3 { margin-bottom: 8px; }

.help-item p { font-size: 14.5px; color: var(--muted); }

/* Facts row */
.facts { padding: 30px 0 76px; }

.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
}

.fact h3 { margin-bottom: 6px; }

.fact p { font-size: 14.5px; color: var(--muted); }

/* Photo band */
.photo-band { padding: 20px 0 60px; }

.photo-band .container {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 860px;
}

.photo-wrap { position: relative; }

.photo-wrap img { width: 100%; border-radius: 8px; display: block; border: 5px solid var(--accent-dark); }

.photo-note { position: absolute; bottom: -34px; right: -6px; transform: rotate(-3deg); white-space: nowrap; }

.photo-note svg { display: inline; vertical-align: -6px; margin-right: 4px; color: var(--accent-dark); }

.photo-band blockquote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.3vw, 1.6rem);
  line-height: 1.35;
  letter-spacing: -0.5px;
}

.photo-band .attr { margin-top: 14px; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); }

/* Contact */
.contact { text-align: center; padding: 40px 0 0; }

.contact h2 { max-width: 20ch; margin: 0 auto 12px; }

.contact p { color: var(--muted); }

.contact-links { margin-top: 26px; display: flex; gap: 22px; justify-content: center; align-items: center; flex-wrap: wrap; }

.contact-links a:not(.btn) { font-size: 15.5px; font-weight: 500; text-decoration: none; }

.contact-links a:not(.btn):hover { text-decoration: underline; }

/* Horizon skyline */
.horizon { margin-top: 72px; }

.horizon svg { display: block; width: 100%; height: auto; color: var(--skyline); }

.horizon-cap { text-align: right; padding: 6px 24px 0 0; }

/* Guide landing pages */
.guide-hero { padding: 64px 0 48px; }

.guide-hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.guide-hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.1rem); letter-spacing: -1.2px; }

.guide-meta { font-size: 13px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 14px; }

.inside-list { list-style: none; margin-top: 26px; display: grid; gap: 12px; }

.inside-list li { padding-left: 26px; position: relative; font-size: 16px; }

.inside-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 34px;
  position: sticky;
  top: 96px;
}

.form-card h3 { font-size: 1.3rem; margin-bottom: 6px; }

.form-card .form-sub { font-size: 14.5px; color: var(--muted); margin-bottom: 22px; }

.form-card label { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 6px; }

.form-card input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  margin-bottom: 18px;
}

.form-card input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

.form-card select {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15.5px;
  padding: 12px 40px 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  margin-bottom: 18px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5l5 5 5-5' fill='none' stroke='%235c6b54' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

.form-card select:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

.form-card select:invalid { color: var(--muted); }

.form-card .btn { width: 100%; text-align: center; }

.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; }

.form-success { display: none; text-align: center; padding: 28px 0 12px; }

.form-success h3 { color: var(--accent-dark); margin-bottom: 8px; }

.form-success p { font-size: 15px; color: var(--muted); }

/* Step 2 after a guide request: optional phone + property address */
.step2 {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
  text-align: left;
}

.step2 .form-sub { margin-bottom: 16px; text-align: center; }

.step2 label { display: block; font-size: 13.5px; font-weight: 500; margin-bottom: 6px; }

.step2 label .optional { font-weight: 400; color: var(--muted); }

.step2 input {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 15.5px;
  padding: 12px 14px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink);
  margin-bottom: 18px;
}

.step2 input:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }

.step2 .btn { width: 100%; text-align: center; }

.step2 .step2-done { text-align: center; color: var(--accent-dark); margin: 0; }

.guide-body { padding-bottom: 40px; }

/* Guide preview viewer (first pages free, email for the rest) */
html { scroll-behavior: smooth; }

.preview-scroll {
  max-height: 640px;
  overflow-y: auto;
  background: #E9E9E3;
  border: 1px solid var(--hairline);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.preview-scroll img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 6px 24px rgba(38, 42, 39, 0.14);
}

.preview-lock { text-align: center; padding: 30px 20px 18px; }

.preview-lock h3 { font-size: 1.3rem; margin-bottom: 6px; }

.preview-lock p { color: var(--muted); font-size: 15px; margin: 0 0 18px; }

.preview-cap { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; }

.preview-modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  width: min(760px, 92vw);
  max-height: min(84vh, 760px);
  position: fixed;
  inset: 0;
  margin: auto;
  background: var(--bg);
  box-shadow: 0 30px 80px rgba(38, 42, 39, 0.35);
}

.preview-modal[open] { display: flex; flex-direction: column; }

.preview-modal::backdrop { background: rgba(38, 42, 39, 0.55); }

.pm-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
}

.pm-head h3 { font-size: 1.1rem; }

.pm-close {
  border: none;
  background: none;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
}

.pm-close:hover { color: var(--ink); background: var(--hairline); }

.preview-modal .preview-scroll {
  border: none;
  border-radius: 0 0 16px 16px;
  max-height: none;
  flex: 1;
  min-height: 0;
}

.guide-body .container { max-width: 720px; }

.guide-body h2 { margin: 44px 0 16px; }

.guide-body p { color: var(--muted); margin-bottom: 14px; }

/* Newsletter issue pages */
.issue-hero { padding: 72px 0 20px; }

.issue-hero h1 { font-size: clamp(2rem, 4.2vw, 2.9rem); letter-spacing: -1.2px; max-width: 24ch; }

.issue-hero .issue-date { margin-top: 18px; color: var(--muted); font-size: 15px; }

.issue-body { padding: 8px 0 56px; }

.issue-body .container { max-width: 720px; }

.issue-body h2 { font-size: clamp(1.5rem, 2.8vw, 1.9rem); margin: 46px 0 16px; }

.issue-body p { color: var(--muted); margin-bottom: 14px; }

.issue-body p strong, .issue-body li strong { color: var(--ink); font-weight: 600; }

.issue-body ul { margin: 0 0 14px 20px; display: grid; gap: 10px; color: var(--muted); font-size: 15.5px; }

.issue-body a { color: var(--accent-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--accent-light); }

.issue-body a:hover { text-decoration-color: var(--accent-dark); }

.issue-body a.btn { color: #FFFFFF; text-decoration: none; }

.issue-body a.btn:hover { color: #FFFFFF; }

.issue-table-wrap { background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px; overflow-x: auto; margin: 10px 0 6px; }

.issue-table { width: 100%; border-collapse: collapse; font-size: 15px; }

.issue-table th { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; text-align: left; padding: 12px 18px 10px; border-bottom: 1px solid var(--hairline); }

.issue-table td { padding: 12px 18px; border-bottom: 1px solid var(--hairline); color: var(--muted); vertical-align: top; }

.issue-table tr:last-child td { border-bottom: none; }

.issue-table td:first-child { color: var(--ink); font-weight: 500; }

.issue-table td:nth-child(2) { font-family: var(--font-display); font-weight: 700; color: var(--ink); white-space: nowrap; }

.issue-caption { font-size: 13px; color: var(--muted); margin: 4px 0 14px; }

.issue-meaning { background: rgba(110, 127, 99, 0.07); border-left: 3px solid var(--accent); border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 22px 0; }

.issue-meaning p { margin: 0; }

.issue-cta { background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px; padding: 26px 28px; margin: 40px 0; }

.issue-cta h2 { margin: 0 0 10px; font-size: 1.3rem; }

.issue-cta p:last-of-type { margin-bottom: 18px; }

.issue-sig { margin-top: 36px; }

.issue-sig .sig-name { font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin-bottom: 2px; }

.issue-sig p { margin: 0; font-size: 15px; }

.issue-sources { border-top: 1px solid var(--hairline); margin-top: 48px; padding-top: 20px; }

.issue-sources p { font-size: 13px; line-height: 1.6; }

.issue-footnav { display: flex; justify-content: space-between; gap: 16px; margin-top: 40px; font-size: 14.5px; font-weight: 500; }

.issue-footnav a { color: var(--accent-dark); text-decoration: none; }

.issue-footnav a:hover { text-decoration: underline; }

/* Newsletter reader modal (issue pages embedded in an iframe) */
.issue-modal[open] { height: min(86vh, 820px); }

.issue-modal iframe { flex: 1; min-height: 0; width: 100%; border: none; background: var(--bg); }

.im-foot { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 12px 20px; border-top: 1px solid var(--hairline); border-radius: 0 0 16px 16px; background: var(--surface); }

.im-foot p { margin: 0; font-size: 13.5px; color: var(--muted); }

@media (max-width: 560px) { .im-foot p { display: none; } .im-foot { justify-content: center; } }

/* Embedded mode: issue pages loaded inside the reader modal hide site chrome */
.embedded .site-header, .embedded .site-footer, .embedded .horizon, .embedded .issue-footnav, .embedded .issue-subscribe { display: none; }

.embedded .issue-hero { padding: 36px 0 10px; }

/* Newsletter archive cards */
.edition-list { display: grid; gap: 14px; margin-top: 30px; text-align: left; }

.edition-card { display: block; background: var(--surface); border: 1px solid var(--hairline); border-radius: 12px; padding: 20px 24px; text-decoration: none; color: inherit; transition: border-color 0.15s ease, transform 0.15s ease; }

.edition-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.edition-card .ed-month { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent-dark); font-weight: 600; }

.edition-card h3 { margin: 6px 0; font-size: 1.1rem; }

.edition-card p { font-size: 14.5px; color: var(--muted); margin: 0; }

.edition-card .ed-read { display: inline-block; margin-top: 10px; font-size: 14px; font-weight: 500; color: var(--accent-dark); }

/* Footer */
.site-footer { background: var(--footer-bg); color: var(--footer-text); padding: 56px 0 40px; text-align: center; }

.footer-wordmark {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.4px;
  line-height: 1;
  color: #FFFFFF;
}

.fw-mark { width: 50px; height: 19px; color: var(--accent-light); flex-shrink: 0; margin-bottom: 5px; }

.footer-tag { margin-top: 12px; font-size: 13.5px; color: var(--footer-text); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  max-width: 960px;
  margin: 28px auto 26px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-nav a:hover { color: #FFFFFF; }

.footer-contact { font-size: 14.5px; }

.footer-contact a { color: var(--accent-light); text-decoration: none; }

.footer-contact a:hover { color: #FFFFFF; }

.footer-contact .dot { margin: 0 10px; color: rgba(255, 255, 255, 0.35); }

.footer-legal {
  margin: 26px auto 0;
  max-width: 640px;
  font-size: 12px;
  line-height: 1.7;
  color: #9BA19C;
}

.footer-legal p + p { margin-top: 8px; }

.eho-inline { vertical-align: -2px; margin: 0 4px 0 6px; }

.footer-brokerage { margin-top: 24px; }

.footer-brokerage img { height: 44px; width: auto; opacity: 0.92; }

.footer-legal .legal-links { margin-top: 14px; }

.footer-legal .legal-links a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-legal .legal-links a:hover { color: #FFFFFF; }

.eho svg { flex-shrink: 0; }

/* Accessibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Responsive */
@media (max-width: 860px) {
  .shelf { flex-wrap: wrap; gap: 20px; }
  .book { margin-left: 0 !important; transform: none !important; }
  .guide-hero .container, .photo-band .container, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .photo-wrap { max-width: 280px; }
  .form-card { position: static; }
  .hero { padding: 56px 0 44px; }
  .section { padding: 60px 0; }
}
