/*
Theme Name:  Chase New Media
Theme URI:   https://chasenewmedia.com
Author:      Chase New Media
Author URI:  https://chasenewmedia.com
Description: Custom WordPress theme for Chase New Media — a South Florida digital marketing agency. Features a custom homepage template and default secondary page layout.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: chasenewmedia
Tags:        marketing, agency, dark, custom-menu, featured-images, full-width-template
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --black:       #080808;
  --off-black:   #101010;
  --charcoal:    #1a1a1a;
  --dark-gray:   #252525;
  --mid-gray:    #555;
  --light-gray:  #888;
  --silver:      #c4c4c4;
  --off-white:   #eeebe5;
  --white:       #ffffff;
  --gold:        #c9a96e;
  --gold-light:  #e8c98a;
  --gold-dim:    rgba(201,169,110,0.15);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --max-width: 1300px;
  --section-pad: 6rem;
  --side-pad: 3rem;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold-light); }

/* WordPress default alignment helpers */
.alignleft  { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide  { max-width: 110%; margin-left: -5%; }
.alignfull  { width: 100vw; margin-left: calc(50% - 50vw); }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--dark-gray); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.025em;
  line-height: 0.94;
  color: var(--white);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 5.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(2.2rem, 4.5vw, 4.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.6rem, 3vw, 2.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.3rem; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
h5 { font-size: 1rem; letter-spacing: 0.08em; margin-bottom: 0.4rem; }
h6 { font-size: 0.85rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; color: var(--silver); font-size: 0.97rem; line-height: 1.82; }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; color: var(--silver); }
li { margin-bottom: 0.35rem; }

blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(255,255,255,0.03);
  font-style: italic;
  color: var(--silver);
}

code, pre {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  background: var(--charcoal);
  color: var(--gold-light);
  padding: 0.2em 0.4em;
  border-radius: 3px;
}
pre { padding: 1.25rem; overflow-x: auto; margin-bottom: 1rem; }

hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2rem 0;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════════ */
.site-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

.section-pad { padding: var(--section-pad) 0; }

.section-tag {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.2rem;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}

.btn-primary,
.wp-block-button__link,
input[type="submit"],
button[type="submit"] {
  background: var(--gold);
  color: var(--black);
}
.btn-primary:hover,
.wp-block-button__link:hover,
input[type="submit"]:hover,
button[type="submit"]:hover {
  background: var(--gold-light);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-ghost:hover { color: var(--gold); border-color: var(--gold); transform: none; }

.btn-dark {
  background: var(--black);
  color: var(--gold);
}
.btn-dark:hover { background: var(--charcoal); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════
   FORMS
═══════════════════════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="search"],
textarea,
select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--off-white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.85rem 1rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
}
input::placeholder,
textarea::placeholder { color: var(--mid-gray); }
label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.4rem;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════ */
#main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--side-pad);
  transition: background 0.4s, padding 0.3s, border-color 0.4s;
  background: transparent;
  border-bottom: 1px solid transparent;
}
#main-nav.scrolled {
  background: rgba(8,8,8,0.93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255,255,255,0.07);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}

/* Always show solid bg on inner pages */
body.page-template-default #main-nav,
body.single #main-nav,
body.archive #main-nav,
body.search #main-nav,
body.error404 #main-nav {
  background: rgba(8,8,8,0.97);
  border-bottom-color: rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  height: 40px;
  width: auto;
  /* filter: invert(1) brightness(2); */
  display: block;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--white);
}

/* Desktop nav links */
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links .current-menu-item > a { color: var(--gold); }

.nav-cta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 0.55rem 1.3rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); color: var(--black); transform: translateY(-1px); }

/* ─── DROPDOWN MENUS ─── */

/* Parent li that has children */
.nav-links .has-dropdown {
  position: relative;
}

/* The chevron indicator */
.nav-chevron {
  display: inline-block;
  font-size: 0.45rem;
  margin-left: 0.4rem;
  vertical-align: middle;
  transition: transform 0.25s ease;
  color: var(--gold);
  pointer-events: none;
}

/* Dropdown panel */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 210px;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.09);
  border-top: 2px solid var(--gold);
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 300;
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
}

