/* ===== VARIÁVEIS ===== */
:root {
  --green: #5a9e2f;
  --green-dark: #3d7a1a;
  --green-light: #7bc44a;
  --orange: #e8791a;
  --orange-dark: #c45f0a;
  --orange-light: #f5983c;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all .25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--green-dark);
  color: var(--white);
  padding: 6px 0;
  font-size: .82rem;
  font-weight: 500;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; }
.top-social { display: flex; gap: 10px; }
.social-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.15); color: #fff; font-size: .9rem;
  transition: var(--transition);
}
.social-btn:hover { background: var(--orange); }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  padding: 16px 0;
  border-bottom: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
  position: sticky; top: 0; z-index: 100;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo-link { display: flex; align-items: center; }
/* Logo imagem real */
.site-logo-img { height: 72px; width: auto; display: block; }

.logo-box {
  display: grid;
  grid-template-areas: "revista leaf" "vitrine vitrine" "tag tag";
  gap: 0;
  line-height: 1;
}
.logo-revista {
  grid-area: revista;
  font-size: .75rem; font-weight: 700;
  color: var(--orange); text-transform: lowercase;
  letter-spacing: .5px;
}
.logo-leaf { grid-area: leaf; font-size: .9rem; }
.logo-vitrine {
  grid-area: vitrine;
  font-size: 2.2rem; font-weight: 900;
  color: var(--green);
  letter-spacing: -1px;
  line-height: .9;
}
.logo-tagline {
  grid-area: tag;
  font-size: .65rem; font-weight: 600;
  color: var(--gray-500); letter-spacing: 2px;
  text-transform: uppercase; margin-top: 4px;
}

.header-ad { flex: 1; max-width: 620px; display: flex; align-items: center; justify-content: flex-end; }
.header-ad img { max-height: 120px; width: auto; max-width: 100%; border-radius: var(--radius); display: block; }
.ad-placeholder-link { display: block; width: 100%; max-width: 580px; }
.ad-placeholder {
  background: linear-gradient(135deg, var(--green) 0%, var(--orange) 100%);
  color: #fff; border-radius: var(--radius);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 80px; font-weight: 700; font-size: 1.1rem;
  cursor: pointer; transition: var(--transition);
}
.ad-placeholder:hover { transform: scale(1.02); }
.ad-placeholder small { font-size: .75rem; font-weight: 400; opacity: .85; }

/* ===== NAV ===== */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky; top: 111px; z-index: 99;
}
.nav-inner { display: flex; align-items: center; }
.nav-menu { display: flex; gap: 0; }
.nav-menu a {
  display: block; padding: 14px 18px;
  font-size: .82rem; font-weight: 600; color: var(--gray-700);
  letter-spacing: .5px; transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-menu a:hover, .nav-menu a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; padding: 14px 0; color: var(--green); }

/* ===== HERO ===== */
.hero { position: relative; overflow: hidden; }

/* Modo imagem: banner ocupa 100% da largura, sem altura forçada */
.hero.hero-image-mode { line-height: 0; }
.hero-img-link { display: block; width: 100%; }
.hero-img { width: 100%; height: auto; display: block; max-height: 600px; object-fit: cover; }
.hero-slides { position: relative; }
.hero-slide {
  min-height: 480px; display: flex; align-items: center;
  padding: 60px 20px;
}
.hero-content {
  max-width: 1200px; margin: 0 auto; text-align: center;
  color: var(--white);
}
.hero-label {
  font-size: .8rem; font-weight: 700; letter-spacing: 3px;
  color: var(--orange-light); text-transform: uppercase; margin-bottom: 12px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,.3);
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 400;
  opacity: .9; margin-bottom: 32px;
}
.btn-hero {
  background: var(--orange); color: #fff; padding: 14px 36px;
  border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: var(--transition); display: inline-block;
  box-shadow: 0 4px 20px rgba(232,121,26,.4);
}
.btn-hero:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 12px 28px; border-radius: 50px; font-weight: 600; font-size: .9rem; transition: var(--transition); cursor: pointer; border: none; }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--gray-100); }
.btn-outline { border: 2px solid var(--green); color: var(--green); background: transparent; }
.btn-outline:hover { background: var(--green); color: #fff; }

/* ===== CATEGORIES ===== */
.categories-section { background: var(--orange); padding: 40px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.category-card {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  background: rgba(255,255,255,.1); border-radius: var(--radius-lg);
  padding: 24px 16px; text-align: center; color: #fff;
  transition: var(--transition); cursor: pointer; border: 2px solid transparent;
}
.category-card:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.5); transform: translateY(-4px); }
.cat-icon-wrap {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
}
.cat-name { font-size: .85rem; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }

/* ===== NEWS SECTION ===== */
.news-section { padding: 60px 0; background: var(--gray-50); }
.section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--gray-900); position: relative;
}
.section-title::after {
  content: ''; display: block; width: 60px; height: 4px;
  background: var(--orange); border-radius: 2px; margin-top: 8px;
}
.see-all { color: var(--green); font-weight: 600; font-size: .9rem; }
.see-all:hover { text-decoration: underline; }

