/* ══════════════════════════════════════════════════════════
   WebHive — shared site styles
   Body modifiers:
     .has-hero  → fixed header overlay, hero pushes content
   (default)    → relative header in normal flow
══════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'galatea-regular';
  src: url('../fonts/Galatea-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'galatea-medium';
  src: url('../fonts/Galatea-Medium.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'galatea-bold';
  src: url('../fonts/Galatea-Bold.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'galatea-regular', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  color: #333;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6,
.hero-content h1,
.info-section h2,
section.page h1,
.page-heading,
.hero-cover .hero-title h1,
.section-title-bar h2,
.article-content h2,
.article-content h3,
.project-info h3,
.project-info h4,
.page-meta h2 {
  font-family: 'galatea-bold', sans-serif;
}

.menu-toggle,
.testimonial-name,
a.buttonlink,
.contact-form .btn-send,
.menu-form .btn-send,
#footer-menu a.red {
  font-family: 'galatea-medium', sans-serif;
}

/* Images carry width/height attributes so the browser can reserve space before
   they load (avoids layout shift). This keeps the aspect ratio intact wherever
   CSS constrains the width — rules that set an explicit height still win. */
img {
  height: auto;
}

/* ══════════════════════════
   HEADER
══════════════════════════ */
header {
  display: flex;
  height: 90px;
  position: relative;
  overflow: visible;
  z-index: 100;
}

body.has-hero header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

body.has-hero main {
  margin-top: 90px;
}

#logo {
  background: #ED1B2E;
  width: 50%;
  float: left;
  height: 90px;
  display: block;
  position: relative;
}

.logo-wrapper {
  float: right;
  display: block;
  padding: 0 25px;
}

#logo a.logo {
  display: block;
  float: right;
  line-height: 0;
}

#logo img {
  height: 46px;
  width: auto;
  display: block;
  margin-top: 22px;
}

#menu {
  background: #202020;
  width: 50%;
  float: right;
  height: 90px;
  position: relative;
  display: flex;
  align-items: center;
  box-shadow: -5px 0 0px rgba(0, 0, 0, 0.27);
}

.menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0 28px;
  user-select: none;
  transition: color .2s;
  flex-shrink: 0;
}
.menu-toggle .bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 18px;
  position: relative;
  height: 14px;
  flex-shrink: 0;
}
.menu-toggle .bars span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  position: absolute;
  width: 100%;
  left: 0;
  transition: transform .25s ease, opacity .25s ease, top .25s ease;
}
.menu-toggle .bars span:nth-child(1) { top: 0; }
.menu-toggle .bars span:nth-child(2) { top: 6px; }
.menu-toggle .bars span:nth-child(3) { top: 12px; }

.menu-open .menu-toggle .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.menu-open .menu-toggle .bars span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-open .menu-toggle .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.menu-toggle:hover { color: #ED1B2E; }
.menu-open .menu-toggle { color: #ED1B2E; }

#social {
  display: none;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  padding-right: 28px;
}
.menu-open #social { display: flex; }

#social a {
  color: #fff;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color .2s;
}
#social a:hover { color: #ED1B2E; }

.menu-wrapper {
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  height: calc(100vh - 90px);
  overflow-y: auto;
  background: #202020;
  z-index: 200;
  padding: 36px 36px 40px;
}
.menu-open .menu-wrapper { display: block; }

#main-nav ul {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
}
#main-nav ul li { margin-bottom: 4px; }
#main-nav ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  display: block;
  transition: color .2s;
}
#main-nav ul li a:hover { color: #ED1B2E; }