/* Tiny arrow notch at the top of the dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--gold);
}

/* Open state */
.has-dropdown.dropdown-open > .nav-dropdown,
.has-dropdown:hover > .nav-dropdown,
.has-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* Rotate chevron when open */
.has-dropdown.dropdown-open > a .nav-chevron,
.has-dropdown:hover > a .nav-chevron,
.has-dropdown:focus-within > a .nav-chevron {
  transform: rotate(180deg);
}

/* Dropdown items */
.nav-dropdown li {
  margin: 0;
  padding: 0;
}

.nav-dropdown li a {
  display: block;
  padding: 0.65rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s, background 0.18s, padding-left 0.18s;
  border-left: 2px solid transparent;
}

.nav-dropdown li a:hover,
.nav-dropdown li.current-menu-item > a {
  color: var(--gold);
  background: rgba(201,169,110,0.07);
  padding-left: 1.5rem;
  border-left-color: var(--gold);
}

/* Second-level (nested) dropdown */
.nav-dropdown--sub {
  top: 0;
  left: calc(100% + 4px);
  transform: translateX(0) translateY(-6px);
}
.nav-dropdown--sub::before { display: none; }

.nav-dropdown li:hover > .nav-dropdown--sub,
.nav-dropdown li.dropdown-open > .nav-dropdown--sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) translateY(0);
}

/* Mobile drawer dropdown — accordion style */
.nav-drawer .has-dropdown > a { position: relative; }
.nav-drawer .nav-dropdown {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  background: rgba(255,255,255,0.04);
  border: none;
  border-top: none;
  border-left: 2px solid var(--gold);
  box-shadow: none;
  min-width: auto;
  padding: 0.25rem 0;
  margin: 0.4rem 0 0.4rem 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.nav-drawer .nav-dropdown::before { display: none; }

.nav-drawer .has-dropdown.dropdown-open > .nav-dropdown {
  max-height: 500px;
  opacity: 1;
}

.nav-drawer .nav-dropdown li a {
  font-size: 0.72rem;
  padding: 0.55rem 1rem;
  color: rgba(255,255,255,0.55);
  border-left: none;
}
.nav-drawer .nav-dropdown li a:hover {
  color: var(--gold);
  padding-left: 1.25rem;
  background: transparent;
  border-left: none;
}

/* Trigger link highlight when dropdown is open */
.nav-links .has-dropdown.dropdown-open > a,
.nav-links .has-dropdown:hover > a {
  color: var(--gold);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 210;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu drawer */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 5rem 2rem 2rem;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-links {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.nav-drawer .nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
}
.nav-drawer .nav-cta { margin-top: 1rem; padding: 0.8rem 2.5rem; font-size: 0.75rem; }

/* ═══════════════════════════════════════════════════════
   HERO (Homepage)
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://chasenewmedia.com/wp-content/uploads/2026/04/wave-hero-image.webp');
  background-size: cover;
	background-size: 100%;
  background-position: center 30%;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,0.9) 0%, rgba(8,8,8,0.72) 55%, rgba(8,8,8,0.45) 100%);
}
.xxhero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero-accent-bar {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  z-index: 2;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 9rem var(--side-pad) 5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.hero-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease forwards;
}
.hero-tag::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(3.2rem, 7.5vw, 7.5rem);
  line-height: 0.9;
  color: var(--white);
  margin-bottom: 1.6rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s ease forwards;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero h1 .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.4);
  color: transparent;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.85;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s ease forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s ease forwards;
}
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.35s ease forwards;
}
.stat-card {
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-left: 3px solid var(--gold);
  padding: 1.4rem 1.75rem;
  transition: background 0.3s;
}
.stat-card:hover { background: rgba(20,20,20,0.8); }
.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-top: 0.3rem;
}
.hero-insta {
  background: rgba(8,8,8,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.hero-insta:hover { border-color: rgba(201,169,110,0.5); background: rgba(20,20,20,0.8); }
.insta-icon-wrap {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
}
.insta-icon-wrap svg { width: 22px; height: 22px; fill: white; }
.insta-handle { font-family: var(--font-mono); font-size: 0.72rem; color: var(--off-white); letter-spacing: 0.04em; }
.insta-sub { font-size: 0.72rem; color: var(--light-gray); margin-top: 1px; }
.insta-arr { color: var(--gold); font-size: 1.1rem; margin-left: auto; }

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.9s ease forwards;
}
.scroll-hint span {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

/* ═══════════════════════════════════════════════════════
   TICKER
═══════════════════════════════════════════════════════ */
.ticker-wrap { background: var(--gold); overflow: hidden; padding: 0.6rem 0; }
.ticker-track {
  display: flex;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  color: var(--black);
  padding: 0 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
}
.ticker-item::after { content: '◆'; font-size: 0.45rem; opacity: 0.45; }

/* ═══════════════════════════════════════════════════════
   SERVICES SECTION
═══════════════════════════════════════════════════════ */
.services-bg { background: var(--off-black); padding: var(--section-pad) 0; }
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.services-intro { color: var(--silver); font-size: 0.97rem; max-width: 380px; align-self: end; line-height: 1.8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
}
.service-card {
  background: var(--off-black);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.service-card:hover { background: #181818; }
.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(255,255,255,0.045);
  line-height: 1;
  margin-bottom: 0.75rem;
  transition: color 0.3s;
}
.service-card:hover .service-num { color: rgba(201,169,110,0.18); }
.service-icon-line {
  width: 36px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  transition: width 0.3s;
}
.service-card:hover .service-icon-line { width: 52px; }
.service-title {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.service-desc { font-size: 0.86rem; color: var(--light-gray); line-height: 1.8; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.7rem; }

/* ═══════════════════════════════════════════════════════
   WORK / SAMPLES SECTION
═══════════════════════════════════════════════════════ */
.work-bg { background: var(--black); padding: var(--section-pad) 0; }
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3.5rem;
}
.work-image-wrap { position: relative; }
.work-image-wrap img {
  width: 100%;
  display: block;
  border: 1px solid rgba(255,255,255,0.07);
}
.work-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 1.5rem;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.work-text h2 { margin-bottom: 1.25rem; }
.work-text p { color: var(--silver); font-size: 0.95rem; line-height: 1.85; margin-bottom: 1rem; }
.work-industries { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0 2rem; }
.industry-pill {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,169,110,0.3);
  padding: 0.35rem 0.85rem;
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION
═══════════════════════════════════════════════════════ */
.about-bg { background: var(--charcoal); padding: var(--section-pad) 0; position: relative; overflow: hidden; }
.about-bg::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-visual { position: relative; }
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) contrast(1.05);
  border: 1px solid rgba(255,255,255,0.07);
}
.about-badge {
  position: absolute;
  top: -1.5rem; right: -1.5rem;
  width: 108px; height: 108px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--black);
}
.about-badge-num { font-family: var(--font-display); font-size: 2.6rem; line-height: 1; }
.about-badge-label {
  font-family: var(--font-mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  margin-top: 2px;
}
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: var(--silver); margin-bottom: 1.1rem; font-size: 0.95rem; }
.about-pillars { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: rgba(201,169,110,0.3); }
.pillar-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin-top: 0.6rem; flex-shrink: 0; }
.pillar-title {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 0.2rem;
}
.pillar-desc { font-size: 0.83rem; color: var(--light-gray); }

