/*
Theme Name: Flatpack Expert
Theme URI: https://theflatpackexpert.co.uk
Author: The Flatpack Expert
Description: Professional theme for The Flatpack Expert - Assembly & Handyman Services, South Tyneside
Version: 1.4.5
License: GNU General Public License v2 or later
Text Domain: flatpack-expert
*/

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

:root {
  --navy: #1C2B4A;
  --orange: #E8650A;
  --orange-light: #F5813A;
  --gray: #8A9BB0;
  --light-bg: #F4F6F9;
  --white: #ffffff;
  --text: #1C2B4A;
  --text-muted: #6B7C93;
  --border: rgba(28,43,74,0.12);
}

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

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* =====================
   NAVIGATION
   ===================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-branding { display: flex; align-items: center; gap: 10px; text-decoration: none; }

.logo-box {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-box svg { width: 26px; height: 26px; }

.logo-text { line-height: 1; }
.logo-text .the { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 11px; color: var(--text-muted); font-weight: 400; letter-spacing: 1px; text-transform: uppercase; }
.logo-text .brand { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 18px; color: var(--navy); font-weight: 800; }
.logo-text .brand em { color: var(--orange); font-style: normal; }

.main-nav { display: flex; align-items: center; gap: 2rem; list-style: none; }
.main-nav a { font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.main-nav a:hover,
.main-nav .current-menu-item a { color: var(--navy); border-bottom: 2px solid var(--orange); padding-bottom: 2px; }

.nav-cta a {
  background: var(--orange) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 6px !important;
  border-bottom: none !important;
  transition: background 0.2s !important;
}
.nav-cta a:hover { background: var(--orange-light) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--navy);
}

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
  font-family: 'Barlow', sans-serif;
}
.btn-primary:hover { background: var(--orange-light); color: white; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: white; color: white; }

/* =====================
   HERO
   ===================== */
.hero-wrapper { background: var(--navy); }
.hero {
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.hero-tag {
  display: inline-block;
  background: rgba(232,101,10,0.18);
  color: var(--orange-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  margin-bottom: 1.2rem;
}

.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3.8rem;
  font-weight: 800;
  color: white;
  line-height: 1.0;
  margin-bottom: 1.2rem;
}
.hero h1 span { color: var(--orange); }

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; flex-direction: column; gap: 1rem; }

.hero-stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-stat-card .icon {
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.hero-stat-card .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem; font-weight: 700; color: white; line-height: 1;
}
.hero-stat-card .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 3px; }
.hero-stars { display: flex; gap: 3px; margin-top: 4px; }
.hero-stars span { color: #FFB800; font-size: 14px; }

/* =====================
   TRUST BAR
   ===================== */
.trust-bar {
  background: var(--light-bg);
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 13px; color: var(--text-muted); font-weight: 500; }
.trust-item .dashicons { color: var(--orange); font-size: 18px; }

/* =====================
   SECTIONS
   ===================== */
.section { padding: 4rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-bg { background: var(--light-bg); }
.section-navy { background: var(--navy); }
.section-orange { background: var(--orange); }

.section-label {
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 0.7rem;
}
.section-navy .section-label { color: var(--orange-light); }

.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2.6rem; font-weight: 800;
  color: var(--navy); line-height: 1.1; margin-bottom: 1rem;
}
.section-navy .section-title,
.section-orange .section-title { color: white; }

.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  line-height: 1.7; max-width: 560px; font-weight: 300;
}
.section-navy .section-sub { color: rgba(255,255,255,0.6); }

