/*
Theme Name: Prograde
Theme URI: https://example.com
Description: Prograde Building and Renovation theme.
Author: Prograde
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: prograde
*/

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

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

/* ===================
   VARIABLES
=================== */
:root {
  --red:      #f01d4f;
  --red-dk:   #c5112f;
  --dark:     #2e2e2e;
  --gray:     #666666;
  --lgray:    #f4f4f4;
  --border:   #e0e0e0;
  --max:      1140px;
  --hh:       52px;
}

/* ===================
   BASE
=================== */
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 25px;
  line-height: 1.65;
  color: #333;
  background: #fff;
  font-weight: 400;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dk); }
ul { list-style: none; }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ===================
   TYPOGRAPHY
=================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: #2e2e2e;
  margin-bottom: .4em;
}
h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 300; }
h2 { font-size: clamp(20px, 2.5vw, 32px); font-weight: 700; }
h3 { font-size: clamp(15px, 1.8vw, 20px); font-weight: 700; }
h4 { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }

/* ===================
   LAYOUT
=================== */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 30px;
}

/* ===================
   BUTTONS
=================== */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 11px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.btn-red:hover { background: var(--red-dk); color: #fff; }

.btn-outline-red {
  display: inline-block;
  background: transparent;
  color: var(--red);
  padding: 10px 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid var(--red);
  transition: all .15s;
}
.btn-outline-red:hover { background: var(--red); color: #fff; }

/* ===================
   HEADER
   Fixed. Never scrolls. White bg spans full viewport.
   Inner content constrained to --max width, centered.
   Badge left-aligns with page content. Contact right-aligns with page content.
=================== */
#site-header {
  position: relative;
  height: var(--hh);
  background: #fff;
}
/* no header border */

/* Inner wrapper — same max-width as .wrap so badge aligns with content */
.hdr-inner-wrap {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  position: relative;
  padding: 0 30px;
}

/* Logo/badge — leftmost, stretches full header height */
.site-logo {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  flex-shrink: 0;
}
.pg-badge {
  width: 100px;
  height: 160px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 12px;
  transition: background .15s;
  align-self: flex-start;
  box-shadow: 4px 4px 14px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.pg-badge img {
  width: 80px;
  height: auto;
  display: block;
  margin: 0;
}
.site-logo:hover .pg-badge { background: var(--red-dk); }
/* .site-logo img override removed — badge img handled by .pg-badge img */

/* Nav — centered inside hdr-inner-wrap */
.hdr-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
#primary-nav {
  display: flex;
  align-items: center;
  pointer-events: all;
  gap: 0;
}
#primary-nav > li { position: relative; }
#primary-nav > li > a {
  display: flex;
  align-items: center;
  height: var(--hh);
  padding: 0 13px;
  font-family: 'Open Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
#primary-nav > li > a:hover,
#primary-nav > li.current-menu-item > a {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* Dropdowns */
#primary-nav li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-top: 2px solid var(--red);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
  z-index: 300;
}
#primary-nav li:hover > ul.sub-menu { display: block; }
#primary-nav li ul.sub-menu li a {
  display: block;
  padding: 9px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333;
  border-bottom: 1px solid var(--border);
  transition: background .12s, color .12s;
}
#primary-nav li ul.sub-menu li:last-child a { border-bottom: none; }
#primary-nav li ul.sub-menu li a:hover { background: var(--lgray); color: var(--red); }
#primary-nav li ul.sub-menu li { position: relative; }
#primary-nav li ul.sub-menu li ul.sub-menu {
  top: 0; left: 100%;
  border-top: none; border-left: 2px solid var(--red);
}

