/* ═══ BARBERS PENRITH — SHARED STYLES ═══ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --copper: #C87941;
  --copper-light: #DA9460;
  --copper-dark: #A86030;
  --copper-glow: rgba(200,121,65,0.3);
  --black: #0B0B0D;
  --black-warm: #111113;
  --charcoal: #19191C;
  --charcoal-light: #222225;
  --concrete: #161618;
  --cream: #D0D0D3;
  --cream-dark: #C0C0C3;
  --white: #E8E8EB;
  --text-light: #96969A;
  --text-mid: #68686C;
  --gold-star: #D4A44C;
  --ff-display: 'Stardos Stencil', Georgia, serif;
  --ff-body: 'Outfit', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--cream);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 512px 512px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ─── LIMEWASH / CONCRETE TEXTURE ─── */
.limewash-dark {
  position: relative;
  background: var(--concrete) !important;
}
.limewash-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 20%, rgba(255,255,255,0.06), transparent 70%),
    radial-gradient(ellipse 60% 70% at 80% 15%, rgba(255,255,255,0.04), transparent 65%),
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(ellipse 50% 65% at 90% 60%, rgba(255,255,255,0.035), transparent 55%),
    radial-gradient(ellipse 65% 55% at 25% 65%, rgba(255,255,255,0.045), transparent 60%),
    radial-gradient(ellipse 55% 40% at 65% 35%, rgba(255,255,255,0.03), transparent 50%),
    radial-gradient(ellipse 90% 45% at 45% 5%, rgba(255,255,255,0.025), transparent 55%);
}
.limewash-dark > * { position: relative; z-index: 1; }

.limewash-light {
  position: relative;
  background: #C8C8CB !important;
}
.limewash-light::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 60% at 15% 25%, rgba(255,255,255,0.6), transparent 65%),
    radial-gradient(ellipse 60% 55% at 75% 20%, rgba(255,255,255,0.45), transparent 60%),
    radial-gradient(ellipse 65% 50% at 40% 75%, rgba(255,255,255,0.5), transparent 55%),
    radial-gradient(ellipse 50% 45% at 85% 55%, rgba(255,255,255,0.35), transparent 50%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(0,0,0,0.06), transparent 55%),
    radial-gradient(ellipse 55% 60% at 90% 45%, rgba(0,0,0,0.04), transparent 50%),
    radial-gradient(ellipse 80% 40% at 55% 10%, rgba(0,0,0,0.03), transparent 45%);
}
.limewash-light > * { position: relative; z-index: 1; }

/* ─── NAVIGATION ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 3rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--text-mid);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--copper);
  color: var(--copper) !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--copper) !important;
  color: var(--black) !important;
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-copper { background: var(--copper); color: var(--black); }
.btn-copper:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,121,65,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transform: translateY(-2px);
}
/* Alias for agents that used btn-primary */
.btn-primary { background: var(--copper); color: var(--black); }
.btn-primary:hover {
  background: var(--copper-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,121,65,0.3);
}

/* ─── LAYOUT ─── */
.section { padding: 7rem 2rem; position: relative; }
.section-dark { background: var(--black-warm); }
.section-darker { background: var(--black); }
.section-light { background: var(--cream); color: var(--charcoal); }
.container { max-width: 1200px; margin: 0 auto; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  display: block;
}
.section-light .section-label { color: var(--text-mid); }
.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.section-light .section-title { color: var(--black); }
.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-mid);
  max-width: 550px;
}
.section-light .section-subtitle { color: #6A6560; }
.divider-copper {
  width: 50px; height: 2px;
  background: var(--text-mid);
  margin: 1.5rem 0;
}

/* ─── BREADCRUMBS ─── */
.breadcrumbs {
  padding: 1rem 2rem;
  padding-top: 84px;
  background: var(--black);
}
.breadcrumbs ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.78rem;
  color: var(--text-mid);
}
.breadcrumbs a {
  color: var(--text-light);
  transition: color 0.3s;
}
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs .sep { margin: 0 0.2rem; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  padding: 5rem 2rem 4rem;
  text-align: center;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.02) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─── FEATURE STRIP (area pages) ─── */
.feature-strip {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
}
.feature-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature-item {
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
}
.feature-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.05);
}
.feature-item svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  margin: 0 auto 0.8rem;
}
.feature-value {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}
.feature-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.3rem;
}