/* =====================
   SERVICES GRID
   ===================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.8rem;
  background: white;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.service-card:hover { box-shadow: 0 8px 30px rgba(28,43,74,0.12); transform: translateY(-3px); }
.service-card.featured { border-color: var(--orange); }
.service-card .featured-badge {
  position: absolute; top: 0; right: 0;
  background: var(--orange); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 12px; border-bottom-left-radius: 8px; text-transform: uppercase;
}
.service-icon {
  width: 50px; height: 50px; background: var(--light-bg);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 24px;
}
.service-card.featured .service-icon { background: rgba(232,101,10,0.12); }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.service-card .learn-more { margin-top: 1rem; font-size: 13px; font-weight: 600; color: var(--orange); }

/* =====================
   PROCESS STEPS
   ===================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem; margin-top: 2.5rem;
}
.process-step { text-align: center; padding: 2rem 1.5rem; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: white;
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.process-step h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--navy); }
.process-step p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }

/* =====================
   REVIEWS
   ===================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.review-card { border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; background: white; }
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.review-stars span { color: #FFB800; font-size: 16px; }
.review-card blockquote { font-size: 14.5px; line-height: 1.7; color: var(--text); margin-bottom: 1.2rem; font-weight: 300; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 13px; font-family: 'Barlow Condensed', sans-serif;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 14px; color: var(--navy); }
.review-location { font-size: 12px; color: var(--text-muted); }

.google-reviews-placeholder {
  text-align: center;
  padding: 3rem;
  border: 2px dashed var(--border);
  border-radius: 12px;
  margin-top: 2rem;
}
.google-reviews-placeholder .google-logo { font-size: 2rem; margin-bottom: 0.5rem; }
.google-reviews-placeholder p { color: var(--text-muted); font-size: 14px; }
.google-reviews-placeholder strong { color: var(--navy); font-size: 16px; display: block; margin-bottom: 0.5rem; }

/* =====================
   PORTFOLIO / GALLERY
   ===================== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.portfolio-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.2s, transform 0.2s;
}
.portfolio-card:hover { box-shadow: 0 8px 30px rgba(28,43,74,0.12); transform: translateY(-3px); }

.portfolio-card .portfolio-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.portfolio-card .portfolio-img-placeholder {
  width: 100%; height: 220px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}

.portfolio-info { padding: 1.3rem; }
.portfolio-info h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.portfolio-info p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.portfolio-tag { display: inline-block; background: rgba(232,101,10,0.1); color: var(--orange); font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 20px; margin-top: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; }

/* =====================
   AREAS
   ===================== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 0.8rem; margin-top: 2rem;
}
.area-pill {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 0.8rem 1rem;
  text-align: center; font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.85);
}

/* =====================
   PRICING
   ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.price-card { border: 1.5px solid var(--border); border-radius: 12px; padding: 2rem; background: white; position: relative; }
.price-card.popular { border-color: var(--orange); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 11px; font-weight: 700; letter-spacing: 1px;
  padding: 4px 16px; border-radius: 20px; text-transform: uppercase; white-space: nowrap;
}
.price-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--navy); margin-bottom: 0.3rem; }
.price-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 1.5rem; }
.price-amount { margin-bottom: 1.5rem; }
.price-from { font-size: 13px; color: var(--text-muted); }
.price-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.price-note { font-size: 12px; color: var(--text-muted); margin-top: 3px; }
.price-features { list-style: none; margin-bottom: 1.8rem; }
.price-features li { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text); padding: 5px 0; }
.price-features li .dashicons { color: var(--orange); font-size: 16px; }

/* =====================
   ABOUT
   ===================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.about-visual { background: var(--light-bg); border-radius: 16px; padding: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
.about-stat { background: white; border-radius: 10px; padding: 1.2rem 1.5rem; border: 1px solid var(--border); }
.about-stat .a-num { font-family: 'Barlow Condensed', sans-serif; font-size: 2rem; font-weight: 800; color: var(--orange); line-height: 1; }
.about-stat .a-label { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.about-lead { font-size: 1.05rem; color: var(--text); line-height: 1.8; margin-bottom: 1.2rem; font-weight: 300; }
.about-vals { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.about-val { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text); }
.about-val .dashicons { color: var(--orange); }

/* =====================
   CONTACT FORM
   ===================== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.3fr; gap: 3rem; margin-top: 2.5rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.8rem; }
.ci-icon {
  width: 44px; height: 44px; background: rgba(232,101,10,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ci-icon .dashicons { color: var(--orange); font-size: 20px; width: 20px; height: 20px; line-height: 1; }
.contact-info-item h4 { font-weight: 600; font-size: 15px; color: var(--navy); margin-bottom: 3px; }
.contact-info-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.contact-form-box { background: white; border: 1px solid var(--border); border-radius: 12px; padding: 2rem; }
.contact-form-box h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }

.wpcf7-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.wpcf7-form p { margin-bottom: 1rem; }
.wpcf7-form label { display: block; font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 6px; }
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%; padding: 10px 14px; font-size: 14px;
  border: 1px solid var(--border); border-radius: 8px;
  color: var(--text); font-family: 'Barlow', sans-serif;
  background: white; outline: none;
}
.wpcf7-form textarea { resize: vertical; min-height: 100px; }
.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus { border-color: var(--orange); }
.wpcf7-form input[type="submit"] {
  width: 100%; background: var(--orange); color: white;
  padding: 13px; border-radius: 8px; font-weight: 600; font-size: 15px;
  border: none; cursor: pointer; font-family: 'Barlow', sans-serif;
  transition: background 0.2s;
}
.wpcf7-form input[type="submit"]:hover { background: var(--orange-light); }

/* =====================
   FAQ
   ===================== */
