@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  --black:      #0a0a0a;
  --off-black:  #1a1a1a;
  --mid-grey:   #6b6b6b;
  --light-grey: #e8e8e8;
  --off-white:  #f7f6f4;
  --white:      #ffffff;
  --gold:       #C9A84C;
  --gold-dark:  #a8872e;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

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

/* ── GOLD TOP BAR ── */
.fq-top-bar {
  height: 3px;
  background: var(--gold);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
}

/* ── NAVIGATION ── */
.fq-nav {
  position: fixed;
  top: 3px; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  transition: box-shadow 0.3s;
}

.fq-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.fq-nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

.fq-nav-logo span { color: var(--gold); }

.fq-nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.fq-nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-black);
  text-decoration: none;
  transition: color 0.2s;
}

.fq-nav-links a:hover { color: var(--gold); }

.fq-nav-cta {
  border: 1px solid var(--black) !important;
  padding: 0.5rem 1.4rem;
  transition: background 0.2s, color 0.2s !important;
}

.fq-nav-cta:hover {
  background: var(--black) !important;
  color: var(--white) !important;
}

.fq-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.fq-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.fq-mobile-menu {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--light-grey);
  padding: 2rem;
  z-index: 99;
  flex-direction: column;
  gap: 1.5rem;
}

.fq-mobile-menu.open { display: flex; }

.fq-mobile-menu a {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--light-grey);
  transition: color 0.2s;
}

.fq-mobile-menu a:hover { color: var(--gold); }

/* ── PAGE WRAPPER ── */
.fq-page-wrap {
  margin-top: 73px;
}

/* ── SHARED ELEMENTS ── */
.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--black);
}

.section-title em { font-style: italic; color: var(--gold); }

.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.body-text {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--mid-grey);
}

.body-text strong { color: var(--black); font-weight: 500; }

.link-more {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.link-more:hover { color: var(--gold); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  padding: 0.95rem 2.4rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  display: inline-block;
}

.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); color: var(--white); }

.btn-outline-white {
  background: transparent;
  color: rgba(255,255,255,0.7);
  padding: 0.95rem 2.4rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
  display: inline-block;
}

.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }

/* ── TICKER ── */
.fq-ticker {
  background: var(--black);
  padding: 0.9rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.fq-ticker-inner {
  display: inline-block;
  animation: fqTicker 25s linear infinite;
}

.fq-ticker-item {
  font-size: 0.68rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 3rem;
}

.fq-ticker-item span { color: var(--gold); margin: 0 0.4rem; }

@keyframes fqTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   STARTSEITE
══════════════════════════════ */

/* HERO */
.fq-hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fq-hero-left {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 6rem 8rem;
}

.fq-hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}

.fq-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 4.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}

.fq-hero-title em { font-style: italic; color: var(--gold); }

.fq-hero-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 380px;
  margin-bottom: 3.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.6s forwards;
}

.fq-hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s 0.8s forwards;
}

.fq-hero-right {
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.fq-hero-image-frame {
  width: 400px;
  height: 520px;
  position: relative;
  opacity: 0;
  animation: fadeIn 1.2s 0.5s forwards;
}

.fq-hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fq-hero-image-frame::before {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 1px solid var(--gold);
  z-index: -1;
}

.fq-hero-badge {
  position: absolute;
  bottom: 5rem;
  left: 3rem;
  background: var(--white);
  padding: 1.4rem 2rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  border-left: 3px solid var(--gold);
  opacity: 0;
  animation: fadeUp 0.8s 1s forwards;
}

.fq-hero-badge-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1;
}

.fq-hero-badge-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--mid-grey);
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* MISSION */
.fq-mission {
  padding: 9rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  background: var(--white);
}

.fq-mission-image {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.fq-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fq-mission-image::after {
  content: '';
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80%; height: 80%;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* TOPICS */
.fq-topics {
  padding: 9rem 8rem;
  background: var(--off-white);
}

.fq-topics-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--light-grey);
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}

.fq-topics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-grey);
}

.fq-topic-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  position: relative;
  transition: background 0.3s;
  cursor: pointer;
}

.fq-topic-card:hover { background: var(--off-white); }

.fq-topic-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--light-grey);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.fq-topic-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.8rem;
}

.fq-topic-desc {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--mid-grey);
}

.fq-topic-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.4s;
}

.fq-topic-card:hover::after { width: 100%; }

/* BLOG PREVIEW */
.fq-blog-preview {
  padding: 9rem 8rem;
  background: var(--white);
}

.fq-blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--black);
  padding-bottom: 1.5rem;
  margin-bottom: 4rem;
}

.fq-blog-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

/* QUOTE */
.fq-quote {
  padding: 9rem 8rem;
  background: var(--black);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.fq-quote-deco {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 40rem;
  color: rgba(255,255,255,0.02);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.fq-quote-rule { width: 1px; height: 60px; background: var(--gold); margin: 0 auto 3rem; }
.fq-quote-rule-b { width: 1px; height: 60px; background: var(--gold); margin: 0 auto 2rem; }

.fq-quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.5;
  max-width: 820px;
  margin: 0 auto 3rem;
  position: relative;
}

.fq-quote-text em { color: var(--gold); font-style: normal; }

.fq-quote-author {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* NEWSLETTER */
.fq-newsletter {
  padding: 9rem 8rem;
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}

.fq-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fq-input {
  padding: 1rem 1.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  border: 1px solid var(--light-grey);
  background: var(--white);
  outline: none;
  color: var(--black);
  transition: border-color 0.2s;
  width: 100%;
}

.fq-input:focus { border-color: var(--gold); }
.fq-input::placeholder { color: #bbb; }

.fq-form-note {
  font-size: 0.75rem;
  color: var(--mid-grey);
  font-weight: 300;
}

/* ══════════════════════════════
   BLOG ARCHIVE
══════════════════════════════ */

.fq-archive-header {
  background: var(--black);
  padding: 7rem 8rem 5rem;
  text-align: center;
}

.fq-archive-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 6rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.05em;
}

.fq-archive-title em { font-style: italic; color: var(--gold); }

.fq-archive-subtitle {
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.4);
  margin-top: 1rem;
  text-transform: uppercase;
}

.fq-archive-body {
  padding: 6rem 8rem;
  background: var(--off-white);
}

.fq-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

/* BLOG & ARCHIVE CARD */
.fq-post-card { text-decoration: none; color: inherit; display: block; }

.fq-post-card-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-grey);
  margin-bottom: 1.2rem;
  overflow: hidden;
}