/* ─── CONTENT SECTIONS (area pages) ─── */
.content-section {
  padding: 5rem 2rem;
  position: relative;
}
.content-section:nth-child(even) {
  background: var(--black-warm);
}
.content-inner {
  max-width: 900px;
  margin: 0 auto;
}
.content-inner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.content-inner p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.content-inner a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── SERVICES QUICK LIST (area pages) ─── */
.services-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin: 2rem 0;
}
.service-quick-item {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s;
}
.service-quick-item:hover {
  border-color: rgba(255,255,255,0.15);
}
.service-quick-name {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--cream);
}
.service-quick-price {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
}

/* ─── CTA BANNER ─── */
.cta-banner {
  padding: 5rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black) 50%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner .container,
.cta-banner .cta-inner { position: relative; z-index: 1; }
.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.cta-banner p {
  font-size: 1rem;
  color: var(--text-mid);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-banner p a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── CONTENT BLOCKS (blog/service pages) ─── */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.content-block h2 {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  margin: 3rem 0 1rem;
}
.content-block h3 {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin: 2rem 0 0.8rem;
}
.content-block p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.2rem;
}
.content-block ul, .content-block ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
  line-height: 1.8;
}
.content-block li { margin-bottom: 0.4rem; }
.content-block a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}
.content-block a:hover { color: var(--white); }
.content-block strong { color: var(--cream); font-weight: 600; }

/* ─── PRICING TABLE ─── */
.price-table {
  width: 100%;
  margin: 1.5rem 0 2rem;
  border-collapse: collapse;
}
.price-table th {
  text-align: left;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.price-table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-light);
  font-size: 0.95rem;
}
.price-table td:last-child {
  text-align: right;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

/* ─── FAQ ─── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-body);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--cream);
  transition: color 0.3s;
}
.faq-q:hover { color: var(--white); }
.faq-q .icon {
  flex-shrink: 0;
  width: 20px; height: 20px;
  color: var(--text-light);
  transition: transform 0.3s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding-bottom: 1.5rem;
}
.faq-a p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.faq-a a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ─── BLOG CARDS ─── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.blog-card-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.blog-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  color: var(--cream);
}
.blog-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-mid);
  flex: 1;
  margin-bottom: 1.5rem;
}
.blog-card-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.3s;
}
.blog-card-link:hover { color: var(--white); }

/* ─── AREA CARDS ─── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.area-card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  display: block;
  text-decoration: none;
}
.area-card:hover {
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.05);
}
.area-card-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.4rem;
}
.area-card-dist {
  font-size: 0.78rem;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
}
.area-card-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.area-card-arrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}
.area-card:hover .area-card-arrow { gap: 0.8rem; }

/* ─── FOOTER ─── */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer p {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.05em;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--white); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger children */
.reveal-stagger > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ─── MOBILE CTA BAR ─── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 0.8rem 1.5rem;
}
.mobile-cta-inner {
  display: flex;
  gap: 0.8rem;
  max-width: 500px;
  margin: 0 auto;
}
.mobile-cta a {
  flex: 1;
  text-align: center;
  padding: 0.85rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.mobile-cta-book {
  background: var(--copper);
  color: var(--black);
}
.mobile-cta-call {
  background: transparent;
  color: var(--copper);
  border: 1px solid var(--copper) !important;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .feature-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2)::after { display: none; }
}

@media (max-width: 768px) {
  .nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.2rem;
    color: var(--cream);
    padding: 0.5rem 0;
  }
  .nav-toggle { display: flex; z-index: 1001; }
  .section { padding: 4rem 1.5rem; }
  .page-hero { padding: 3.5rem 1.5rem 2.5rem; }
  .content-section { padding: 3.5rem 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .services-quick { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
  .mobile-cta { display: block; }
  body { padding-bottom: 72px; }
  .cta-banner { padding: 3.5rem 1.5rem; }
  .content-block { padding: 0 1rem; }
  .content-inner { padding: 0 0.5rem; }
}

@media (max-width: 480px) {
  .page-hero h1 { font-size: 1.8rem; }
  .feature-strip-inner { grid-template-columns: 1fr 1fr; }
  .feature-item { padding: 1.2rem 1rem; }
  .feature-item:nth-child(2)::after { display: none; }
  .feature-item:nth-child(4)::after { display: none; }
  .content-inner h2 { font-size: 1.3rem; }
}