/* Contact button — rightmost, stretches full height */
.hdr-contact {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.hdr-contact a {
  display: flex;
  align-items: center;
  padding: 0 22px;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background .15s;
}
.hdr-contact a:hover { background: var(--red-dk); color: #fff; }

/* Mobile hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 16px;
  height: var(--hh);
  margin-left: auto;
  position: relative;
  z-index: 2;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  transition: transform .2s, opacity .2s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================
   HERO
   White bg. h1 left. Photos right.
   Pushed down by header height.
=================== */
.hero {
  padding: 56px 0 48px;
  background: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-text h1 {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(30px, 4.5vw, 55px);
  font-weight: 300;
  color: #2e2e2e;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 0;
}
.hero-text p {
  font-size: 13px;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 380px;
}
/* Hero photo grid */
.hero-photos {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: 260px 190px;
  gap: 16px;
  align-items: start;
}

/* Left slot: tall portrait, raised up more */
.hero-slot:nth-child(1) {
  grid-row: 1 / 3;
  height: 390px;
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  background: #e0e0e0;
}

/* Top-right slot — shorter, full column width */
.hero-slot:nth-child(2) {
  height: 260px;
  position: relative;
  overflow: hidden;
  background: #e0e0e0;
}

/* Bottom-right slot — slightly narrower */
.hero-slot:nth-child(3) {
  height: 190px;
  width: 90%;
  position: relative;
  overflow: hidden;
  background: #e0e0e0;
}

/* Each image inside a slot fades in/out */
.hero-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}
.hero-slot img.active {
  opacity: 1;
}

/* ===================
   TAGLINE BAR
=================== */
.tagline-bar {
  padding: 36px 0;
  text-align: center;
}
.tagline-bar p {
  font-family: 'Open Sans', sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--dark);
  margin: 0;
  letter-spacing: .01em;
}

/* ===================
   SERVICES GRID
=================== */
.services-section { padding: 36px 0 52px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-photo {
  height: 180px;
  overflow: hidden;
  background: var(--lgray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.svc-item:hover .svc-photo img { transform: scale(1.04); }
.svc-label { font-size: 12px; font-weight: 700; color: var(--red); }
.svc-label a { color: var(--red); }
.svc-label a:hover { color: var(--red-dk); }

/* ===================
   PROCESS SECTION
=================== */
.process-section { background: var(--lgray); padding: 60px 0; }
.process-quote {
  font-family: Georgia, serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: normal;
  color: var(--dark);
  text-align: center;
  line-height: 1.45;
  max-width: 820px;
  margin: 0 auto 48px;
}
.process-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 0;
}
.proc-item { padding: 0 16px; }
.proc-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border: 2px solid var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-icon svg { width: 22px; height: 22px; fill: var(--red); }
.proc-item h4 { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); margin-bottom: 8px; }
.proc-item p { font-size: 11px; color: var(--gray); line-height: 1.65; margin: 0; }
.process-cta { text-align: center; margin-top: 36px; }

/* ===================
   PROJECTS
=================== */
.projects-section { padding: 60px 0; }
.section-title {
  font-family: Georgia, serif;
  font-weight: normal;
  font-size: clamp(16px, 2vw, 24px);
  color: var(--dark);
  text-align: center;
  margin-bottom: 32px;
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.project-card { display: block; text-decoration: none; color: inherit; }
.project-photo {
  height: 200px;
  overflow: hidden;
  background: var(--lgray);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.project-card:hover .project-photo img { transform: scale(1.04); }
.project-card h3 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 6px; line-height: 1.3; }
.project-card p { font-size: 12px; color: var(--gray); line-height: 1.65; margin: 0; }
.project-link { display: inline-block; margin-top: 8px; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); }

/* ===================
   TESTIMONIAL + GALLERY
=================== */
.testimonial-section { background: var(--dark); padding: 60px 0; }
.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.testimonial-text blockquote {
  font-family: Georgia, serif;
  font-size: clamp(13px, 1.5vw, 16px);
  font-style: italic;
  color: rgba(255,255,255,.85);
  line-height: 1.85;
  border: none;
  padding: 0;
  margin: 0 0 20px;
}
.testimonial-text cite {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  font-style: normal;
  display: block;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gallery-item {
  height: 155px;
  background: #3a3a3a;
  position: relative;
  overflow: hidden;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-label {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: flex-end;
  padding: 10px;
}
.gallery-label a { text-decoration: none; }
.gallery-label span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  display: block;
}

/* ===================
   WORKSHOPS
=================== */
.workshops-section { padding: 60px 0; background: #fff; }
.workshops-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: start;
}
.workshops-photo img { width: 100%; display: block; }
.workshops-photo-placeholder { width: 100%; height: 380px; background: var(--lgray); }
.workshops-text h2 { font-size: clamp(18px, 2vw, 26px); font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.workshops-text > p { font-size: 13px; color: var(--gray); line-height: 1.75; margin-bottom: 16px; }
.workshops-text h4 { font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 4px; text-transform: none; letter-spacing: 0; }
.workshops-text .wp { font-size: 13px; color: var(--gray); line-height: 1.7; margin-bottom: 14px; }

/* ===================
   FOOTER
=================== */
#site-footer { background: var(--dark); padding: 48px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 200px 1fr 240px;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-serving {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
  line-height: 1.5;
}
.footer-logo-name {
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  line-height: 1.2;
  display: block;
  margin-bottom: 14px;
  text-decoration: none;
}
.footer-logo-name:hover { color: var(--red); }
.footer-logo img { max-width: 130px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-phone { display: block; font-size: 14px; color: #fff; margin-bottom: 4px; }
.footer-phone:hover { color: var(--red); }
.footer-license { font-size: 10px; color: rgba(255,255,255,.3); margin-bottom: 14px; line-height: 1.5; }
.footer-social-label { font-size: 8px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); margin: 14px 0 8px; }
.footer-social { display: flex; gap: 7px; flex-wrap: wrap; }
.footer-social a {
  width: 26px; height: 26px;
  background: rgba(255,255,255,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; color: #fff;
  text-decoration: none; transition: background .15s;
}
.footer-social a:hover { background: var(--red); }
.footer-nav-cols { display: grid; grid-template-columns: 1fr 1fr; }
.footer-nav-col ul li { margin-bottom: 5px; }
.footer-nav-col ul li a { font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-nav-col ul li a:hover { color: var(--red); }
.footer-newsletter h4 { font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-newsletter input {
  display: block; width: 100%;
  padding: 8px 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff; font-size: 12px; margin-bottom: 6px; outline: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.footer-newsletter input:focus { border-color: var(--red); }
.footer-newsletter input::placeholder { color: rgba(255,255,255,.3); }
.footer-newsletter .btn-red { display: block; width: 100%; text-align: center; padding: 9px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 14px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.footer-bottom p { font-size: 10px; color: rgba(255,255,255,.3); margin: 0; }

/* ===================
   INNER PAGES
=================== */
.page-banner { margin-top: var(--hh); background: var(--dark); padding: 40px 0 32px; }
.page-banner h1 { color: #fff; margin-bottom: 8px; }
.breadcrumb { font-size: 10px; color: rgba(255,255,255,.4); margin-bottom: 10px; }
.breadcrumb a { color: var(--red); }
.content-wrap { padding: 48px 0; }
.content-sidebar { display: grid; grid-template-columns: 1fr 260px; gap: 48px; align-items: start; }
.entry-content { font-size: 14px; line-height: 1.8; }
.entry-content h2, .entry-content h3 { margin: 1.8em 0 .5em; }
.entry-content h2:first-child, .entry-content h3:first-child { margin-top: 0; }
.entry-content ul, .entry-content ol { padding-left: 20px; margin-bottom: 1.2em; }
.entry-content ul { list-style: disc; }
.entry-content ol { list-style: decimal; }
.entry-content li { margin-bottom: 5px; }
.entry-content blockquote { border-left: 3px solid var(--red); padding: 12px 16px; margin: 1.5em 0; background: var(--lgray); font-style: italic; color: var(--gray); }
.sidebar { position: sticky; top: calc(var(--hh) + 20px); }
.sidebar-widget { background: var(--lgray); padding: 20px; margin-bottom: 18px; }
.sidebar-widget h4 { font-size: 9px; letter-spacing: 1.8px; text-transform: uppercase; padding-bottom: 8px; margin-bottom: 12px; border-bottom: 2px solid var(--red); display: inline-block; }
.sidebar-widget ul li { padding: 6px 0; border-bottom: 1px solid var(--border); }
.sidebar-widget ul li a { font-size: 13px; color: #333; }
.sidebar-widget ul li a:hover { color: var(--red); }

/* ===================
   BLOG
=================== */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card { display: flex; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid var(--border); }
.post-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.08); }
.post-thumb { height: 175px; overflow: hidden; background: var(--lgray); }
.post-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-thumb img { transform: scale(1.04); }
.post-body { padding: 16px; flex: 1; display: flex; flex-direction: column; }
.post-meta { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.post-body h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; line-height: 1.3; }
.post-body h3 a { color: var(--dark); }
.post-body h3 a:hover { color: var(--red); }
.post-body > p { font-size: 12px; color: var(--gray); flex: 1; margin: 0; }
.post-more { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-top: 10px; display: inline-block; }

/* ===================
   FORMS / SEARCH / PAGINATION
=================== */
.search-form { display: flex; max-width: 440px; margin: 0 auto; }
.search-form input[type="search"] { flex: 1; padding: 10px 13px; border: 1px solid var(--border); border-right: none; font-size: 14px; outline: none; }
.search-form input[type="search"]:focus { border-color: var(--red); }
.search-form button { padding: 10px 18px; background: var(--red); color: #fff; border: none; font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; }
.pg-form { display: grid; gap: 14px; }
.pg-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pg-form label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: #333; display: block; margin-bottom: 4px; }
.pg-form input, .pg-form textarea, .pg-form select { width: 100%; padding: 9px 12px; border: 1px solid var(--border); font-size: 14px; color: #333; outline: none; font-family: inherit; }
.pg-form input:focus, .pg-form textarea:focus { border-color: var(--red); }
.pg-form textarea { min-height: 110px; resize: vertical; }
.pg-pagination { display: flex; gap: 4px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pg-pagination a, .pg-pagination span { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border: 1px solid var(--border); font-size: 13px; color: #333; }
.pg-pagination a:hover, .pg-pagination .current { background: var(--red); border-color: var(--red); color: #fff; }

/* ===================
   ACCESSIBILITY
=================== */
.skip-link { position: absolute; top: -40px; left: 0; background: var(--red); color: #fff; padding: 8px 14px; z-index: 99999; font-weight: 700; font-size: 12px; }
.skip-link:focus { top: 0; }
.screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; word-wrap: normal !important; }
.alignleft { float: left; margin: 0 18px 12px 0; }
.alignright { float: right; margin: 0 0 12px 18px; }
.aligncenter { display: block; margin: 0 auto 12px; }

/* ===================
   RESPONSIVE — 960px
=================== */
@media (max-width: 960px) {
  .hdr-nav, .hdr-contact { display: none; }
  .menu-toggle { display: flex; }
  .hdr-nav.open {
    display: flex;
    position: fixed;
    top: var(--hh);
    left: 0; right: 0; bottom: 0;
    background: #fff;
    overflow-y: auto;
    z-index: 9998;
    border-top: 2px solid var(--red);
    pointer-events: all;
    align-items: flex-start;
    justify-content: flex-start;
    max-width: none;
  }
  .hdr-nav.open #primary-nav { flex-direction: column; align-items: stretch; width: 100%; }
  .hdr-nav.open #primary-nav > li > a { height: auto; padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 12px; }
  .hdr-nav.open #primary-nav li ul.sub-menu { position: static; display: block; border-top: none; border-left: 2px solid var(--red); box-shadow: none; }
  .hdr-nav.open #primary-nav li ul.sub-menu li a { padding-left: 28px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-photos { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-icons { grid-template-columns: repeat(2, 1fr); }
  .proc-item { margin-bottom: 28px; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial-inner, .workshops-inner { grid-template-columns: 1fr; }
  .gallery-grid { margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-newsletter { grid-column: 1 / -1; }
  .content-sidebar { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================
   RESPONSIVE — 600px
=================== */
@media (max-width: 600px) {
  .hero { padding: 32px 0 24px; }
  .services-grid, .process-icons, .projects-grid, .posts-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-nav-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pg-form .form-row { grid-template-columns: 1fr; }
}