.menu-form .form-control {
  background: #111;
  border: 1px solid #333;
  border-radius: 0;
  color: #fff;
  padding: 12px 14px;
  font-size: .9rem;
  width: 100%;
  display: block;
  box-shadow: none;
}
.menu-form .form-control::placeholder { color: #666; }
.menu-form .form-control:focus {
  background: #111;
  border-color: #555;
  color: #fff;
  box-shadow: none;
  outline: none;
}
.menu-form input.form-control { margin-bottom: 3px; }
.menu-form .textarea-wrap { position: relative; }
.menu-form textarea.form-control {
  min-height: 120px;
  resize: vertical;
  padding-bottom: 48px;
  margin-bottom: 0;
}
.menu-form .btn-send {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ED1B2E;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 9px 22px;
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.menu-form .btn-send:hover { background: #c0161d; }

.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #555;
  color: #aaa;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  transition: border-color .2s, color .2s;
}
.close-btn:hover { border-color: #fff; color: #fff; }

.field-honeypot {
  display: none !important;
  visibility: hidden;
  height: 0;
  overflow: hidden;
  position: absolute;
}

/* ══════════════════════════
   MAIN
══════════════════════════ */
main {
  flex: 1;
  padding: 0;
}

/* ── Hero (home) ── */
.hero-slider {
  width: 100%;
  height: calc(100vh - 90px);
  background: #1a1a1a; /* shows through until the photo layer paints */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

/* Photo layer. The blur is baked into the file rather than applied at paint
   time: slide1-blurred.jpg is 49 KB against 906 KB for the original, and blurred
   pixels hold so little detail that a 1280px file upscales invisibly. No
   transform: scale() needed either — the edges are already opaque. */
.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/img/slide1-blurred.jpg') center center / cover no-repeat;
  z-index: 0;
}

/* Darkening pass over the photo, weighted toward the bottom so the
   scroll cue stays readable. Children sit at z-index 2, above both. */
.hero-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,.52) 0%,
    rgba(0,0,0,.48) 45%,
    rgba(0,0,0,.64) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

/* Matches the hero on webhive.co: the Medium cut at its own weight, not Bold.
   The Galatea faces are all declared font-weight:normal, so any numeric weight
   above that makes the browser synthesise a fake bold on top of the real one. */
.hero-content h1 {
  font-family: 'galatea-medium', sans-serif;
  font-size: 3.5rem;
  font-weight: 400;
  letter-spacing: -1px;
  margin: 0 0 10px;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}

.hero-content .hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 30px;
  opacity: .95;
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
}

.hero-content .btn-cta {
  display: inline-block;
  background: #ED1B2E;
  color: #fff;
  border: none;
  /* Regular cut, matching the button on webhive.co. Medium read too heavy here,
     and the face already carries its weight — keep font-weight at 400 so the
     browser never synthesises a bold on top of it. */
  font-family: 'galatea-regular', sans-serif;
  padding: 16px 44px;
  font-size: 1.25rem;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: background .3s;
}
.hero-content .btn-cta:hover { background: #c0161d; }

/* ── Hero client quote ──
   Absolute top-right on desktop. Below 992px the hero switches to a column
   and this drops into normal flow under the CTA (see RESPONSIVE). */
.hero-quote {
  position: absolute;
  top: 40px;
  right: 40px;
  z-index: 2;
  max-width: 300px;
  margin: 0;
  padding: 18px 20px;
  text-align: left;
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(6px);
  border-left: 3px solid #ED1B2E;
}
.hero-quote blockquote {
  margin: 0 0 14px;
  font-size: .95rem;
  line-height: 1.5;
  font-style: italic;
  color: #fff;
}
.hero-quote figcaption a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.hero-quote figcaption a:hover { opacity: .82; }
.hero-quote figcaption a:hover .hero-quote-who strong { text-decoration: underline; }
.hero-quote figcaption a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }
.hero-quote img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
}
.hero-quote-who { display: flex; flex-direction: column; line-height: 1.3; }
.hero-quote-who strong { font-size: .85rem; font-weight: 600; color: #fff; }
.hero-quote-who span { font-size: .75rem; color: rgba(255,255,255,.75); }

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  z-index: 2;
  cursor: pointer;
}
.scroll-down i {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ── Hero (project cover) ── */
.hero-cover {
  width: 100%;
  height: calc(100vh - 90px);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-cover .bg-img { position: absolute; inset: 0; z-index: 1; }
.hero-cover .bg-img img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  display: block;
  height: auto;
}
.hero-cover .hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.25); z-index: 2; }
.hero-cover .hero-title { position: relative; z-index: 3; text-align: center; color: #fff; }
.hero-cover .hero-title h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
}

/* ── Sections ── */
.info-section {
  padding: 60px 0 40px;
}

.info-section h2 {
  font-size: 2.2rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 40px;
  line-height: 1.2;
}

section.page {
  padding: 60px 0 40px;
}

section.page h1 {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 30px;
  line-height: 1.1;
}

article.content {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 40px;
}

.section-title-bar { padding: 24px 0; text-align: center; }
.section-title-bar h2 { font-size: 2.2rem; font-weight: 900; color: #111; margin: 0; }

/* ── 2-column page-meta / page-content ── */
.page-meta {
  float: left;
  width: 30%;
  padding-right: 30px;
}
.page-meta h2 {
  font-size: 1.5rem;
  font-weight: 900;
  color: #111;
  margin: 0;
  line-height: 1.3;
}
.page-content {
  float: right;
  width: 70%;
}
.page-content p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin: 0 0 16px;
}
.page-content h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  margin: 20px 0 10px;
}
.page-content ul {
  list-style: disc;
  padding-left: 20px;
  margin: 0 0 16px;
}
.page-content ul li {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  padding: 2px 0;
}

