/*
Theme Name: Good Hours
Theme URI: https://goodhoursmag.com/
Author: Good Hours Magazine
Description: A restrained editorial WordPress theme for Good Hours Magazine.
Version: 1.7.0
Requires at least: 6.6
Requires PHP: 8.0
Text Domain: good-hours
*/

:root {
  --gh-paper: #F6F3EE;
  --gh-ink: #1A1A18;
  --gh-pine: #2F4F4F;
  --gh-brass: #A88D60;
  --gh-paper-deep: #EEEAE2;
  --gh-line: rgba(26, 26, 24, .16);
  --gh-line-strong: rgba(26, 26, 24, .28);
  --gh-muted: #6F6B63;
  --gh-serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", serif;
  --gh-sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --gh-container: 1480px;
  --gh-reading: 748px;
  --gh-wide: 1120px;
  --gh-gutter: clamp(20px, 3.25vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--gh-paper);
  color: var(--gh-ink);
  font-family: var(--gh-sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--gh-pine); }
button, input, select, textarea { font: inherit; }
::selection { background: rgba(168, 141, 96, .28); }

.gh-shell { width: min(100%, var(--gh-container)); margin-inline: auto; padding-inline: var(--gh-gutter); }
.gh-reading { width: min(100%, var(--gh-reading)); margin-inline: auto; }
.gh-kicker,
.gh-section-eyebrow,
.gh-archive-eyebrow {
  margin: 0 0 11px;
  font-size: .69rem;
  line-height: 1.2;
  letter-spacing: .145em;
  text-transform: uppercase;
  font-weight: 750;
  color: var(--gh-pine);
}
.gh-kicker a { text-decoration: none; }
.gh-title,
.entry-title,
.gh-section-title {
  font-family: var(--gh-serif);
  font-weight: 400;
  letter-spacing: -.037em;
}
.gh-meta,
.gh-article-byline {
  color: var(--gh-muted);
  font-size: .75rem;
  line-height: 1.5;
  letter-spacing: .018em;
}

/* Header */
.gh-site-header { background: var(--gh-paper); border-bottom: 1px solid var(--gh-line); }
.gh-utility-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gh-line);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gh-muted);
}
.gh-utility-identity { color: var(--gh-ink); }
.gh-header-main { min-height: clamp(118px, 13vw, 186px); display: flex; align-items: center; justify-content: center; position: relative; }
.gh-wordmark {
  font-family: var(--gh-sans);
  font-size: clamp(3.15rem, 8.25vw, 8.25rem);
  font-weight: 800;
  letter-spacing: -.072em;
  line-height: .78;
  text-decoration: none;
  white-space: nowrap;
}
.gh-wordmark:hover { color: var(--gh-ink); }
.gh-menu-toggle {
  position: absolute;
  right: var(--gh-gutter);
  display: none;
  border: 0;
  background: transparent;
  padding: 10px 0;
  cursor: pointer;
  font-size: .72rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--gh-ink);
}
.gh-nav-wrap { border-top: 1px solid var(--gh-line); }
.gh-nav {
  min-height: 51px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: clamp(22px, 3.5vw, 54px);
  list-style: none;
  padding: 0;
  margin: 0;
}
.gh-nav li { display: flex; align-items: stretch; }
.gh-nav a {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .105em;
  text-transform: uppercase;
}
.gh-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gh-pine);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.gh-nav a:hover::after,
.gh-nav .current-menu-item > a::after,
.gh-nav .current-menu-ancestor > a::after { transform: scaleX(1); }

/* Homepage lead */
.gh-home-lead { padding-block: clamp(34px, 4.8vw, 72px); border-bottom: 1px solid var(--gh-line); }
.gh-lead-grid {
  display: grid;
  grid-template-columns: minmax(300px, .78fr) minmax(0, 1.34fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
}
.gh-lead-copy { max-width: 630px; }
.gh-lead-title {
  margin: 0 0 24px;
  font-size: clamp(3.25rem, 6.25vw, 7.15rem);
  line-height: .92;
}
.gh-lead-title a { text-decoration: none; }
.gh-lead-dek {
  margin: 0 0 23px;
  max-width: 590px;
  font-family: var(--gh-serif);
  font-size: clamp(1.06rem, 1.45vw, 1.34rem);
  line-height: 1.47;
  color: #44413C;
}
.gh-lead-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--gh-paper-deep);
}
.gh-lead-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1); }
.gh-lead-media:hover img { transform: scale(1.012); }
.gh-media-placeholder { display: grid; place-items: center; color: rgba(26,26,24,.16); text-decoration: none; }
.gh-media-placeholder span { font-size: clamp(2rem, 5vw, 6rem); font-weight: 800; letter-spacing: -.06em; }

/* Sections */
.gh-section { padding-block: clamp(54px, 7vw, 98px); border-bottom: 1px solid var(--gh-line); }
.gh-section--edit { background: rgba(238,234,226,.42); }
.gh-section-head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: clamp(28px, 3.4vw, 48px);
}
.gh-section-head--rule { padding-top: 15px; border-top: 1px solid var(--gh-line-strong); }
.gh-section-title { margin: 0; font-size: clamp(2.3rem, 3.7vw, 4rem); line-height: .98; }
.gh-section-note { max-width: 420px; margin: 0 0 3px; color: var(--gh-muted); font-family: var(--gh-serif); font-size: 1rem; line-height: 1.45; }
.gh-section-link {
  flex: 0 0 auto;
  font-size: .69rem;
  text-transform: uppercase;
  letter-spacing: .11em;
  text-decoration: none;
  font-weight: 750;
}
.gh-edit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  column-gap: clamp(32px, 4vw, 62px);
  row-gap: 0;
}
.gh-edit-grid > .gh-card--feature { grid-row: span 4; padding-right: clamp(0px, 1vw, 18px); }
.gh-edit-grid > .gh-card--compact {
  border-top: 1px solid var(--gh-line);
  padding-block: 18px;
}
.gh-edit-grid > .gh-card--compact:last-child { border-bottom: 1px solid var(--gh-line); }
.gh-grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(28px, 3vw, 48px); }
.gh-grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: clamp(22px, 2.5vw, 38px); }

