/* ============ FOOTER (editorial gallery, reference-inspired) ============ */
.fq { background: var(--white); }
.fq-head { text-align: center; padding: 78px 24px 46px; }
.fq-head h3 {
  font-family: var(--font-display); font-weight: 400; font-size: clamp(24px, 2.8vw, 34px);
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--espresso); margin-bottom: 12px;
}
.fq-handle { font-family: var(--font-display); font-style: italic; font-size: 16px; color: var(--terracotta-rose); transition: color 0.3s ease; }
.fq-handle:hover { color: var(--espresso); }

/* Flush gallery: seamless edge-to-edge, uniform height across all columns */
.fq-gallery-wrap { background: var(--white); }
.fq-gallery {
  display: grid; grid-template-columns: repeat(6, 1fr);
  align-items: start; gap: 0;
  padding-bottom: 64px;
}
.fq-gallery a { display: block; overflow: hidden; position: relative; }
.fq-gallery img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; display: block; transition: transform 0.6s cubic-bezier(.2,.8,.2,1); }
.fq-gallery a:hover img { transform: scale(1.05); }

/* Newsletter strip (Style Notes) */
.fq-news {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  padding: 40px 48px 46px; border-bottom: 1px solid #DCCDBF;
}
.fq-news-copy h4 { font-family: var(--font-display); font-weight: 400; font-size: 26px; color: var(--espresso); margin-bottom: 8px; }
.fq-news-copy p { font-size: 13.5px; color: #8A7E74; max-width: 420px; }
.fq-news-form { position: relative; display: flex; gap: 12px; align-items: stretch; }
.fq-news-form input[type="email"] {
  flex: 1; border: none; border-bottom: 1px solid #CBBBA9; background: transparent;
  font-family: var(--font-body); font-size: 14.5px; color: var(--espresso); padding: 12px 2px;
  transition: border-color 0.3s ease;
}
.fq-news-form input[type="email"]::placeholder { color: #9A8F82; }
.fq-news-form input[type="email"]:focus { outline: none; border-color: var(--terracotta-rose); }
.fq-news-form button {
  background: var(--espresso); color: var(--white); padding: 13px 30px; border-radius: 2px;
  font-size: 11.5px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease; white-space: nowrap;
}
.fq-news-form button:hover:not(:disabled) { background: var(--terracotta-rose); transform: translateY(-2px); }
.fq-news-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.fq-news-status { position: absolute; top: calc(100% + 8px); left: 0; font-size: 12.5px; display: none; }
.fq-news-status.show { display: block; }
.fq-news-status.success { color: #465B3C; }
.fq-news-status.error { color: #8A4137; }
@media (max-width: 900px) {
  .fq-news { grid-template-columns: 1fr; gap: 20px; padding: 34px 24px 44px; text-align: center; }
  .fq-news-copy p { margin: 0 auto; }
  .fq-news-status { position: static; margin-top: 10px; }
}

/* Lower band */
.fq-lower { background: var(--linen); padding: 8px 0 34px; }
.fq-nav { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 4px 12px; padding: 10px 20px 30px; }
.fq-nav a { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); transition: color 0.3s ease; }
.fq-nav a:hover { color: var(--terracotta-rose); }
.fq-nav span { color: var(--brass); }

.fq-baseline {
  position: relative; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px;
  border-top: 1px solid #DCCDBF; padding-top: 26px;
}
.fq-email { font-family: var(--font-display); font-style: italic; font-size: 15px; color: #8A7E74; justify-self: start; transition: color 0.3s ease; }
.fq-email:hover { color: var(--terracotta-rose); }
.fq-icons { display: flex; align-items: center; gap: 12px; justify-self: center; }
.fq-icons a { color: #8A7E74; display: flex; transition: color 0.3s ease, transform 0.3s ease; }
.fq-icons a:hover { color: var(--terracotta-rose); transform: translateY(-2px); }
.fq-icons svg { width: 15px; height: 15px; }
.fq-icons .dash { width: 20px; height: 1px; background: #CBBBA9; }
.fq-copy { font-family: var(--font-display); font-style: italic; font-size: 14px; color: #8A7E74; justify-self: end; margin-right: 54px; }
.fq-top-btn {
  position: absolute; right: 0; top: 50%; transform: translateY(-32%);
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid #CBBBA9; color: #8A7E74; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.fq-top-btn:hover { color: var(--terracotta-rose); border-color: var(--brass); transform: translateY(calc(-32% - 3px)); }
.fq-top-btn svg { width: 16px; height: 16px; }

@media (max-width: 900px) {
  .fq-gallery { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .fq-baseline { grid-template-columns: 1fr; text-align: center; gap: 16px; }
  .fq-email, .fq-icons, .fq-copy { justify-self: center; margin-right: 0; }
  .fq-top-btn { position: static; transform: none; margin: 6px auto 0; }
  .fq-top-btn:hover { transform: translateY(-3px); }
}