.about-block,
.service-block {
  overflow: hidden;
  padding: 30px 0;
}
.service-block { border-bottom: 1px solid #eee; }
.service-block:first-of-type { padding-top: 0; }
.service-block:last-of-type { border-bottom: none; }
.about-block::after,
.service-block::after { content: ''; display: table; clear: both; }

.about-image { margin-bottom: 30px; }
.about-image img {
  width: 100%;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

/* ── Project article ── */
.article-content { padding: 40px 0 60px; }
.article-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}
.article-content p strong { color: #111; }
.article-content a {
  color: #ED1B2E;
  text-decoration: none;
  font-weight: 500;
}
.article-content a:hover { color: #c0161d; }
.article-content h2 {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 24px;
}
.article-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 14px;
}
.article-content ul { padding-left: 24px; margin: 0 0 16px; }
.article-content ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 8px;
}
.article-content ul li strong { color: #111; }

.divider { border-top: 1px solid #eee; margin: 30px 0; }

.screen-section { margin-bottom: 20px; }
.screen-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111;
  margin: 0 0 16px;
}
.screen-section img {
  width: 100%;
  display: block;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  border-radius: 4px;
}

/* ── Projects grid (home) ── */
.projects-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 30px;
}
.column-2-large { flex: 0 0 calc(61.5% - 15px); max-width: calc(61.5% - 15px); }
.column-2-small { flex: 0 0 calc(35% - 15px); max-width: calc(35% - 15px); }
.column-3-small { flex: 0 0 calc(33.333% - 20px); max-width: calc(33.333% - 20px); }

.project-thumb {
  display: block;
  overflow: hidden;
  margin-bottom: 16px;
  height: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.project-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .3s;
}
.project-thumb:hover img { transform: scale(1.02); }

.project-info h3,
.project-info h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #111;
}
.project-info h3 a,
.project-info h4 a {
  color: #111;
  text-decoration: none;
}
.project-info h3 a:hover,
.project-info h4 a:hover { color: #ED1B2E; }
.project-info h4 { font-size: 1.15rem; }

a.more {
  color: #ED1B2E;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  margin-right: 16px;
  transition: color .2s;
}
a.more:hover { color: #c0161d; }
a.more i { margin-left: 3px; }

/* ── Why list ── */
.why-list {
  list-style: disc;
  padding-left: 40px;
  margin: 0;
  max-width: 700px;
}
.why-list li {
  font-size: 1rem;
  padding: 4px 0;
  color: #333;
  line-height: 1.6;
}
.why-list a {
  color: #ED1B2E;
  text-decoration: none;
  font-weight: 500;
}

/* ── Testimonials ── */
.testimonials-slider { position: relative; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s ease; }
.testimonial-item {
  min-width: 100%;
  display: flex;
  gap: 40px;
  padding: 20px 0 40px;
  align-items: flex-start;
}
.testimonial-author-block { flex: 0 0 200px; text-align: center; }
.testimonial-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 4px;
}
.testimonial-linkedin {
  display: inline-block;
  margin-top: -16px;
  margin-left: 30px;
  position: relative;
  z-index: 2;
}
.testimonial-linkedin img { width: 22px; height: 22px; }
.testimonial-name { font-weight: 700; font-size: 1rem; color: #111; margin-top: 8px; }
.testimonial-position { font-size: .85rem; color: #888; }
.testimonial-company { font-size: .85rem; color: #ED1B2E; }
.testimonial-quote {
  flex: 1;
  font-size: 1rem;
  color: #666;
  line-height: 1.7;
  position: relative;
  padding-left: 30px;
}
.testimonial-quote::before {
  content: '\201C\201C';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: #ccc;
  font-family: Georgia, serif;
  line-height: 1;
}

.slider-nav { display: inline-flex; gap: 8px; margin-left: 16px; vertical-align: middle; }
.slider-nav button {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #aaa;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
  line-height: 1;
}
.slider-nav button:hover { color: #ED1B2E; }

/* ── Clients ── */
.clients-track-wrap { overflow: hidden; }
.clients-track {
  display: flex;
  align-items: center;
  gap: 50px;
  transition: transform .5s ease;
}
.client-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
}
.client-logo img {
  max-height: 60px;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(0);
  transition: filter .3s;
}

/* ── HubMachine block ── */
.hubmachine-section {
  padding: 50px 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hubmachine-logo img {
  max-width: 200px;
  box-shadow: 0 4px 20px rgba(0,0,0,.12);
}
.hubmachine-text { font-size: 1rem; color: #555; }
.hubmachine-text a { color: #ED1B2E; text-decoration: none; font-weight: 600; }
.hubmachine-text a:hover { color: #c0161d; }

a.buttonlink {
  display: inline-block;
  margin-top: 10px;
  background: #ED1B2E;
  color: #fff;
  padding: 8px 24px;
  text-decoration: none;
  font-size: .9rem;
  font-weight: 600;
  transition: background .3s;
}
a.buttonlink:hover { background: #c0161d; color: #fff; }

/* ── Contact form (page) ── */
.page-heading {
  font-size: 2rem;
  font-weight: 900;
  color: #111;
  margin: 0 0 48px;
  line-height: 1.1;
}
.page-heading .subtitle {
  font-size: 1.3rem;
  font-weight: 400;
  color: #aaa;
  margin-left: 10px;
}

.contact-form-wrap { max-width: 420px; margin: 0 auto; }

.contact-form .form-control {
  border: 1px solid #ccc;
  border-radius: 0;
  padding: 12px 14px;
  font-size: .95rem;
  color: #333;
  background: #fff;
  box-shadow: none;
  width: 100%;
  display: block;
}
.contact-form .form-control::placeholder { color: #aaa; }
.contact-form .form-control:focus {
  border-color: #999;
  box-shadow: none;
  outline: none;
}
.contact-form input.form-control { margin-bottom: 3px; }
.contact-form .textarea-wrap { position: relative; }
.contact-form textarea.form-control {
  resize: vertical;
  min-height: 140px;
  padding-bottom: 48px;
  margin-bottom: 0;
}
.contact-form .btn-send {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #ED1B2E;
  color: #fff;
  border: none;
  border-radius: 0;
  padding: 10px 24px;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.contact-form .btn-send:hover { background: #c0161d; }
.contact-form .form-errors {
  list-style: none;
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #fff0f1;
  border-left: 3px solid #ED1B2E;
  color: #b00;
  font-size: .9rem;
}
.contact-form .flash {
  margin: 0 0 16px;
  padding: 12px 14px;
  background: #f0fff4;
  border-left: 3px solid #2ecc40;
  color: #1a7f37;
  font-size: .95rem;
}

/* ══════════════════════════
   FOOTER
══════════════════════════ */
footer { padding: 20px 0 16px; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
#footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}
#footer-menu a {
  color: #555;
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
#footer-menu a:hover { color: #111; }
#footer-menu a.red {
  background: #ED1B2E;
  color: #fff;
  padding: 10px 24px;
  font-weight: 600;
  display: inline-block;
  transition: background .2s;
}
#footer-menu a.red:hover { background: #c0161d; }

#social-footer { display: flex; align-items: center; gap: 18px; }
#social-footer a {
  color: #888;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color .2s;
}
#social-footer a:hover { color: #111; }

.copyright {
  text-align: right;
  font-size: .8rem;
  color: #aaa;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 991px) {
  .column-2-large,
  .column-2-small { flex: 0 0 100%; max-width: 100%; }
  .column-3-small { flex: 0 0 calc(50% - 15px); max-width: calc(50% - 15px); }
  .project-thumb { height: auto; }
  .testimonial-item { flex-direction: column; gap: 20px; }
  .testimonial-author-block { flex: none; text-align: left; display: flex; align-items: center; gap: 16px; }
  .testimonial-quote { padding-left: 30px; }

  /* Hero quote leaves the corner and stacks under the CTA */
  .hero-slider { flex-direction: column; }
  .hero-quote {
    position: static;
    max-width: 420px;
    margin: 28px 20px 0;
  }
}

@media (max-width: 768px) {
  #main-nav ul li a { font-size: 24px; }
  .menu-wrapper { padding: 24px 20px 28px; }
  .hero-content h1 { font-size: 2.5rem; }
  .hero-cover .hero-title h1 { font-size: 2.5rem; }
  .article-content h2 { font-size: 1.6rem; }
  .info-section h2 { font-size: 1.8rem; }
  .column-3-small { flex: 0 0 100%; max-width: 100%; }
  .hubmachine-section { flex-direction: column; text-align: center; }
  .page-meta { float: none; width: 100%; padding-right: 0; margin-bottom: 20px; }
  .page-content { float: none; width: 100%; }
}

@media (max-width: 576px) {
  .hero-content h1 { font-size: 1.75rem; }
  .hero-content .hero-subtitle { font-size: 0.9rem; }
  .hero-content .btn-cta { font-size: 1rem; padding: 14px 32px; }
  .hero-cover .hero-title h1 { font-size: 1.75rem; }
  .info-section { padding: 40px 0 20px; }
  .info-section h2 { font-size: 1.5rem; margin-bottom: 24px; }
  section.page { padding: 40px 0 20px; }
  section.page h1 { font-size: 1.5rem; }
  .article-content { padding: 24px 0 40px; }
  .page-heading { font-size: 1.5rem; }
  .page-heading .subtitle { font-size: 1rem; }
  footer { padding: 16px 0; }
  #footer-menu { gap: 12px; flex-wrap: wrap; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .copyright { text-align: left; }
}