/* ═══════════════════════════════════════════════════════
   INSTAGRAM SECTION
═══════════════════════════════════════════════════════ */
.insta-bg { background: var(--off-black); padding: var(--section-pad) 0; }
.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.insta-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  padding: 0.8rem 1.6rem;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  white-space: nowrap;
}
.insta-follow-btn:hover { opacity: 0.9; transform: translateY(-2px); color: var(--white); }
.insta-follow-btn svg { width: 15px; height: 15px; fill: white; flex-shrink: 0; }
.insta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; }
.insta-post { aspect-ratio: 1; position: relative; overflow: hidden; background: var(--dark-gray); }
.insta-post img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) contrast(1.05);
  transition: transform 0.5s ease, filter 0.4s;
}
.insta-post:hover img { transform: scale(1.06); filter: none; }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  padding: 1.25rem;
  text-align: center;
}
.insta-post:hover .insta-overlay { opacity: 1; }
.insta-overlay-tag {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.insta-overlay-caption { font-size: 0.78rem; color: var(--silver); line-height: 1.5; }

/* ═══════════════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════════════ */
.process-bg { background: var(--black); padding: var(--section-pad) 0; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  margin-top: 3.5rem;
}
.process-step {
  background: var(--black);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.process-step:hover { background: #0e0e0e; }
.process-step-ghost {
  position: absolute;
  right: 0.5rem; top: -0.5rem;
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  user-select: none;
}
.process-step-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.process-step-desc { font-size: 0.85rem; color: var(--light-gray); line-height: 1.75; }

/* ═══════════════════════════════════════════════════════
   PROOF STRIP
═══════════════════════════════════════════════════════ */
.proof-strip {
  background: var(--off-black);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.proof-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.25rem var(--side-pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.proof-item {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.18);
  text-transform: uppercase;
  transition: color 0.2s;
  cursor: default;
}
.proof-item:hover { color: rgba(255,255,255,0.42); }

/* ═══════════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════════ */
.cta-band { background: var(--gold); position: relative; overflow: hidden; }
.cta-band::before {
  content: 'CNM';
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 20rem;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}
.cta-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem var(--side-pad);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 { color: var(--black); font-size: clamp(2.2rem, 4.5vw, 4.5rem); margin-bottom: 0.5rem; }
.cta-inner p { color: rgba(0,0,0,0.52); font-size: 1rem; max-width: 480px; }
.cta-section-tag {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cta-section-tag::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: rgba(0,0,0,0.4);
}

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#colophon {
  background: var(--off-black);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem var(--side-pad) 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo img {
  height: 46px;
  width: auto;
  filter: invert(1) brightness(2);
  margin-bottom: 1rem;
  display: block;
}
.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand-desc { font-size: 0.84rem; color: var(--light-gray); max-width: 260px; line-height: 1.75; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--light-gray);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.social-link svg { width: 14px; height: 14px; fill: currentColor; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.84rem; color: var(--light-gray); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.2); }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ═══════════════════════════════════════════════════════
   SECONDARY PAGE (default page template)
═══════════════════════════════════════════════════════ */

/* Page hero banner */
.page-hero {
  padding: 9rem var(--side-pad) 4rem;
  background: var(--off-black);
	 background: orange;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 6rem);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero .page-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.8;
}
/* Breadcrumb */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .sep { opacity: 0.4; }

/* Page content layout */
.page-content-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem var(--side-pad);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 5rem;
  align-items: start;
}
.page-content-wrap.no-sidebar {
  grid-template-columns: 1fr;
  max-width: 860px;
}

/* Main content area */
.entry-content h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); margin-top: 2.5rem; margin-bottom: 1rem; }
.entry-content h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); margin-top: 2rem; margin-bottom: 0.75rem; }
.entry-content p { color: var(--silver); }
.entry-content img { margin: 1.5rem 0; border: 1px solid rgba(255,255,255,0.07); }
.entry-content ul, .entry-content ol { color: var(--silver); margin-bottom: 1rem; }
.entry-content li { color: var(--silver); }
.entry-content a { color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.3); }
.entry-content a:hover { color: var(--gold-light); border-color: var(--gold); }
.entry-content .wp-block-image { margin: 1.5rem 0; }
.entry-content .wp-block-quote { margin: 2rem 0; }
.entry-content .wp-block-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.entry-content .wp-block-table th,
.entry-content .wp-block-table td {
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 0.9rem;
  color: var(--silver);
  text-align: left;
}
.entry-content .wp-block-table th { color: var(--off-white); background: rgba(255,255,255,0.04); }