.faq-list { margin-top: 2.5rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 0; cursor: pointer; font-weight: 500; font-size: 15px; color: var(--navy);
  list-style: none;
}
.faq-question::after { content: '+'; color: var(--orange); font-size: 24px; font-weight: 300; transition: transform 0.2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { font-size: 14px; color: var(--text-muted); line-height: 1.7; padding-bottom: 1.2rem; display: none; font-weight: 300; }
.faq-item.open .faq-answer { display: block; }

/* =====================
   CTA STRIP
   ===================== */
.cta-strip { text-align: center; padding: 4rem 2rem; }
.cta-strip h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.5rem; font-weight: 800; color: white; margin-bottom: 1rem; }
.cta-strip p { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2rem; font-weight: 300; }

/* =====================
   FOOTER
   ===================== */
.site-footer { background: var(--navy); padding: 3rem 2rem 1.5rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }
.footer-brand-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 1rem; font-weight: 300; max-width: 260px; }
.footer-col h4 { font-size: 13px; font-weight: 700; color: white; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-badge { background: rgba(232,101,10,0.2); color: var(--orange-light); font-size: 12px; font-weight: 600; padding: 5px 14px; border-radius: 20px; }

/* =====================
   PAGE HERO (inner pages)
   ===================== */
.page-hero { background: var(--navy); padding: 3rem 2rem; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; }
.page-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 3rem; font-weight: 800; color: white; margin-bottom: 0.8rem; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 1.05rem; max-width: 500px; font-weight: 300; }

/* =====================
   WORDPRESS ADMIN BAR OFFSET
   ===================== */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .hero h1 { font-size: 2.6rem; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .main-nav { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 1rem 2rem; border-bottom: 1px solid var(--border); gap: 1rem; }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .wpcf7-form .form-row { grid-template-columns: 1fr; }
  .trust-bar { gap: 1.2rem; }
}

/* =====================
   FONT AWESOME SERVICE ICONS
   ===================== */
.service-icon i {
  font-size: 22px;
  color: var(--navy);
}
.service-card.featured .service-icon i {
  color: var(--orange);
}

/* =====================
   WORDPRESS WIDTH FIXES
   ===================== */