/* Cards */
.gh-card { min-width: 0; }
.gh-card-image { display: block; aspect-ratio: 4 / 5; overflow: hidden; margin-bottom: 18px; background: var(--gh-paper-deep); }
.gh-card-image--wide { aspect-ratio: 16 / 10; }
.gh-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gh-card:hover .gh-card-image img { transform: scale(1.014); }
.gh-card-title {
  margin: 7px 0 10px;
  font-family: var(--gh-serif);
  font-weight: 400;
  letter-spacing: -.03em;
  line-height: 1.06;
  font-size: clamp(1.45rem, 2vw, 2.3rem);
}
.gh-card-title a { text-decoration: none; }
.gh-card-dek { color: #4E4A44; font-size: .91rem; line-height: 1.53; margin: 0 0 13px; }
.gh-card--feature .gh-card-title { max-width: 760px; font-size: clamp(2rem, 3.4vw, 4.05rem); line-height: .98; }
.gh-card--feature .gh-card-dek { max-width: 650px; font-family: var(--gh-serif); font-size: clamp(1rem, 1.25vw, 1.18rem); }
.gh-card--compact { display: block; }
.gh-card--compact .gh-card-image { display: none; }
.gh-card--compact .gh-kicker { margin-bottom: 7px; }
.gh-card--compact .gh-card-title { margin-top: 0; margin-bottom: 8px; font-size: clamp(1.35rem, 1.9vw, 2.1rem); }

/* Archives */
.gh-archive-head { padding-block: clamp(54px, 7vw, 104px) clamp(36px, 5vw, 62px); border-bottom: 1px solid var(--gh-line); }
.gh-archive-eyebrow { margin-bottom: 20px; }
.gh-archive-title {
  margin: 0;
  font-family: var(--gh-serif);
  font-size: clamp(4.2rem, 9vw, 9rem);
  font-weight: 400;
  letter-spacing: -.062em;
  line-height: .82;
}
.gh-archive-title .vcard { font: inherit; }
.gh-archive-description { max-width: 680px; margin: 26px 0 0; color: #4E4A44; font-family: var(--gh-serif); font-size: clamp(1.08rem, 1.5vw, 1.3rem); line-height: 1.48; }
.gh-archive-description p { margin: 0; }
.gh-archive-grid { padding-block: clamp(48px, 6vw, 78px) 100px; }

/* Single article */
.gh-single-head { padding-block: clamp(52px, 7vw, 102px) clamp(30px, 3.5vw, 48px); }
.gh-single-head .gh-kicker { margin-bottom: 18px; }
.gh-single-title { max-width: 1180px; margin: 0 0 27px; font-size: clamp(3.4rem, 7.15vw, 7.7rem); line-height: .92; }
.gh-single-dek {
  max-width: 820px;
  margin: 0 0 27px;
  font-family: var(--gh-serif);
  font-size: clamp(1.16rem, 1.75vw, 1.54rem);
  line-height: 1.45;
  color: #4A4741;
}
.gh-article-byline { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }
.gh-single-hero { width: min(100%, 1620px); margin: 0 auto clamp(54px, 7vw, 94px); padding-inline: var(--gh-gutter); }
.gh-single-hero-frame { aspect-ratio: 16 / 10; overflow: hidden; background: var(--gh-paper-deep); }
.gh-single-hero img { width: 100%; height: 100%; object-fit: cover; }
.gh-single-hero figcaption { max-width: 900px; margin: 10px 0 0; color: var(--gh-muted); font-size: .69rem; line-height: 1.45; }
.entry-content { font-family: var(--gh-serif); font-size: clamp(1.08rem, 1.22vw, 1.2rem); line-height: 1.78; padding-bottom: clamp(72px, 8vw, 118px); }
.entry-content > * { max-width: var(--gh-reading); margin-left: auto; margin-right: auto; }
.entry-content > .alignwide { max-width: var(--gh-wide); }
.entry-content > .alignfull { max-width: none; width: 100%; }
.entry-content > p:first-child { font-size: 1.12em; line-height: 1.68; }
.entry-content p { margin-top: 0; margin-bottom: 1.22em; }
.entry-content h2,
.entry-content h3,
.entry-content h4 { font-family: var(--gh-serif); font-weight: 400; letter-spacing: -.034em; line-height: 1.04; }
.entry-content h2 { font-size: clamp(2.25rem, 3.85vw, 3.95rem); margin-top: 1.95em; margin-bottom: .55em; }
.entry-content h3 { font-size: clamp(1.65rem, 2.6vw, 2.55rem); margin-top: 1.7em; margin-bottom: .55em; }
.entry-content h4 { font-size: 1.45rem; margin-top: 1.6em; }
.entry-content a { text-decoration-color: rgba(47,79,79,.45); }
.entry-content a:hover { text-decoration-color: var(--gh-pine); }
.entry-content blockquote { border-left: 2px solid var(--gh-brass); padding: .15em 0 .15em 28px; font-size: 1.35em; line-height: 1.45; margin-top: 1.8em; margin-bottom: 1.8em; }
.entry-content blockquote p:last-child { margin-bottom: 0; }
.entry-content ul,
.entry-content ol { padding-left: 1.25em; }
.entry-content li { margin-bottom: .45em; }
.entry-content hr { border: 0; border-top: 1px solid var(--gh-line); margin-block: 3em; }
.entry-content figure { margin-top: 2.1em; margin-bottom: 2.1em; }
.entry-content figcaption { font-family: var(--gh-sans); color: var(--gh-muted); font-size: .7rem; line-height: 1.45; margin-top: 9px; }
.entry-content .wp-block-pullquote { border-top: 1px solid var(--gh-line-strong); border-bottom: 1px solid var(--gh-line-strong); padding: 2em 0; }
.entry-content .wp-block-pullquote blockquote { border-left: 0; padding: 0; }
.gh-related { padding-block: clamp(54px, 7vw, 92px); border-top: 1px solid var(--gh-line); background: rgba(238,234,226,.35); }

/* Pages */
.page .gh-single-title { max-width: 980px; }

/* Footer */
.gh-site-footer { background: var(--gh-ink); color: var(--gh-paper); padding-block: 34px 28px; }
.gh-footer-topline { border-bottom: 1px solid rgba(246,243,238,.18); padding-bottom: 22px; margin-bottom: clamp(42px, 6vw, 72px); font-family: var(--gh-serif); font-size: 1rem; color: #C9C4BA; }
.gh-footer-grid { display: grid; grid-template-columns: 1.5fr .55fr .55fr; gap: clamp(32px, 6vw, 88px); }
.gh-footer-wordmark { font-size: clamp(3.2rem, 7vw, 7.4rem); font-weight: 800; letter-spacing: -.072em; line-height: .78; margin: 0 0 25px; }
.gh-footer-line { max-width: 390px; font-family: var(--gh-serif); font-size: 1.18rem; color: #D8D2C8; }
.gh-footer-label { margin: 0 0 14px; font-size: .66rem; line-height: 1.2; letter-spacing: .13em; text-transform: uppercase; font-weight: 750; color: #AAA49A; }
.gh-footer-nav { list-style: none; padding: 0; margin: 0; }
.gh-footer-nav li { margin-bottom: 8px; }
.gh-footer-nav a { text-decoration: none; font-size: .84rem; }
.gh-footer-nav a:hover { color: #D8D2C8; }
.gh-footer-small { display: flex; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(246,243,238,.18); margin-top: 58px; padding-top: 22px; color: #969087; font-size: .67rem; letter-spacing: .025em; }

/* WordPress utility */
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.screen-reader-text:focus { clip: auto !important; width: auto; height: auto; top: 8px; left: 8px; z-index: 100000; background: var(--gh-paper); color: var(--gh-ink); padding: 10px 14px; }
.navigation.pagination { margin-top: 56px; }
.nav-links { display: flex; gap: 8px; flex-wrap: wrap; }
.page-numbers { display: inline-flex; min-width: 40px; height: 40px; justify-content: center; align-items: center; border: 1px solid var(--gh-line); text-decoration: none; font-size: .75rem; }
.page-numbers.current { background: var(--gh-ink); color: var(--gh-paper); }

@media (max-width: 1050px) {
  .gh-grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gh-lead-title { font-size: clamp(3.1rem, 6.8vw, 6rem); }
}

@media (max-width: 900px) {
  .gh-utility-bar { display: none; }
  .gh-header-main { min-height: 100px; justify-content: flex-start; }
  .gh-wordmark { font-size: clamp(2.8rem, 10vw, 5rem); }
  .gh-menu-toggle { display: block; }
  .gh-nav-wrap { display: none; border-top: 1px solid var(--gh-line); }
  .gh-nav-wrap.is-open { display: block; }
  .gh-nav { flex-direction: column; align-items: stretch; gap: 0; padding-block: 8px 14px; }
  .gh-nav li { display: block; }
  .gh-nav a { min-height: 42px; border-bottom: 1px solid var(--gh-line); }
  .gh-nav a::after { display: none; }
  .gh-lead-grid { grid-template-columns: 1fr; }
  .gh-lead-media { order: 1; }
  .gh-lead-copy { order: 2; max-width: 760px; }
  .gh-lead-title { font-size: clamp(3.15rem, 10vw, 6rem); }
  .gh-edit-grid { grid-template-columns: 1fr; }
  .gh-edit-grid > .gh-card--feature { grid-row: auto; padding-right: 0; margin-bottom: 25px; }
  .gh-card--compact .gh-card-title { font-size: clamp(1.55rem, 4vw, 2.2rem); }
  .gh-grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gh-footer-grid { grid-template-columns: 1fr 1fr; }
  .gh-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --gh-gutter: 20px; }
  .gh-header-main { min-height: 86px; }
  .gh-wordmark { font-size: clamp(2.55rem, 13vw, 4rem); }
  .gh-home-lead { padding-top: 24px; }
  .gh-lead-grid { gap: 24px; }
  .gh-lead-title { font-size: clamp(2.85rem, 13vw, 4.6rem); }
  .gh-lead-dek { font-size: 1.08rem; }
  .gh-section { padding-block: 50px; }
  .gh-section-head { display: block; }
  .gh-section-note { margin-top: 14px; }
  .gh-section-link { display: inline-block; margin-top: 14px; }
  .gh-grid-3, .gh-grid-4 { grid-template-columns: 1fr; }
  .gh-grid-3 { gap: 38px; }
  .gh-grid-4 { gap: 42px; }
  .gh-card-image { aspect-ratio: 16 / 10; }
  .gh-section--pillar .gh-card-image { aspect-ratio: 4 / 5; }
  .gh-single-head { padding-top: 42px; }
  .gh-single-title { font-size: clamp(3rem, 14vw, 4.6rem); }
  .gh-single-hero { padding-inline: 0; }
  .gh-single-hero figcaption { padding-inline: var(--gh-gutter); }
  .entry-content { font-size: 1.075rem; line-height: 1.75; padding-inline: var(--gh-gutter); }
  .entry-content > * { max-width: 100%; }
  .entry-content > .alignfull { width: calc(100% + (var(--gh-gutter) * 2)); margin-left: calc(var(--gh-gutter) * -1); }
  .gh-footer-grid { grid-template-columns: 1fr; }
  .gh-footer-brand { grid-column: auto; }
  .gh-footer-small { display: block; }
  .gh-footer-small span { display: block; margin-top: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

/* ============================================================

   Good Hours v0.4 — Publication pages + publication navigation
   ========================================================== */

.gh-publication-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gh-publication-nav a {
  color: inherit;
  text-decoration: none;
}
.gh-publication-nav--masthead a {
  font-size: .64rem;
  line-height: 1.2;
  color: #514d47;
}
.gh-publication-nav--masthead a:hover,
.gh-publication-nav--footer a:hover { color: var(--gh-pine); }
.gh-mobile-publication { display: none; }

.gh-v4-footer-publication {
  display: flex;
  justify-content: center;
  padding: 0 0 18px;
  border-top: 1px solid var(--gh-line);
  padding-top: 17px;
}
.gh-publication-nav--footer { gap: 22px; flex-wrap: wrap; justify-content: center; }
.gh-publication-nav--footer a { font-size: .59rem; color: #615d57; }

/* Bespoke publication pages */
.gh-editorial-page > .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}
.gh-editorial-page .entry-content > .wp-block-group,
.gh-editorial-page .entry-content > .wp-block-separator,
.gh-editorial-page .entry-content > .wp-block-columns {
  width: min(100%, var(--gh-container));
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gh-gutter);
  padding-right: var(--gh-gutter);
}
.gh-editorial-page .entry-content > .wp-block-separator {
  border: 0;
  border-top: 1px solid var(--gh-line);
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.gh-editorial-page .gh-eyebrow {
  margin: 0 0 18px;
  color: var(--gh-pine);
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.gh-editorial-page h1,
.gh-editorial-page h2,
.gh-editorial-page h3 {
  font-family: var(--gh-serif);
  font-weight: 400;
  letter-spacing: -.045em;
}
.gh-editorial-page h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(4rem, 7.2vw, 7.8rem);
  line-height: .9;
}
.gh-editorial-page h2 {
  margin: 0 0 25px;
  font-size: clamp(2.35rem, 3.8vw, 4.25rem);
  line-height: .96;
}
.gh-editorial-page h3 {
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1;
}
.gh-editorial-page p {
  max-width: 760px;
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.72;
  color: #3f3c37;
}
.gh-editorial-page a { text-decoration-color: rgba(168,141,96,.72); }

.gh-about-intro,
.gh-contact-intro,
.gh-standards-intro {
  padding-top: clamp(70px, 9vw, 145px) !important;
  padding-bottom: clamp(70px, 8vw, 125px) !important;
}
.gh-about-lede,
.gh-contact-lede,
.gh-standards-lede {
  max-width: 820px !important;
  margin: 35px 0 28px;
  font-family: var(--gh-serif);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem) !important;
  line-height: 1.27 !important;
  letter-spacing: -.025em;
  color: var(--gh-ink) !important;
}
.gh-about-intro > p:not(.gh-eyebrow):not(.gh-about-lede),
.gh-contact-intro > p:not(.gh-eyebrow):not(.gh-contact-lede),
.gh-standards-intro > p:not(.gh-eyebrow):not(.gh-standards-lede) {
  max-width: 720px;
}

.gh-about-section,
.gh-contact-section,
.gh-standards-section,
.gh-about-independent,
.gh-standards-closing {
  padding-top: clamp(58px, 7vw, 105px) !important;
  padding-bottom: clamp(58px, 7vw, 105px) !important;
}

/* About */
.gh-about-pillars {
  gap: 0 !important;
  margin: 45px 0 0;
  border-top: 1px solid var(--gh-line);
}
.gh-about-pillars + .gh-about-pillars { margin-top: 0; }
.gh-about-pillars > .wp-block-column {
  min-width: 0;
  padding: 30px 34px 40px 0;
  border-bottom: 1px solid var(--gh-line);
}
.gh-about-pillars > .wp-block-column + .wp-block-column {
  padding-left: 34px;
  border-left: 1px solid var(--gh-line);
}
.gh-about-pillars h3 { color: var(--gh-pine); }
.gh-about-pillars p { max-width: 360px; margin-bottom: 0; font-size: .95rem; line-height: 1.58; }
.gh-about-independent {
  background: var(--gh-paper-deep);
  max-width: none !important;
  width: 100% !important;
}
.gh-about-independent > * {
  width: min(calc(100% - (2 * var(--gh-gutter))), var(--gh-wide));
  margin-left: auto;
  margin-right: auto;
}
.gh-about-closing {
  width: 100% !important;
  max-width: none !important;
  padding: clamp(85px, 11vw, 180px) var(--gh-gutter) !important;
  text-align: center;
  background: var(--gh-pine);
  color: var(--gh-paper);
}
.gh-about-closing p {
  margin-left: auto;
  margin-right: auto;
  color: rgba(246,243,238,.86);
  font-family: var(--gh-serif);
  font-size: clamp(1.55rem, 2.45vw, 2.8rem);
  line-height: 1.25;
}
.gh-about-closing .gh-about-signoff {
  margin-top: 44px;
  color: var(--gh-paper);
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
}

/* Contact */
.gh-contact-section {
  display: grid;
  grid-template-columns: minmax(190px, .4fr) minmax(0, 1fr);
  column-gap: clamp(45px, 9vw, 145px);
  border-bottom: 1px solid var(--gh-line);
}
.gh-contact-section h2 { grid-column: 1; font-size: clamp(2rem, 3vw, 3.25rem); }
.gh-contact-section > p { grid-column: 2; margin-top: 0; }
.gh-contact-email a {
  font-family: var(--gh-serif);
  font-size: clamp(1.8rem, 3vw, 3.5rem);
  letter-spacing: -.035em;
}
.gh-contact-closing {
  padding-top: clamp(60px, 8vw, 120px) !important;
  padding-bottom: clamp(70px, 9vw, 135px) !important;
  text-align: center;
}
.gh-contact-closing p { margin-left: auto; margin-right: auto; }

/* Editorial standards */
.gh-standards-section {
  display: grid;
  grid-template-columns: minmax(220px, .46fr) minmax(0, 1fr);
  column-gap: clamp(55px, 9vw, 150px);
  border-bottom: 1px solid var(--gh-line);
}
.gh-standards-section h2 {
  grid-column: 1;
  grid-row: 1 / span 6;
  font-size: clamp(2rem, 3.1vw, 3.35rem);
}
.gh-standards-section > p { grid-column: 2; margin-top: 0; }
.gh-standards-closing {
  padding-top: clamp(70px, 9vw, 140px) !important;
  padding-bottom: clamp(70px, 9vw, 140px) !important;
}
.gh-standards-closing h2,
.gh-standards-closing p { max-width: 790px; margin-left: auto; margin-right: auto; text-align: center; }

@media (max-width: 900px) {
  .gh-mobile-publication { display: block; padding: 12px 0 18px; }
  .gh-publication-nav--mobile { display: grid; grid-template-columns: 1fr; gap: 0; }
  .gh-publication-nav--mobile a {
    display: flex;
    align-items: center;
    min-height: 42px;
    border-bottom: 1px solid var(--gh-line);
    font-size: .64rem;
    letter-spacing: .1em;
    text-transform: uppercase;
  }
  .gh-contact-section,
  .gh-standards-section { grid-template-columns: 1fr; gap: 10px; }
  .gh-contact-section h2,
  .gh-contact-section > p,
  .gh-standards-section h2,
  .gh-standards-section > p { grid-column: 1; grid-row: auto; }
}

@media (max-width: 700px) {
  .gh-editorial-page h1 { font-size: clamp(3.4rem, 16vw, 5.5rem); }
  .gh-about-intro,
  .gh-contact-intro,
  .gh-standards-intro { padding-top: 58px !important; padding-bottom: 62px !important; }
  .gh-about-pillars { display: block; border-top: 0; }
  .gh-about-pillars > .wp-block-column,
  .gh-about-pillars > .wp-block-column + .wp-block-column {
    padding: 24px 0 28px;
    border-left: 0;
    border-top: 1px solid var(--gh-line);
  }
  .gh-about-pillars:last-child > .wp-block-column:last-child { border-bottom: 1px solid var(--gh-line); }
  .gh-publication-nav--footer { gap: 14px 20px; }
}


/* ==========================================================

/* ==========================================================
   Good Hours v1.1 — Homepage matched to approved reference
   ========================================================== */

:root {
  --gh-home-max: 1536px;
  --gh-home-gutter: clamp(28px, 3vw, 48px);
}

.gh-home-shell {
  width: min(100%, var(--gh-home-max));
  margin-inline: auto;
  padding-inline: var(--gh-home-gutter);
}

/* Masthead — v1.2: compact left-aligned publication mark */
.gh-header-v1 {
  background: var(--gh-paper);
  color: var(--gh-ink);
  border-bottom: 1px solid var(--gh-line);
}
.gh-header-v1__masthead {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.gh-header-v1__left {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.6vw, 38px);
}
.gh-header-v1__wordmark {
  flex: 0 0 auto;
  display: inline-block;
  color: var(--gh-ink);
  font-family: var(--gh-serif);
  font-size: clamp(1.75rem, 2.15vw, 2.2rem);
  font-weight: 400;
  letter-spacing: -.052em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.gh-header-v1__wordmark:hover { color: var(--gh-ink); }
.gh-header-v1__utility { display: block; }
.gh-header-v1__utility-menu { margin: 0; padding: 0; list-style: none; }
.gh-header-v1__utility-menu > li { margin: 0; }
.gh-publication-nav--masthead {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.gh-publication-nav--masthead li { display: flex; align-items: center; }
.gh-publication-nav--masthead li + li::before {
  content: "";
  width: 1px;
  height: 11px;
  margin: 0 13px;
  background: var(--gh-line-strong);
}
.gh-publication-nav--masthead a {
  color: #403d38;
  font-size: .66rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.gh-publication-nav--masthead a:hover { color: var(--gh-pine); }
.gh-header-v1__tools {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 21px;
}
.gh-header-v1__search {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--gh-ink);
}
.gh-header-v1__search svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
}
.gh-header-v1__toggle {
  position: static;
  display: inline-flex;
  width: 25px;
  height: 22px;
  padding: 4px 0;
  border: 0;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
}
.gh-header-v1__toggle span {
  display: block;
  width: 21px;
  height: 1px;
  background: currentColor;
}
.gh-header-v1__navwrap {
  border-top: 1px solid var(--gh-line);
  border-bottom: 0;
}
.gh-header-v1__nav {
  min-height: 46px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(42px, 5vw, 78px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.gh-header-v1__nav li { display: flex; align-items: stretch; }
.gh-header-v1__nav a {
  display: flex;
  align-items: center;
  color: var(--gh-ink);
  font-size: .67rem;
  font-weight: 750;
  letter-spacing: .135em;
  text-decoration: none;
  text-transform: uppercase;
}
.gh-header-v1__nav a:hover,
.gh-header-v1__nav .current-menu-item > a { color: var(--gh-pine); }

/* Shared homepage details */
.gh-home { overflow: visible; }
.gh-home a { text-decoration: none; }
.gh-home-kicker,
.gh-home-music__label,
.gh-home-music__franchise {
  margin: 0 0 14px;
  color: var(--gh-pine);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.gh-home-byline {
  color: #5e5a54;
  font-size: .67rem;
  line-height: 1.45;
}
.gh-home-byline span { padding: 0 9px; color: #9b958a; }
.gh-home-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 27px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gh-brass);
  color: var(--gh-ink);
  font-size: .71rem;
  font-weight: 700;
}
.gh-home-image-fallback {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  background: var(--gh-paper-deep);
  color: rgba(26,26,24,.18);
  font-family: var(--gh-serif);
  font-size: 2rem;
}

/* Hero — reference: calm 34/66 split, controlled long titles */
.gh-home-hero { border-bottom: 1px solid var(--gh-line); }
.gh-home-hero__grid {
  display: grid;
  grid-template-columns: minmax(430px, 34%) minmax(0, 66%);
  align-items: stretch;
  padding-right: 0;
}
.gh-home-hero__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 4vw, 66px) clamp(44px, 4vw, 64px) clamp(50px, 4.2vw, 70px) 0;
}
.gh-home-hero__title {
  max-width: 100%;
  margin: 0 0 24px;
  color: var(--gh-ink);
  font-family: var(--gh-serif);
  font-size: clamp(3.35rem, 3.55vw, 4.05rem);
  font-weight: 400;
  letter-spacing: -.048em;
  line-height: .92;
  overflow: visible;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.gh-home-hero__title.gh-title-length--long {
  font-size: clamp(3.05rem, 3.15vw, 3.65rem);
  letter-spacing: -.044em;
}
.gh-home-hero__title.gh-title-length--xl {
  font-size: clamp(2.8rem, 2.85vw, 3.35rem);
  letter-spacing: -.038em;
}
.gh-home-hero__title a { color: inherit; }
.gh-home-hero__dek {
  max-width: 420px;
  margin: 0 0 25px;
  color: #514d47;
  font-family: var(--gh-sans);
  font-size: .91rem;
  line-height: 1.55;
}
.gh-home-hero__media {
  display: block;
  min-width: 0;
  min-height: 530px;
  overflow: hidden;
  background: var(--gh-paper-deep);
}
.gh-home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 530px;
  object-fit: cover;
}

/* Latest */
.gh-home-latest {
  padding: 31px 0 clamp(42px, 4.2vw, 64px);
  border-bottom: 1px solid var(--gh-line);
}
.gh-home-section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}
.gh-home-section-head h2 {
  margin: 0;
  font-family: var(--gh-serif);
  font-size: clamp(1.85rem, 2.1vw, 2.25rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1;
}
.gh-home-section-head h2 em { font-weight: 400; }
.gh-home-section-head > span { height: 1px; background: var(--gh-line); }
.gh-home-section-head > a {
  color: var(--gh-brass);
  font-size: .67rem;
  font-weight: 600;
  text-decoration: none;
}
.gh-home-latest__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: clamp(22px, 2.5vw, 34px);
}
.gh-home-latest__grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.gh-home-latest__grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.gh-home-card { min-width: 0; }
.gh-home-card__image {
  display: block;
  aspect-ratio: 16 / 9;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--gh-paper-deep);
}
.gh-home-card__image img { width: 100%; height: 100%; object-fit: cover; }
.gh-home-card .gh-home-kicker { margin-bottom: 6px; }
.gh-home-card h3 {
  margin: 0 0 12px;
  font-family: var(--gh-serif);
  font-size: clamp(1.42rem, 1.55vw, 1.7rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.03;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.gh-home-card h3.gh-title-length--long,
.gh-home-card h3.gh-title-length--xl { font-size: clamp(1.27rem, 1.38vw, 1.5rem); }
.gh-home-card__dek { display: none; }

/* Travel feature */
.gh-home-travel {
  width: min(100%, var(--gh-home-max));
  margin-inline: auto;
  border-bottom: 1px solid var(--gh-line);
}
.gh-home-travel__grid {
  display: grid;
  grid-template-columns: minmax(0, 61%) minmax(380px, 39%);
  align-items: stretch;
}
.gh-home-travel__media { display: block; min-height: 560px; overflow: hidden; }
.gh-home-travel__media img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.gh-home-travel__copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(50px, 5vw, 78px) clamp(48px, 5vw, 78px);
  border-left: 1px solid var(--gh-line);
}
.gh-home-travel__copy h2 {
  max-width: 480px;
  margin: 0 0 20px;
  font-family: var(--gh-serif);
  font-size: clamp(3.15rem, 3.65vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -.05em;
  line-height: .92;
}
.gh-home-travel__copy h2.gh-title-length--long { font-size: clamp(2.85rem, 3.2vw, 3.75rem); }
.gh-home-travel__copy h2.gh-title-length--xl { font-size: clamp(2.55rem, 2.85vw, 3.35rem); }
.gh-home-travel__copy > p:not(.gh-home-kicker) { max-width: 410px; margin: 0 0 20px; color: #514d47; font-size: .88rem; line-height: 1.54; }

/* Music band */
.gh-home-music {
  padding: clamp(42px, 4.3vw, 62px) 0;
  background: var(--gh-pine);
  color: var(--gh-paper);
}
.gh-home-music__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(310px, .7fr) minmax(220px, .42fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
}
.gh-home-music__grid--simple { grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr); }
.gh-home-music__media { display: block; aspect-ratio: 1.48 / 1; overflow: hidden; background: rgba(0,0,0,.12); }
.gh-home-music__media img { width: 100%; height: 100%; object-fit: cover; }
.gh-home-music__label,
.gh-home-music__franchise { color: rgba(246,243,238,.74); }
.gh-home-music__copy h2 {
  margin: 0 0 18px;
  font-family: var(--gh-serif);
  font-size: clamp(3rem, 3.75vw, 4.25rem);
  font-weight: 400;
  line-height: .91;
  letter-spacing: -.05em;
}
.gh-home-music__copy h2.gh-title-length--long { font-size: clamp(2.7rem, 3.35vw, 3.75rem); }
.gh-home-music__copy h2.gh-title-length--xl { font-size: clamp(2.4rem, 3vw, 3.35rem); }
.gh-home-music__copy h2 a { color: var(--gh-paper); }
.gh-home-music__copy > p:not(.gh-home-music__label) { max-width: 370px; margin: 0 0 25px; color: rgba(246,243,238,.78); font-size: .84rem; line-height: 1.5; }
.gh-home-outline-link {
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(246,243,238,.65);
  color: var(--gh-paper);
  font-size: .68rem;
}
.gh-home-music__more { min-width: 0; border-left: 1px solid rgba(246,243,238,.28); padding-left: 26px; }
.gh-home-music__track {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 61px;
  border-top: 1px solid rgba(246,243,238,.28);
  color: var(--gh-paper);
}
.gh-home-music__track:last-child { border-bottom: 1px solid rgba(246,243,238,.28); }
.gh-home-music__track span { width: 44px; height: 44px; overflow: hidden; }
.gh-home-music__track img { width: 100%; height: 100%; object-fit: cover; }
.gh-home-music__track b { font-size: .72rem; line-height: 1.25; font-weight: 500; }

/* Lower row */
.gh-home-secondary { padding: clamp(38px, 4vw, 58px) 0 clamp(48px, 5vw, 70px); border-bottom: 1px solid var(--gh-line); }
.gh-home-secondary__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: clamp(26px, 3vw, 42px); }
.gh-home-secondary__card { min-width: 0; }
.gh-home-secondary__image { display: block; aspect-ratio: 1.8 / 1; margin-bottom: 14px; overflow: hidden; }
.gh-home-secondary__image img { width: 100%; height: 100%; object-fit: cover; }
.gh-home-secondary__card .gh-home-kicker { margin-bottom: 6px; color: var(--gh-brass); }
.gh-home-secondary__card h3 {
  margin: 0 0 7px;
  font-family: var(--gh-serif);
  font-size: clamp(1.4rem, 1.65vw, 1.8rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -.035em;
}
.gh-home-secondary__card h3.gh-title-length--long,
.gh-home-secondary__card h3.gh-title-length--xl { font-size: clamp(1.25rem,1.45vw,1.58rem); }
.gh-home-secondary__card p:not(.gh-home-kicker) { margin: 0 0 10px; color: #57534d; font-size: .78rem; line-height: 1.45; }

/* Culture closer */
.gh-home-culture { border-bottom: 1px solid var(--gh-line); }
.gh-home-culture__grid {
  display: grid;
  grid-template-columns: minmax(300px, 36%) minmax(0, 64%);
  align-items: center;
  min-height: 260px;
}
.gh-home-culture__copy { min-width: 0; padding: 42px 48px 42px 0; }
.gh-home-culture__copy h2 {
  max-width: 400px;
  margin: 0 0 13px;
  font-family: var(--gh-serif);
  font-size: clamp(2.3rem, 3vw, 3.3rem);
  font-weight: 400;
  line-height: .95;
  letter-spacing: -.045em;
}
.gh-home-culture__copy h2.gh-title-length--long,
.gh-home-culture__copy h2.gh-title-length--xl { font-size: clamp(2rem, 2.6vw, 2.9rem); }
.gh-home-culture__copy > p:not(.gh-home-kicker) { max-width: 360px; margin: 0; color: #514d47; font-size: .82rem; line-height: 1.48; }
.gh-home-culture__media { min-height: 240px; height: 100%; display: block; overflow: hidden; }
.gh-home-culture__media img { width: 100%; height: 100%; object-fit: cover; }

/* Footer */
.gh-footer-v1 { padding: 0; background: var(--gh-paper); color: var(--gh-ink); }
.gh-footer-v1__newsletter { padding: 34px 0 30px; text-align: center; border-bottom: 1px solid var(--gh-line); }
.gh-footer-v1__newsletter h2 {
  margin: 0 0 8px;
  font-family: var(--gh-serif);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -.02em;
}
.gh-footer-v1__newsletter p,
.gh-footer-v1__newsletter a { margin: 0; color: #6e6961; font-size: .66rem; text-decoration: none; }
.gh-footer-v1__main {
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid var(--gh-line);
}
.gh-footer-v1__wordmark {
  justify-self: start;
  font-family: var(--gh-serif);
  font-size: 1.45rem;
  letter-spacing: -.045em;
  text-decoration: none;
}
.gh-footer-v1__sections ul { display: flex; gap: clamp(18px, 2.4vw, 34px); margin: 0; padding: 0; list-style: none; }
.gh-footer-v1__sections a,
.gh-footer-v1__social { font-size: .64rem; text-decoration: none; }
.gh-footer-v1__social { justify-self: end; }
.gh-footer-v1__bottom {
  min-height: 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #777168;
  font-size: .58rem;
}
.gh-footer-v1__bottom .gh-publication-nav--footer { display: flex; gap: 18px; margin: 0; padding: 0; list-style: none; }
.gh-footer-v1__bottom .gh-publication-nav--footer a { color: inherit; text-decoration: none; font-size: inherit; }

@media (max-width: 1220px) {
  .gh-home-hero__grid { grid-template-columns: minmax(390px, 38%) minmax(0, 62%); }
  .gh-home-hero__title { font-size: clamp(3.05rem, 4vw, 3.65rem); }
  .gh-home-hero__title.gh-title-length--long { font-size: clamp(2.75rem, 3.5vw, 3.25rem); }
  .gh-home-hero__title.gh-title-length--xl { font-size: clamp(2.5rem, 3.15vw, 2.95rem); }
  .gh-home-travel__grid { grid-template-columns: minmax(0, 58%) minmax(360px, 42%); }
  .gh-home-music__grid { grid-template-columns: minmax(0,1fr) minmax(290px,.72fr); }
  .gh-home-music__more { display: none; }
}

@media (max-width: 900px) {
  .gh-header-v1__masthead { min-height: 76px; }
  .gh-header-v1__left { gap: 0; }
  .gh-header-v1__utility { display: none; }
  .gh-header-v1__wordmark { font-size: 1.9rem; }
  .gh-header-v1__search { display: none; }
  .gh-header-v1__navwrap { display: none; }
  .gh-header-v1__navwrap.is-open { display: block; }
  .gh-header-v1__nav { min-height: auto; flex-direction: column; gap: 0; padding: 8px 0 14px; }
  .gh-header-v1__nav li { display: block; }
  .gh-header-v1__nav a { min-height: 43px; border-bottom: 1px solid var(--gh-line); }
  .gh-mobile-publication { display: block; padding-bottom: 16px; }

  .gh-home-hero__grid,
  .gh-home-travel__grid,
  .gh-home-culture__grid { grid-template-columns: 1fr; padding-right: var(--gh-home-gutter); }
  .gh-home-hero__copy { order: 2; padding: 36px 0 48px; }
  .gh-home-hero__media { order: 1; min-height: 0; aspect-ratio: 16/11; }
  .gh-home-hero__media img { min-height: 0; height: 100%; }
  .gh-home-hero__title,
  .gh-home-hero__title.gh-title-length--long,
  .gh-home-hero__title.gh-title-length--xl { max-width: 720px; font-size: clamp(3rem, 8.5vw, 4.65rem); }
  .gh-home-latest__grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .gh-home-travel { padding-inline: var(--gh-home-gutter); }
  .gh-home-travel__media { min-height: 0; aspect-ratio: 16/10; }
  .gh-home-travel__media img { min-height: 0; height: 100%; }
  .gh-home-travel__copy { border-left: 0; padding: 38px 0 46px; }
  .gh-home-music__grid,
  .gh-home-music__grid--simple { grid-template-columns: 1fr; }
  .gh-home-music__media { aspect-ratio: 16/10; }
  .gh-home-secondary__grid { grid-template-columns: 1fr 1fr; }
  .gh-home-culture__copy { padding: 42px 0 30px; }
  .gh-home-culture__media { min-height: 0; aspect-ratio: 16/8; }
  .gh-footer-v1__main { grid-template-columns: 1fr; justify-items: center; padding: 24px 0; }
  .gh-footer-v1__wordmark,
  .gh-footer-v1__social { justify-self: center; }
}

@media (max-width: 620px) {
  :root { --gh-home-gutter: 20px; }
  .gh-header-v1__masthead { min-height: 70px; }
  .gh-header-v1__wordmark { font-size: 1.72rem; }
  .gh-home-hero__title,
  .gh-home-hero__title.gh-title-length--long,
  .gh-home-hero__title.gh-title-length--xl { font-size: clamp(2.8rem, 12.5vw, 4rem); line-height: .93; }
  .gh-home-hero__dek { font-size: .92rem; }
  .gh-home-latest__grid,
  .gh-home-latest__grid--3,
  .gh-home-latest__grid--2 { grid-template-columns: 1fr; gap: 38px; }
  .gh-home-card__image { aspect-ratio: 16/10; }
  .gh-home-card h3,
  .gh-home-card h3.gh-title-length--long,
  .gh-home-card h3.gh-title-length--xl { font-size: 1.9rem; }
  .gh-home-travel__copy h2,
  .gh-home-travel__copy h2.gh-title-length--long,
  .gh-home-travel__copy h2.gh-title-length--xl { font-size: clamp(2.9rem, 12vw, 4rem); }
  .gh-home-music__copy h2,
  .gh-home-music__copy h2.gh-title-length--long,
  .gh-home-music__copy h2.gh-title-length--xl { font-size: clamp(2.9rem, 12vw, 4rem); }
  .gh-home-secondary__grid { grid-template-columns: 1fr; gap: 36px; }
  .gh-home-secondary__image { aspect-ratio: 16/9; }
  .gh-home-culture__copy h2,
  .gh-home-culture__copy h2.gh-title-length--long,
  .gh-home-culture__copy h2.gh-title-length--xl { font-size: 2.75rem; }
  .gh-footer-v1__sections ul { flex-wrap: wrap; justify-content: center; }
  .gh-footer-v1__bottom { display: block; text-align: center; padding: 18px 0 24px; }
  .gh-footer-v1__bottom .gh-publication-nav--footer { justify-content: center; flex-wrap: wrap; margin-bottom: 12px; }
}

/* ==========================================================
   Good Hours v1.3 — Editorial article sidebar
   ========================================================== */
.gh-article-layout {
  display: grid;
  grid-template-columns: minmax(0, var(--gh-reading)) minmax(250px, 310px);
  justify-content: center;
  align-items: start;
  column-gap: clamp(54px, 6vw, 96px);
  padding-bottom: clamp(72px, 8vw, 118px);
}
.gh-article-layout .entry-content {
  min-width: 0;
  padding-bottom: 0;
}
.gh-article-layout .entry-content > * {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.gh-article-layout .entry-content > .alignwide,
.gh-article-layout .entry-content > .alignfull {
  max-width: 100%;
  width: 100%;
}
.gh-article-sidebar {
  min-width: 0;
  font-family: var(--gh-sans);
}
.gh-article-sidebar__sticky {
  position: sticky;
  top: 32px;
}
.admin-bar .gh-article-sidebar__sticky { top: 64px; }
.gh-sidebar-block {
  padding: 22px 0 28px;
  border-top: 1px solid var(--gh-line-strong);
}
.gh-sidebar-block + .gh-sidebar-block { margin-top: 26px; }
.gh-sidebar-heading { margin-bottom: 8px; }
.gh-sidebar-eyebrow {
  margin: 0 0 9px;
  color: var(--gh-pine);
  font-size: .62rem;
  font-weight: 750;
  letter-spacing: .15em;
  line-height: 1.2;
  text-transform: uppercase;
}
.gh-sidebar-block h2 {
  margin: 0;
  font-family: var(--gh-serif);
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.gh-sidebar-stories { margin-top: 19px; }
.gh-sidebar-story {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--gh-line);
}
.gh-sidebar-story:first-child { border-top: 0; padding-top: 0; }
.gh-sidebar-story__image {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--gh-paper-deep);
}
.gh-sidebar-story__image img { width: 100%; height: 100%; object-fit: cover; }
.gh-sidebar-story__copy h3 {
  margin: 0 0 7px;
  font-family: var(--gh-serif);
  font-size: 1.03rem;
  font-weight: 400;
  letter-spacing: -.025em;
  line-height: 1.12;
}
.gh-sidebar-story__copy h3 a { text-decoration: none; }
.gh-sidebar-story__copy p {
  margin: 0;
  color: var(--gh-muted);
  font-size: .62rem;
  letter-spacing: .02em;
  line-height: 1.3;
}
.gh-sidebar-more {
  display: inline-block;
  margin-top: 13px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(168,141,96,.72);
  color: var(--gh-ink);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .02em;
  text-decoration: none;
}
.gh-sidebar-more:hover { color: var(--gh-pine); }
.gh-sidebar-about {
  padding: 28px 26px 29px;
  border-top: 0;
  background: var(--gh-pine);
  color: var(--gh-paper);
}
.gh-sidebar-about .gh-sidebar-eyebrow { color: #c9d3cf; }
.gh-sidebar-about h2 {
  color: var(--gh-paper);
  font-size: clamp(1.8rem, 2.35vw, 2.35rem);
}
.gh-sidebar-about > p:not(.gh-sidebar-eyebrow) {
  margin: 16px 0 0;
  color: rgba(246,243,238,.78);
  font-family: var(--gh-serif);
  font-size: .98rem;
  line-height: 1.5;
}
.gh-sidebar-about .gh-sidebar-more {
  margin-top: 20px;
  border-bottom-color: rgba(246,243,238,.45);
  color: var(--gh-paper);
}
.gh-sidebar-about .gh-sidebar-more:hover { color: #fff; }

@media (max-width: 1050px) {
  .gh-article-layout {
    grid-template-columns: minmax(0, var(--gh-reading)) minmax(230px, 270px);
    column-gap: 46px;
  }
}
@media (max-width: 860px) {
  .gh-article-layout {
    grid-template-columns: minmax(0, var(--gh-reading));
    row-gap: 10px;
  }
  .gh-article-sidebar { margin-top: -32px; }
  .gh-article-sidebar__sticky { position: static; }
  .gh-sidebar-block:first-child { margin-top: 0; }
  .gh-sidebar-about { margin-bottom: 8px; }
}
@media (max-width: 620px) {
  .gh-article-layout { padding-inline: var(--gh-gutter); }
  .gh-article-layout .entry-content { padding-inline: 0; }
  .gh-article-sidebar { margin-top: -26px; }
  .gh-sidebar-story { grid-template-columns: 84px minmax(0,1fr); }
}



/* Good Hours v1.4 — Widget-ready article sidebar */
.gh-article-sidebar .widget { margin: 0 0 26px; }
.gh-article-sidebar .widget:last-child { margin-bottom: 0; }
.gh-article-sidebar .widget-title {
  margin: 0 0 14px;
  font-family: var(--gh-serif);
  font-size: clamp(1.25rem, 1.7vw, 1.65rem);
  line-height: 1.05;
  font-weight: 400;
}
.gh-article-sidebar .widget ul { list-style: none; margin: 0; padding: 0; }
.gh-article-sidebar .widget li { border-top: 1px solid var(--gh-line); padding: 11px 0; }
.gh-article-sidebar .widget li:first-child { border-top: 0; padding-top: 0; }
.gh-article-sidebar .widget a { text-decoration: none; }
.gh-article-sidebar .widget p:last-child { margin-bottom: 0; }
.gh-article-sidebar .wp-block-search__inside-wrapper { display: flex; gap: 6px; }
.gh-article-sidebar .wp-block-search__input,
.gh-article-sidebar input[type="search"],
.gh-article-sidebar input[type="email"] {
  width: 100%;
  border: 1px solid var(--gh-line);
  background: transparent;
  padding: 10px 12px;
  font: inherit;
}
.gh-article-sidebar button,
.gh-article-sidebar .wp-block-button__link {
  border: 1px solid var(--gh-ink);
  background: var(--gh-ink);
  color: var(--gh-paper);
  padding: 10px 13px;
  border-radius: 0;
  font: inherit;
}

/* v1.6.0 — balanced editorial homepage */
.gh-home-section-head--quiet { margin-bottom: 24px; }
.gh-home-section-head--quiet h2 { font-style: normal; }
.gh-home-secondary__grid--1 { grid-template-columns: minmax(0, 1fr); max-width: 520px; }
.gh-home-secondary__grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 760px) { .gh-home-secondary__grid--2 { grid-template-columns: 1fr; } }