/* News Grid - main layout */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}
.news-grid .post-card:first-child {
  grid-row: span 2;
}

.post-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.post-card-img {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green-dark), var(--orange));
}
.post-card:first-child .post-card-img { height: 320px; }
.post-card .post-card-img { height: 180px; }

.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.post-card:hover .post-card-img img { transform: scale(1.05); }
.post-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 3rem;
}

.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.post-category {
  font-size: .72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--orange); margin-bottom: 8px;
  display: inline-block;
}
.post-title { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 10px; color: var(--gray-900); flex: 1; }
.post-card:first-child .post-title { font-size: 1.4rem; }
.post-meta { display: flex; gap: 12px; align-items: center; font-size: .78rem; color: var(--gray-500); margin-top: auto; }
.post-meta svg { width: 14px; height: 14px; }
.post-author { display: flex; align-items: center; gap: 6px; }
.avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: .65rem; font-weight: 700; }

/* ===== SIDEBAR AD ===== */
.sidebar-ad-float {
  display: none; position: fixed; right: 16px; top: 50%;
  transform: translateY(-50%); z-index: 90;
  width: 180px;
}
.sidebar-ad-inner { position: relative; }
.ad-label { display: block; font-size: .65rem; color: var(--gray-500); text-align: center; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.sidebar-ad-inner img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.ad-placeholder-v {
  background: linear-gradient(180deg, var(--green) 0%, var(--orange) 100%);
  color: #fff; border-radius: var(--radius); height: 300px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; text-align: center; padding: 12px;
}

/* ===== SERVICES ===== */
.services-section { background: var(--green); padding: 70px 0; text-align: center; }
.section-title-white { font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 12px; }
.services-subtitle { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 48px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-bottom: 48px; }
.service-card {
  background: rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 32px 24px; color: #fff; transition: var(--transition);
  border: 2px solid rgba(255,255,255,.15);
}
.service-card:hover { background: rgba(255,255,255,.2); transform: translateY(-4px); border-color: rgba(255,255,255,.35); }
.service-icon { font-size: 2.4rem; display: block; margin-bottom: 16px; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.service-card p { font-size: .88rem; opacity: .85; line-height: 1.6; }
.services-cta { margin-top: 8px; }

/* ===== ABOUT TEASER ===== */
.about-teaser { padding: 80px 0; background: var(--white); }
.about-teaser-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-badge {
  display: inline-block; background: var(--orange-light);
  color: var(--orange-dark); font-size: .78rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 16px;
}
.about-teaser-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 20px; color: var(--gray-900); }
.about-teaser-text p { color: var(--gray-500); font-size: 1rem; line-height: 1.8; margin-bottom: 28px; }
.about-image-card {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--green-dark), var(--orange));
}
.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: rgba(255,255,255,.9);
}
.logo-big { font-size: 3rem; font-weight: 900; color: var(--white); }
.logo-big-sub { font-size: 1rem; color: rgba(255,255,255,.7); letter-spacing: 3px; }