html,
body,
.wp-site-blocks,
.entry-content,
.wp-block-group,
.is-layout-constrained,
.is-layout-flow,
#page,
#content,
#primary,
#secondary,
.site,
.site-content,
main {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Fix WordPress block editor default padding */
.wp-site-blocks > * {
  max-width: 100% !important;
}

body.page {
  max-width: 100% !important;
}

/* =====================
   LOGO
   ===================== */
.site-logo {
  height: 65px;
  width: auto;
  display: block;
}
.footer-logo {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .site-logo { height: 38px; }
}

/* =====================
   OUR WORK — BLOG STYLE
   ===================== */
.work-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.work-post-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: white;
  transition: box-shadow 0.2s, transform 0.2s;
}
.work-post-card:hover { box-shadow: 0 8px 30px rgba(28,43,74,0.12); transform: translateY(-3px); }
.work-post-card .post-thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.work-post-card .post-thumb-placeholder {
  width: 100%; height: 240px;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
}
.work-post-card .post-body { padding: 1.5rem; }
.work-post-card .post-tag {
  display: inline-block;
  background: rgba(232,101,10,0.1); color: var(--orange);
  font-size: 11px; font-weight: 600; padding: 3px 10px;
  border-radius: 20px; margin-bottom: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.work-post-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem; font-weight: 700; color: var(--navy);
  margin-bottom: 0.5rem;
}
.work-post-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 300; }
.work-post-card .post-meta {
  font-size: 12px; color: var(--gray);
  margin-top: 0.8rem; display: flex; gap: 1rem; align-items: center;
}
.work-post-card .post-meta span { display: flex; align-items: center; gap: 4px; }
.work-post-card .read-more {
  display: inline-block; margin-top: 1rem;
  font-size: 13px; font-weight: 600; color: var(--orange);
}

/* Single work post */
.single-work-hero { background: var(--navy); padding: 3rem 2rem; }
.single-work-hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: 2.8rem; font-weight: 800; color: white; }
.single-work-content { max-width: 780px; }
.single-work-content img { border-radius: 12px; margin: 1.5rem 0; width: 100%; height: auto; }
.single-work-content p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 1rem; }
.single-work-content h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--navy); margin: 2rem 0 0.8rem; }

/* =====================
   PAGINATION
   ===================== */
.page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 8px;
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  border: 1px solid var(--border); margin: 0 3px; text-decoration: none;
  transition: all 0.2s;
}
.page-numbers:hover,
.page-numbers.current { background: var(--orange); color: white; border-color: var(--orange); }
.page-numbers.prev, .page-numbers.next { width: auto; padding: 0 14px; }

/* =====================
   HEADER TAGLINE
   ===================== */
.site-branding-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.site-tagline {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-left: 2px solid var(--border);
  padding-left: 16px;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .site-header { flex-wrap: wrap; height: auto; padding: 10px 1.5rem; gap: 0; justify-content: space-between; align-items: center; }
  .site-branding-wrap { flex-direction: row; align-items: center; gap: 10px; width: calc(100% - 50px); }
  .site-branding { flex-shrink: 0; }
  .site-tagline { border-left: none; padding-left: 0; font-size: 11px; width: 100%; order: 3; padding-top: 4px; padding-bottom: 6px; }
  .menu-toggle { order: 2; flex-shrink: 0; }
  nav { width: 100%; order: 4; }
  .site-logo { height: 38px; }
}

/* Fix ci-icon for Font Awesome */
.ci-icon i {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
  width: auto;
  height: auto;
}

/* =====================
   PHOSPHOR ICONS
   ===================== */
.service-icon i[class*="ph "],
.service-icon .ph {
  font-size: 24px;
  color: var(--navy);
  line-height: 1;
}
.service-card.featured .service-icon i[class*="ph "],
.service-card.featured .service-icon .ph {
  color: var(--orange);
}
.ci-icon i[class*="ph "],
.ci-icon .ph {
  color: var(--orange);
  font-size: 18px;
  line-height: 1;
}

/* =====================
   INLINE SVG ICONS
   ===================== */
.service-icon svg {
  display: block;
}
.service-card.featured .service-icon svg path {
  fill: var(--orange);
}
.ci-icon svg {
  display: block;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

/* Clickable service cards */
a.service-card { cursor: pointer; }
a.service-card:hover { box-shadow: 0 8px 30px rgba(28,43,74,0.12); transform: translateY(-3px); }
