
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  background: #fff;
  font-family: 'Open Sans', sans-serif;
  color: #333;
}

/* ── Header ── */
header {
  text-align: center;
  padding: 28px 16px 0;
}

/* Logo image */
.logo {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  text-decoration: none;
}
.site-logo {
  max-height: 70px;
  width: auto;
  display: inline-block;
}

/* ── Nav — matches live site: Open Sans, #8e8e8e, uppercase, 1.17em ── */
.main-nav {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #8e8e8e;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  margin: 10px 0 40px;
}
.main-nav { line-height: 1.9; }
.main-nav a { color: #8e8e8e; text-decoration: none; transition: color .15s; white-space: nowrap; padding: 0 8px; }
.main-nav a:hover, .main-nav a.active { color: #444; }

/* ── Filter tabs — matches live site: Oswald, 42px, weight 300, rgb(95,95,95) ── */
.filter-tabs {
  font-family: 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: rgb(95, 95, 95);
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  padding: 0 16px 20px;
  letter-spacing: 0;
}
.filter-tabs a {
  color: rgb(95, 95, 95);
  text-decoration: none;
  display: inline-block;
  transition: color .15s;
}
.filter-tabs a:hover { color: #222; }
.filter-tabs a.active { color: #111; }
.filter-tabs .sep { color: #bbb; margin: 0 8px; }

/* ── Photo grid — Masonry.js, 10px gutter, matches live site ── */
.photo-grid {
  margin: 0 auto;
  padding: 0;
}
/* Fixed 232px columns like live PhotoShelter site — column count falls out of
   window width fluidly (7 at ~1700px, 5 at ~1280px, 4 at ~1024px, 3 at ~768px) */
.grid-sizer { width: 232px; }
.photo-grid figure {
  width: 232px;
  margin-bottom: 10px;
  line-height: 0;
  display: block;
}
.photo-grid figure img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
.photo-grid figure a { display: block; line-height: 0; }

/* ── Gallery index ── */
.gallery-index {
  max-width: 1200px;
  margin: 32px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gallery-card { text-decoration: none; color: #333; display: block; }
.gallery-card img { width: 100%; height: 180px; object-fit: cover; display: block; }
.gallery-card h2 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-top: 6px;
  color: #555;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
}

/* ── Gallery single ── */
.gallery-header {
  text-align: center;
  padding: 24px 16px 12px;
}
.gallery-header h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: rgb(95, 95, 95);
  text-transform: uppercase;
}
.back-link { margin-top: 8px; font-size: 0.78rem; }
.back-link a { color: #aaa; text-decoration: none; font-family: 'Open Sans', sans-serif; }
.back-link a:hover { color: #666; }

/* Gallery single uses same 200px column Masonry grid */

/* ── Blog / post list ── */
.post-list-page {
  max-width: 860px;
  margin: 32px auto;
  padding: 0 20px 80px;
}
.post-list-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.post-list { list-style: none; }
.post-list li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: flex-start;
}
.post-list .thumb {
  flex: 0 0 120px;
  width: 120px;
  height: 80px;
  object-fit: cover;
  display: block;
  background: #f5f5f5;
}
.post-list .thumb-placeholder {
  flex: 0 0 120px;
  width: 120px;
  height: 80px;
  background: #f5f5f5;
}
.post-list .post-info { flex: 1; }
.post-list .post-info a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: #6babd7;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: 0.04em;
}
.post-list .post-info a:hover { color: #333; }
.post-list .meta { font-size: 0.72rem; color: #aaa; font-family: 'Open Sans', sans-serif; }

/* ── Blog post ── */
.blog-post {
  max-width: 760px;
  margin: 32px auto;
  padding: 0 20px 80px;
}
.blog-post .post-hero {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 28px;
}
.blog-post h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 300;
  color: #6babd7;
  text-transform: uppercase;
  margin-bottom: 6px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.blog-post .post-meta { color: #bbb; font-size: 0.75rem; margin-bottom: 28px; font-family: 'Open Sans', sans-serif; }
.blog-post .post-content {
  line-height: 1.8;
  font-size: 0.95rem;
  color: #444;
  font-family: 'Open Sans', sans-serif;
}
.blog-post .post-content img { max-width: 100%; height: auto; display: block; margin: 1.5em 0; }
.blog-post .post-content p { margin-bottom: 1.2em; }
.blog-post .post-content h2,
.blog-post .post-content h3 { margin: 1.8em 0 0.5em; font-weight: 600; font-family: 'Oswald', sans-serif; }
.blog-post .post-content a { color: #6babd7; }
.blog-post .post-content ul, .blog-post .post-content ol { margin: 0 0 1.2em 1.5em; }
.blog-post .post-content li { margin-bottom: .4em; }

/* ── Comments ── */
.comments {
  margin-top: 52px;
  border-top: 1px solid #eee;
  padding-top: 28px;
}
.comments h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.comment { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #f5f5f5; }
.comment-meta { font-size: 0.72rem; color: #bbb; margin-bottom: 6px; font-family: 'Open Sans', sans-serif; }
.comment-author { font-weight: 600; color: #666; }
.comment-body { font-size: 0.88rem; line-height: 1.6; color: #555; font-family: 'Open Sans', sans-serif; }

/* ── Static pages ── */
.static-page {
  max-width: 760px;
  margin: 32px auto;
  padding: 0 20px 80px;
}
.static-page h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: #aaa;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.static-page p { line-height: 1.8; font-size: 0.95rem; color: #444; margin-bottom: 1.2em; font-family: 'Open Sans', sans-serif; }
.static-page a { color: #6babd7; }
.static-page img { max-width: 100%; height: auto; margin: 1em 0; }

/* ── Footer ── */
footer {
  text-align: center;
  padding: 36px 20px;
  font-size: 0.72rem;
  color: #ccc;
  letter-spacing: 0.06em;
  font-family: 'Open Sans', sans-serif;
}

/* ── Responsive ── */
/* Above 567px: NO grid overrides — fixed 232px columns reflow fluidly like live site */
/* Mobile — matches live site exactly: ≤567px = 2 columns */
@media (max-width: 567px) {
  .grid-sizer, .photo-grid figure { width: calc((100% - 10px) / 2); }
  .filter-tabs { font-size: 32px; line-height: 1.25; }
  .post-list li { flex-direction: column; }
  .post-list .thumb, .post-list .thumb-placeholder { width: 100%; height: 160px; flex: none; }
}

/* ── Blog layout ── */
.page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 60px;
  align-items: start;
}
.page-wrap.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 820px;
}
.sidebar-col { padding-top: 4px; }
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget h5 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { padding: 5px 0; border-bottom: 1px solid #f5f5f5; }
.sidebar-widget ul li a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.82rem;
  color: #666;
  text-decoration: none;
}
.sidebar-widget ul li a:hover { color: #6babd7; }
.sidebar-recent-img {
  display: flex; gap: 12px; padding: 8px 0;
  border-bottom: 1px solid #f5f5f5; align-items: flex-start;
}
.sidebar-recent-img img { width: 70px; height: 50px; object-fit: cover; flex-shrink: 0; }
.sidebar-recent-img a {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem; color: #666; text-decoration: none; line-height: 1.4;
}
.sidebar-recent-img a:hover { color: #6babd7; }

/* Post list (blog index) */
.post-entry {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #eee;
}
.post-entry:last-child { border-bottom: none; }
.post-entry .post-feat-img {
  width: 100%; height: auto; display: block; margin-bottom: 20px;
}
.post-entry-meta {
  display: flex; align-items: flex-start; gap: 16px; margin-bottom: 8px;
}
.post-date-block {
  text-align: center; min-width: 40px; flex-shrink: 0;
}
.post-date-block .day {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem; font-weight: 300; color: #bbb; line-height: 1;
}
.post-date-block .month {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.65rem; text-transform: uppercase; color: #bbb; letter-spacing: 0.1em;
}
.post-entry h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem; font-weight: 300; text-transform: uppercase;
  color: #6babd7; line-height: 1.2; letter-spacing: 0.04em; margin: 0;
}
.post-entry h2 a { color: inherit; text-decoration: none; }
.post-entry h2 a:hover { color: #333; }
.post-info-bar {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.72rem; color: #aaa; margin-bottom: 14px; margin-top: 4px;
}
.post-info-bar a { color: #aaa; text-decoration: none; }
.post-excerpt {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem; color: #555; line-height: 1.7;
}

/* Single post */
.single-post .post-feat-img { width: 100%; height: auto; display: block; margin-bottom: 28px; }
.single-post h1 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem; font-weight: 300; text-transform: uppercase;
  color: #6babd7; line-height: 1.2; letter-spacing: 0.04em; margin-bottom: 6px;
}
.single-post .post-info-bar { margin-bottom: 28px; }
.single-post .post-body {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem; color: #444; line-height: 1.8;
}
.single-post .post-body p { margin-bottom: 1.2em; }
.single-post .post-body h2, .single-post .post-body h3 {
  font-family: 'Oswald', sans-serif; font-weight: 400;
  margin: 2em 0 0.5em; color: #333;
}
.single-post .post-body img { max-width: 100%; height: auto; margin: 1em 0; display: block; }
.single-post .post-body a { color: #6babd7; }
.single-post .post-body ul, .single-post .post-body ol { margin: 0 0 1.2em 1.5em; }
.single-post .post-body li { margin-bottom: .4em; }
.single-post .post-tags {
  margin-top: 24px; font-family: 'Open Sans', sans-serif;
  font-size: 0.78rem; color: #aaa;
}
.single-post .post-tags a { color: #aaa; text-decoration: none; }
.single-post .post-tags a:hover { color: #6babd7; }

/* Comments on single post */
.post-comments { margin-top: 48px; border-top: 2px solid #eee; padding-top: 32px; }
.post-comments h3 {
  font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 400;
  text-transform: uppercase; letter-spacing: 0.12em; color: #888; margin-bottom: 24px;
}
.comment-item { display: flex; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #f0f0f0; }
.comment-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: #e8e8e8;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 1rem; color: #aaa; font-weight: 300;
}
.comment-body-wrap { flex: 1; }
.comment-author-line {
  font-family: 'Open Sans', sans-serif; font-size: 0.78rem; color: #aaa; margin-bottom: 6px;
}
.comment-author-line strong { color: #555; font-weight: 600; }
.comment-text {
  font-family: 'Open Sans', sans-serif; font-size: 0.88rem; color: #444; line-height: 1.6;
}

/* About page */
.about-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 80px;
}
.about-wrap h1 {
  font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 300;
  text-transform: uppercase; letter-spacing: 0.12em; color: #888;
  border-bottom: 1px solid #eee; padding-bottom: 12px; margin-bottom: 32px;
}
.about-content {
  font-family: 'Open Sans', sans-serif; font-size: 0.92rem; color: #444; line-height: 1.8;
}
.about-content img { max-width: 100%; height: auto; float: left; margin: 0 28px 20px 0; }
.about-content p { margin-bottom: 1.2em; }
.about-content a { color: #6babd7; }
.about-content::after { content: ''; display: table; clear: both; }

/* ── WP-matching blog entries (audited from Bridge child theme) ── */
.content-col { min-width: 0; }
.wp-entry { margin-bottom: 64px; }
.wp-entry .post_image { margin-bottom: 0; }
.wp-entry .post_image img { width: 100%; height: auto; display: block; }
.videoWrapper { position: relative; padding-bottom: 54.1%; height: 0; }
.videoWrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
.entry-cols { display: flex; align-items: flex-start; padding-top: 35px; }
.entry-date { flex: 0 0 auto; text-align: center; padding: 0 20px; border-right: 1px solid #ebebeb; }
.entry-date .date_day {
  display: block; font-family: 'Open Sans', sans-serif;
  font-size: 21px; font-weight: 600; color: #303030; line-height: 1; padding-bottom: 5px;
}
.entry-date .date_month {
  display: block; font-family: 'Open Sans', sans-serif;
  font-size: 11px; text-transform: uppercase; color: #bebebe; line-height: 1;
}
.entry-main { flex: 1; min-width: 0; padding-left: 20px; }
.entry-main h2.entry_title {
  font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 200;
  text-transform: uppercase; line-height: 1.25; margin: 0 0 12px;
}
.entry-main h2.entry_title a { color: #6babd7; text-decoration: none; }
.entry-main h2.entry_title a:hover { color: #296c99; }
.post_excerpt {
  font-family: 'Open Sans', sans-serif; font-size: 13px;
  color: #5f5f5f; line-height: 1.85; margin-bottom: 16px;
}
.post_info_row {
  display: flex; justify-content: space-between;
  font-family: 'Open Sans', sans-serif; font-size: 12px; color: #bebebe;
  margin-bottom: 35px;
}
.post_info_row a { color: #bebebe; text-decoration: none; }
.post_info_row a:hover { color: #6babd7; }

/* ── Pagination ── */
.wp-pagination { display: flex; gap: 8px; margin: 8px 0 40px; font-family: 'Open Sans', sans-serif; }
.wp-pagination a {
  display: inline-block; min-width: 34px; height: 34px; line-height: 34px;
  text-align: center; color: #888; text-decoration: none;
  border: 1px solid #e5e5e5; font-size: 13px;
}
.wp-pagination a.current { color: #fff; background: #6babd7; border-color: #6babd7; }
.wp-pagination a:hover:not(.current) { color: #6babd7; border-color: #6babd7; }

/* ── Sidebar widgets ── */
.sidebar-col { padding-top: 4px; }
.sidebar-widget { margin-bottom: 36px; }
.sidebar-widget h5 {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 200;
  text-transform: uppercase; color: #5f5f5f;
  border-bottom: 1px solid #eee; padding-bottom: 8px; margin-bottom: 12px;
}
.sidebar-widget ul { list-style: none; }
.sidebar-widget ul li { padding: 5px 0; border-bottom: 1px solid #f5f5f5; }
.sidebar-widget ul li a { font-family: 'Open Sans', sans-serif; font-size: 13px; color: #5f5f5f; text-decoration: none; }
.sidebar-widget ul li a:hover { color: #6babd7; }
.sidebar-recent-img { display: flex; gap: 12px; padding: 8px 0; border-bottom: 1px solid #f5f5f5; align-items: flex-start; }
.sidebar-recent-img img { width: 70px; height: 50px; object-fit: cover; flex-shrink: 0; }
.sidebar-recent-img a { font-family: 'Open Sans', sans-serif; font-size: 12px; color: #5f5f5f; text-decoration: none; line-height: 1.4; }
.sidebar-recent-img a:hover { color: #6babd7; }

/* ── Page layout ── */
.page-wrap {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 1fr 300px; gap: 60px; align-items: start;
}
.page-wrap.no-sidebar { grid-template-columns: 1fr; max-width: 860px; }

/* ── Single post ── */
.single-post .post-feat-img { width: 100%; height: auto; display: block; margin-bottom: 28px; }
.single-post h1 {
  font-family: 'Oswald', sans-serif; font-size: 28px; font-weight: 200;
  color: #6babd7; text-transform: uppercase; margin-bottom: 6px; line-height: 1.2;
}
.single-post .post-info-bar { font-size: 12px; color: #bebebe; margin-bottom: 28px; font-family: 'Open Sans', sans-serif; }
.single-post .post-info-bar a { color: #bebebe; text-decoration: none; }
.single-post .post-body { font-family: 'Open Sans', sans-serif; font-size: 13px; color: #5f5f5f; line-height: 1.85; }
.single-post .post-body p { margin-bottom: 1.2em; }
.single-post .post-body h2, .single-post .post-body h3 {
  font-family: 'Oswald', sans-serif; font-weight: 200; text-transform: uppercase;
  color: #5f5f5f; margin: 2em 0 0.5em;
}
.single-post .post-body img { max-width: 100%; height: auto; margin: 1em 0; }
.single-post .post-body a { color: #6babd7; }
.single-post .post-body ul, .single-post .post-body ol { margin: 0 0 1.2em 1.5em; }
.single-post .post-tags { margin-top: 24px; font-family: 'Open Sans', sans-serif; font-size: 12px; color: #bebebe; }
.single-post .post-tags a { color: #bebebe; text-decoration: none; }

/* ── About ── */
.about-wrap { max-width: 860px; margin: 0 auto; padding: 0 24px 60px; }

.about-content { font-family: 'Open Sans', sans-serif; font-size: 13px; color: #5f5f5f; line-height: 1.85; }
.about-content img { max-width: 100%; height: auto; float: left; margin: 0 28px 20px 0; }
.about-content p { margin-bottom: 1.2em; }
.about-content a { color: #6babd7; }
.about-content::after { content: ''; display: table; clear: both; }

/* ── Client carousel — inside container, tight ── */
.client-carousel {
  margin-top: 24px; padding: 45px 0;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.carousel-track {
  display: flex; align-items: center; gap: 64px;
  width: max-content; animation: logo-scroll 40s linear infinite;
}
.carousel-track img { height: 56px; width: auto; }
@keyframes logo-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── Contact (audited from live) ── */
.contact-wrap { padding: 0 0 0 !important; max-width: 1100px !important; }

#contact-page-bg {
  max-width: 1100px; margin: 0 auto 60px; padding: 15px 0 30px;
  background-size: cover;
}
#contact-page-bg h4 {
  font-family: 'Oswald', sans-serif; font-weight: 200; font-size: 22px;
  text-transform: uppercase; color: #5f5f5f;
  padding: 30px 30px 0;
}
.contact-page-form { padding: 30px; }
.contact-page-form p { font-family: 'Open Sans', sans-serif; font-size: 13px; color: #5f5f5f; margin-bottom: 14px; }
.cf-text, .cf-textarea {
  width: 100%; max-width: 707px; padding: 10px 12px; margin-top: 4px;
  border: 1px solid #CACACA; border-radius: 3px;
  background: transparent; font-family: 'Open Sans', sans-serif; font-size: 13px; color: #303030;
}
.cf-submit {
  border: 1px solid #5f5f5f; color: #5f5f5f; background: transparent;
  padding: 9px 26px; font-family: 'Open Sans', sans-serif; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.06em; cursor: pointer; border-radius: 3px;
}
.cf-submit:hover { background: #6babd7; border-color: #6babd7; color: #fff; }

/* ── Comments ── */
.post-comments { margin-top: 48px; border-top: 1px solid #ebebeb; padding-top: 32px; }
.post-comments h3 {
  font-family: 'Oswald', sans-serif; font-size: 20px; font-weight: 200;
  text-transform: uppercase; color: #5f5f5f; margin-bottom: 24px;
}
.comment-item { display: flex; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #f0f0f0; }
.comment-avatar {
  width: 48px; height: 48px; border-radius: 50%; background: #e8e8e8; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif; font-size: 1rem; color: #aaa; font-weight: 300;
}
.comment-body-wrap { flex: 1; }
.comment-author-line { font-family: 'Open Sans', sans-serif; font-size: 12px; color: #bebebe; margin-bottom: 6px; }
.comment-author-line strong { color: #5f5f5f; font-weight: 600; }
.comment-text { font-family: 'Open Sans', sans-serif; font-size: 13px; color: #5f5f5f; line-height: 1.7; }

@media (max-width: 567px) {
  .page-wrap { grid-template-columns: 1fr; gap: 32px; }
  .entry-cols { flex-direction: column; }
  .entry-date { display: flex; gap: 8px; align-items: baseline; border-right: none; padding: 0 0 8px; }
  .entry-main { padding-left: 0; }
  .carousel-track img { height: 48px; }
  .carousel-track { gap: 32px; }
  .about-content img { float: none; display: block; margin: 0 0 18px; }
}


/* Sidebar hidden on mobile (matches live blog) */
@media (max-width: 768px) {
  .sidebar-col { display: none; }
  .page-wrap { grid-template-columns: 1fr; }
}

/* ── Page titles — Bridge spec: 17px/600 uppercase + 22px separator ── */
.page-title { max-width: 1100px; margin: 0 auto; padding: 56px 24px 34px; }
.page-title h1 {
  font-family: 'Open Sans', sans-serif; font-size: 17px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px; color: #5f5f5f;
  line-height: 1.3; margin: 0;
}
.page-title .separator-small {
  display: block; width: 22px; height: 1px;
  background: rgba(95,95,95,0.4); margin: 10px 0 0;
}
.page-title.narrow { max-width: 860px; }

/* ── Mobile nav: tidy wrap, even rhythm ── */
@media (max-width: 567px) {
  .main-nav { line-height: 1.8; margin: 4px 0 26px; }
  .main-nav a { padding: 0 6px; }
  .site-logo { max-height: 52px; }
  header { padding-top: 20px; }
  .page-title { padding: 28px 24px 22px; }
}