/* ===== FOOTER ===== */
.site-footer { background: var(--gray-900); color: var(--gray-200); padding: 60px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-logo { margin-bottom: 12px; display: flex; align-items: center; gap: 2px; }
.footer-logo .logo-revista { color: var(--orange); font-size: .9rem; font-weight: 700; }
.footer-logo .logo-vitrine { color: var(--green-light); font-size: 1.8rem; font-weight: 900; }
.footer-col > p { color: var(--gray-500); font-size: .88rem; line-height: 1.8; margin-bottom: 16px; }
.footer-col h4 { font-size: .85rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: var(--gray-500); font-size: .88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-col #footer-contact p { font-size: .88rem; color: var(--gray-500); margin-bottom: 8px; }
.footer-social { display: flex; gap: 8px; margin-top: 8px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0; margin-top: 40px; text-align: center; }
.footer-bottom p { color: var(--gray-500); font-size: .82rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff; padding: 60px 0; text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 800; }
.page-hero p { opacity: .8; margin-top: 8px; font-size: 1.1rem; }

/* ===== POST PAGE ===== */
.post-page { padding: 60px 0; }
.post-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; }
.post-content-area {}
.post-hero-img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--radius-lg); margin-bottom: 28px; }
.post-header { margin-bottom: 28px; }
.post-header h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; line-height: 1.3; margin-bottom: 12px; }
.post-info { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: .85rem; color: var(--gray-500); }
.post-body { font-size: 1.05rem; line-height: 1.9; color: var(--gray-700); }
.post-body h2, .post-body h3 { font-weight: 700; margin: 28px 0 12px; color: var(--gray-900); }
.post-body p { margin-bottom: 16px; }
.post-body img { border-radius: var(--radius); margin: 20px 0; }
.post-sidebar {}
.sidebar-widget { background: var(--white); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.sidebar-widget h3 { font-size: 1rem; font-weight: 700; border-left: 4px solid var(--orange); padding-left: 12px; margin-bottom: 16px; }
.related-post { display: flex; gap: 12px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
.related-post:last-child { border-bottom: none; }
.related-post-img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; background: var(--gray-200); }
.related-post-text { font-size: .82rem; font-weight: 600; line-height: 1.4; color: var(--gray-700); }
.related-post-text:hover { color: var(--orange); }

/* ===== SHARE BAR ===== */
.share-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.share-label { font-size: .8rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px; }
.share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: 50px; font-size: .8rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.share-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.share-fb { background: #1877f2; color: #fff; }
.share-fb:hover { background: #0d65d9; transform: translateY(-2px); }
.share-wa { background: #25d366; color: #fff; }
.share-wa:hover { background: #1ebe59; transform: translateY(-2px); }
.share-tw { background: #000; color: #fff; }
.share-tw:hover { background: #333; transform: translateY(-2px); }
.share-copy { background: var(--gray-100); color: var(--gray-700); border: 2px solid var(--gray-200); }
.share-copy:hover { background: var(--green); color: #fff; border-color: var(--green); transform: translateY(-2px); }

/* ===== LOADING ===== */
.loading-spinner { text-align: center; padding: 60px; color: var(--gray-500); font-size: .9rem; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.page-btn {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; font-weight: 600; cursor: pointer;
  border: 2px solid var(--gray-200); background: #fff; color: var(--gray-700);
  transition: var(--transition);
}
.page-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.page-btn:hover:not(.active) { border-color: var(--orange); color: var(--orange); }

/* ===== CONTACT FORM ===== */
.contact-page { padding: 60px 0; }
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
.contact-form-wrap {}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--gray-700); }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  border: 2px solid var(--gray-200); font-family: inherit; font-size: .95rem;
  color: var(--gray-900); transition: var(--transition); background: #fff;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--green); outline: none;
  box-shadow: 0 0 0 3px rgba(90,158,47,.1);
}
.form-group textarea { height: 140px; resize: vertical; }
.form-success { background: #dcfce7; color: #166534; border-radius: var(--radius); padding: 16px; margin-top: 16px; font-weight: 500; display: none; }
.contact-info-box { background: var(--green); color: #fff; border-radius: var(--radius-lg); padding: 36px; height: fit-content; }
.contact-info-box h3 { font-size: 1.3rem; margin-bottom: 24px; }
.contact-info-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 20px; }
.contact-info-icon { font-size: 1.3rem; margin-top: 2px; }
.contact-info-text strong { display: block; font-size: .9rem; margin-bottom: 2px; }
.contact-info-text span { font-size: .88rem; opacity: .85; }

/* ===== NEWS LIST PAGE ===== */
.news-page { padding: 60px 0; }
.news-list-header { display: flex; gap: 12px; align-items: center; margin-bottom: 36px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 18px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  border: 2px solid var(--gray-200); background: #fff; color: var(--gray-500);
  cursor: pointer; transition: var(--transition);
}
.filter-btn.active { background: var(--orange); border-color: var(--orange); color: #fff; }
.filter-btn:hover:not(.active) { border-color: var(--orange); color: var(--orange); }
.news-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

/* ===== ABOUT PAGE ===== */
.about-page { padding: 60px 0; }
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.about-image { border-radius: var(--radius-lg); overflow: hidden; }
.about-image img { width: 100%; height: 400px; object-fit: cover; }
.about-content h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 20px; }
.about-content p { color: var(--gray-500); line-height: 1.9; margin-bottom: 16px; }
.team-section { padding: 60px 0; background: var(--gray-50); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 36px; }
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; }
.team-card-img { height: 200px; background: linear-gradient(135deg, var(--green), var(--orange)); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-body { padding: 20px; }
.team-card-body h3 { font-size: 1rem; font-weight: 700; }
.team-card-body p { font-size: .85rem; color: var(--orange); margin: 4px 0 8px; font-weight: 600; }
.team-card-body small { font-size: .82rem; color: var(--gray-500); }

/* ===== SERVICES PAGE ===== */
.services-page { padding: 60px 0; }
.services-page-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }
.service-page-card {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); padding: 36px 28px;
  transition: var(--transition); border-top: 4px solid var(--green);
  text-align: center;
}
.service-page-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-top-color: var(--orange); }
.service-page-card .service-icon { font-size: 3rem; display: block; margin-bottom: 20px; }
.service-page-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.service-page-card p { color: var(--gray-500); line-height: 1.8; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .post-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .sidebar-ad-float { display: none !important; }
  .header-ad img { max-height: 90px; }
}
@media (max-width: 768px) {
  .header-inner { flex-direction: column; gap: 12px; }
  .header-ad { justify-content: center; }
  .nav-toggle { display: block; }
  .nav-menu { display: none; flex-direction: column; width: 100%; background: #fff; position: absolute; top: 100%; left: 0; box-shadow: var(--shadow-md); }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 12px 20px; border-bottom: 1px solid var(--gray-100); }
  .news-grid { grid-template-columns: 1fr; }
  .news-grid .post-card:first-child { grid-row: span 1; }
  .about-teaser-inner, .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-slide { min-height: 320px; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr 1fr; }
}