/* Sidebar */
.page-sidebar { position: sticky; top: 7rem; }
.sidebar-widget {
  background: var(--off-black);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget-title {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { padding: 0.45rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a { font-size: 0.85rem; color: var(--light-gray); text-decoration: none; transition: color 0.2s; }
.sidebar-widget ul li a:hover { color: var(--gold); }

/* CTA sidebar widget */
.sidebar-cta {
  background: var(--gold);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.sidebar-cta h3 {
  font-size: 1.4rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.sidebar-cta p { font-size: 0.83rem; color: rgba(0,0,0,0.55); margin-bottom: 1.25rem; }
.sidebar-cta .btn-dark { display: block; text-align: center; }

/* ═══════════════════════════════════════════════════════
   BLOG POSTS & ARCHIVE
═══════════════════════════════════════════════════════ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 3rem;
}
.post-card {
  background: var(--off-black);
  padding: 2rem;
  transition: background 0.3s;
}
.post-card:hover { background: #181818; }
.post-card-thumb { aspect-ratio: 16/9; overflow: hidden; margin-bottom: 1.25rem; background: var(--dark-gray); }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }
.post-card-meta {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.post-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  letter-spacing: 0.03em;
  color: var(--white);
  margin-bottom: 0.75rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.post-card-title:hover { color: var(--gold); }
.post-card-excerpt { font-size: 0.83rem; color: var(--light-gray); line-height: 1.7; margin-bottom: 1.2rem; }
.post-card-link {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s;
}
.post-card-link:hover { gap: 0.7rem; }

/* ═══════════════════════════════════════════════════════
   COMMENTS
═══════════════════════════════════════════════════════ */
.comments-area {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.comments-title { font-size: 1.5rem; margin-bottom: 2rem; }
.comment-list { list-style: none; padding: 0; }
.comment { padding: 1.5rem; border: 1px solid rgba(255,255,255,0.06); margin-bottom: 1rem; }
.comment-author { font-family: var(--font-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--silver); margin-bottom: 0.5rem; }
.comment-content p { font-size: 0.9rem; }
.comment-reply-link { font-family: var(--font-mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════════════
   KEYFRAMES
═══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.18); }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — TABLET  (max 1024px)
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root {
    --section-pad: 5rem;
    --side-pad: 2rem;
  }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Hero */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 8rem;
    padding-bottom: 4rem;
  }
  .hero-right {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stat-card { flex: 1 1 160px; }
  .hero-insta { flex: 1 1 100%; }

  /* Services */
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-intro { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  /* Work */
  .work-grid { grid-template-columns: 1fr; gap: 3rem; }
  .work-image-badge { right: 0; bottom: -1rem; }

  /* About */
  .about-split { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-main { aspect-ratio: 16/9; }
  .about-badge { top: auto; bottom: -1.5rem; right: 1rem; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  /* CTA */
  .cta-inner { grid-template-columns: 1fr; gap: 2rem; }

  /* Page content */
  .page-content-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .page-sidebar { position: static; }

  /* Posts grid */
  .posts-grid { grid-template-columns: repeat(2, 1fr); }

  /* Proof strip */
  .proof-inner { gap: 2.5rem; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (max 640px)
═══════════════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --section-pad: 4rem;
    --side-pad: 1.25rem;
  }

  /* Nav */
  #main-nav { padding-left: 1.25rem; padding-right: 1.25rem; }
  nav.scrolled { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Hero */
  .hero-inner {
    padding-top: 7rem;
    padding-bottom: 3rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-right { flex-direction: column; }
  .stat-card { flex: 1 1 auto; }
  .scroll-hint { display: none; }

  /* Ticker */
  .ticker-item { font-size: 0.8rem; padding: 0 1.5rem; }

  /* Services grid */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem 1.5rem; }

  /* Work */
  .work-grid { gap: 2.5rem; }
  .work-image-badge { display: none; }

  /* About */
  .about-img-main { aspect-ratio: 4/3; }
  .about-badge { width: 90px; height: 90px; top: auto; bottom: -1rem; right: 0.5rem; }
  .about-badge-num { font-size: 2rem; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-header { flex-direction: column; align-items: flex-start; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }
  .process-step { padding: 2rem 1.5rem; }

  /* Proof strip */
  .proof-inner { gap: 1.5rem; padding: 1.5rem var(--side-pad); }
  .proof-item { font-size: 0.85rem; }

  /* CTA */
  .cta-inner { padding: 3.5rem 1.25rem; }
  .cta-band::before { font-size: 10rem; right: -1rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Page hero */
  .page-hero { padding: 8rem 1.25rem 3rem; }
  .page-hero h1 { font-size: clamp(2.2rem, 10vw, 4rem); }

  /* Posts */
  .posts-grid { grid-template-columns: 1fr; }

  /* Page content */
  .page-content-wrap { padding: 3rem 1.25rem; }

  /* h2 sizing */
  h2 { font-size: clamp(2rem, 9vw, 3.5rem); }
}

/* ═══════════════════════════════════════════════════════
   PRINT
═══════════════════════════════════════════════════════ */
@media print {
  #main-nav, .ticker-wrap, .scroll-hint, .hero-right { display: none; }
  body { background: white; color: black; }
  .hero { min-height: auto; padding: 2rem 0; }
}