.fq-post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.fq-post-card:hover .fq-post-card-image img { transform: scale(1.04); }

.fq-post-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}

.fq-post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.fq-post-card:hover .fq-post-title { color: var(--gold-dark); }

.fq-post-meta {
  font-size: 0.75rem;
  color: var(--mid-grey);
  font-weight: 300;
}

.fq-post-excerpt {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.7;
  margin-top: 0.6rem;
}

/* PAGINATION */
.fq-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 5rem;
}

.fq-pagination a, .fq-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  font-size: 0.8rem;
  border: 1px solid var(--light-grey);
  color: var(--mid-grey);
  text-decoration: none;
  transition: all 0.2s;
}

.fq-pagination a:hover, .fq-pagination .current {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

/* ══════════════════════════════
   SINGLE POST
══════════════════════════════ */

.fq-single-hero {
  background: var(--black);
  padding: 6rem 8rem 5rem;
  text-align: center;
}

.fq-single-tag {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}

.fq-single-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.fq-single-meta {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

.fq-single-featured {
  width: 100%;
  max-height: 520px;
  overflow: hidden;
}

.fq-single-featured img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fq-single-body {
  display: grid;
  grid-template-columns: 1fr 680px 1fr;
  padding: 5rem 0;
  background: var(--white);
}

.fq-single-content {
  grid-column: 2;
}

.fq-single-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--black);
  margin: 2.5rem 0 1rem;
}

.fq-single-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--black);
  margin: 2rem 0 0.8rem;
}

.fq-single-content p {
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
}

.fq-single-content strong { color: var(--black); font-weight: 500; }

.fq-single-content a {
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s;
}

.fq-single-content a:hover { color: var(--gold); }

.fq-single-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: var(--off-white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  line-height: 1.5;
}

.fq-single-content ul, .fq-single-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.fq-single-content li {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--mid-grey);
  margin-bottom: 0.4rem;
}

.fq-single-content img {
  width: 100%;
  margin: 2rem 0;
}

/* Affiliate box */
.fq-affiliate-box {
  background: var(--off-white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  font-size: 0.82rem;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* Related posts */
.fq-related {
  padding: 6rem 8rem;
  background: var(--off-white);
}

.fq-related-header {
  border-bottom: 1px solid var(--light-grey);
  padding-bottom: 1.5rem;
  margin-bottom: 3rem;
}

.fq-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ══════════════════════════════
   ÜBER MICH
══════════════════════════════ */

.fq-about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.fq-about-hero-left {
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 5rem 6rem 8rem;
}

.fq-about-hero-right {
  background: var(--off-white);
  overflow: hidden;
}

.fq-about-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fq-about-body {
  padding: 9rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: start;
  background: var(--white);
}

.fq-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--light-grey);
  margin-top: 4rem;
}

.fq-value-card {
  background: var(--white);
  padding: 2rem;
}

.fq-value-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.fq-value-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.fq-value-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--mid-grey);
  line-height: 1.7;
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */

.fq-footer {
  background: var(--off-black);
  padding: 5rem 8rem 3rem;
}

.fq-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.fq-footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 1.2rem;
}

.fq-footer-logo span { color: var(--gold); }

.fq-footer-desc {
  font-size: 0.83rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.3);
  max-width: 260px;
}

.fq-footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.fq-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.fq-footer-links a {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.fq-footer-links a:hover { color: var(--gold); }

.fq-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.06em;
}

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

@media (max-width: 1024px) {
  .fq-nav { padding: 0 2rem; }
  .fq-nav-links { display: none; }
  .fq-hamburger { display: flex; }

  .fq-hero, .fq-about-hero { grid-template-columns: 1fr; }
  .fq-hero-left { padding: 5rem 2rem 4rem; }
  .fq-hero-right { display: none; }
  .fq-about-hero-right { display: none; }
  .fq-about-hero-left { padding: 5rem 2rem 4rem; }

  .fq-mission, .fq-newsletter, .fq-about-body {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 5rem 2rem;
  }

  .fq-mission-image { aspect-ratio: 16/9; }

  .fq-topics, .fq-blog-preview, .fq-archive-body,
  .fq-related, .fq-quote, .fq-newsletter { padding: 5rem 2rem; }

  .fq-topics-header, .fq-blog-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .fq-topics-grid, .fq-posts-grid, .fq-blog-grid, .fq-related-grid {
    grid-template-columns: 1fr;
  }

  .fq-archive-header, .fq-single-hero { padding: 5rem 2rem 4rem; }

  .fq-single-body {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }

  .fq-single-content { grid-column: 1; }

  .fq-footer { padding: 4rem 2rem 2rem; }
  .fq-footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .fq-footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .fq-values-grid { grid-template-columns: 1fr; }
}
