/* Fits Properties — base styles (no build step required) */

:root {
  /* Variable names kept as fp-navy/fp-gold for Customizer compatibility;
     they now hold a warm ink and a muted terracotta accent, not literal
     navy/gold. */
  --fp-navy: #2a2521;
  --fp-navy-dark: #1a1613;
  --fp-gold: #9c4a35;
  --fp-gold-dark: #7e3a29;
  --fp-text: #2a2521;
  --fp-text-light: #6b6259;
  --fp-bg: #ffffff;
  --fp-bg-muted: #f7f4ef;
  --fp-border: #e6e0d6;
  --fp-success: #2f6b46;
  --fp-error: #a13a2c;
  --fp-radius: 2px;
  --fp-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fp-font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--fp-font);
  color: var(--fp-text);
  background: var(--fp-bg);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--fp-font-serif);
  font-weight: 600;
  color: var(--fp-navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.5rem; font-weight: 500; }
h2 { font-size: 1.85rem; font-weight: 500; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

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

.fp-eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fp-gold);
  margin-bottom: 10px;
}

/* Buttons */
.fp-btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--fp-radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.fp-btn--primary { background: var(--fp-navy); color: #fff; }
.fp-btn--primary:hover { background: var(--fp-navy-dark); }
.fp-btn--light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.55); }
.fp-btn--light:hover { background: #fff; color: var(--fp-navy); }

/* Header */
.fp-header {
  background: var(--fp-bg);
  border-bottom: 1px solid var(--fp-border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.fp-header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 20px;
}
.fp-logo {
  color: var(--fp-navy);
  font-family: var(--fp-font-serif);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}
.fp-logo--light { color: var(--fp-navy); }
.fp-logo--image img { max-height: 40px; width: auto; display: block; }
.fp-nav { flex: 1; }
.fp-nav__list {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}
.fp-nav__list a {
  color: var(--fp-text);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}
.fp-nav__list a:hover { color: var(--fp-gold); }
.fp-header__cta { white-space: nowrap; }

.fp-nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.fp-nav-toggle span {
  width: 22px;
  height: 1px;
  background: var(--fp-navy);
  display: block;
}

.fp-mobile-nav {
  display: none;
  background: var(--fp-bg);
  border-top: 1px solid var(--fp-border);
  padding: 8px 20px 16px;
}
.fp-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fp-mobile-nav__list a { color: var(--fp-text); }
.fp-mobile-nav.is-open { display: block; }

@media (max-width: 860px) {
  .fp-nav, .fp-header__cta { display: none; }
  .fp-nav-toggle { display: flex; }
}

/* Hero */
.fp-hero {
  background: var(--fp-bg-muted);
  color: var(--fp-navy);
  padding: 96px 0 72px;
  text-align: center;
  border-bottom: 1px solid var(--fp-border);
}
.fp-hero__inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.fp-hero h1 { color: var(--fp-navy); }
.fp-hero p { color: var(--fp-text-light); font-size: 1.05rem; }

.fp-hero--photo {
  position: relative;
  background-size: cover;
  background-position: center;
  border-bottom: none;
}
.fp-hero--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 22, 19, 0.6);
}
.fp-hero--photo h1,
.fp-hero--photo .fp-eyebrow { color: #fff; }
.fp-hero--photo p { color: rgba(255, 255, 255, 0.82); }

.fp-search {
  display: flex;
  gap: 0;
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  padding: 6px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.fp-search input,
.fp-search select {
  flex: 1;
  min-width: 140px;
  border: none;
  background: transparent;
  padding: 12px 14px;
  font-size: 0.95rem;
  border-right: 1px solid var(--fp-border);
}
.fp-search button { border-radius: 0; }
.fp-search input:focus,
.fp-search select:focus { outline: none; background: var(--fp-bg-muted); }

/* Sections */
.fp-section { padding: 72px 0; }
.fp-section--muted { background: var(--fp-bg-muted); }
.fp-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}
.fp-section__head h2 { margin-bottom: 0; }
.fp-link { color: var(--fp-gold); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em; }
.fp-link:hover { color: var(--fp-gold-dark); }

.fp-page-header {
  background: var(--fp-bg-muted);
  border-bottom: 1px solid var(--fp-border);
  color: var(--fp-navy);
  padding: 56px 0;
  text-align: center;
}
.fp-page-header h1 { color: var(--fp-navy); margin-bottom: 0; }
.fp-page-header p { color: var(--fp-text-light); margin-top: 10px; margin-bottom: 0; }

/* Grid */
.fp-grid { display: grid; gap: 28px; }
.fp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fp-grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 960px) {
  .fp-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .fp-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .fp-grid--3, .fp-grid--4 { grid-template-columns: 1fr; }
}

/* Property card */
.fp-card {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  overflow: hidden;
}
.fp-card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--fp-bg-muted); }
.fp-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fp-card__media-placeholder { width: 100%; height: 100%; background: var(--fp-bg-muted); }
.fp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 11px;
  border-radius: var(--fp-radius);
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--fp-navy);
  background: rgba(255, 255, 255, 0.94);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.fp-badge--rent { color: var(--fp-gold-dark); }
.fp-badge--sold, .fp-badge--rented { background: rgba(26, 22, 19, 0.88); color: #fff; }
.fp-badge--pending { background: rgba(156, 74, 53, 0.92); color: #fff; }

.fp-card__body { padding: 22px; }
.fp-card__price { font-family: var(--fp-font-serif); font-weight: 600; color: var(--fp-navy); font-size: 1.2rem; margin-bottom: 4px; }
.fp-card__title { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; font-family: var(--fp-font); letter-spacing: 0; }
.fp-card__location { color: var(--fp-text-light); font-size: 0.88rem; margin-bottom: 14px; }
.fp-card__specs { list-style: none; display: flex; gap: 14px; padding: 14px 0 0; margin: 0; font-size: 0.82rem; color: var(--fp-text-light); border-top: 1px solid var(--fp-border); }

/* Property type card */
.fp-type-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 26px 22px;
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  text-align: center;
}
.fp-type-card span { font-family: var(--fp-font-serif); font-weight: 600; color: var(--fp-navy); }
.fp-type-card small { color: var(--fp-text-light); font-size: 0.8rem; letter-spacing: 0.02em; }

/* Testimonials */
.fp-testimonial {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  padding: 28px;
  margin: 0;
}
.fp-testimonial__stars { color: var(--fp-gold); letter-spacing: 2px; margin-bottom: 10px; font-size: 0.9rem; }
.fp-testimonial__content { font-style: italic; color: var(--fp-text); }
.fp-testimonial__author { display: block; margin-top: 14px; font-weight: 600; font-style: normal; color: var(--fp-navy); font-size: 0.85rem; letter-spacing: 0.03em; text-transform: uppercase; }

/* CTA */
.fp-cta { background: var(--fp-navy); text-align: center; padding: 64px 0; }
.fp-cta h2 { color: #fff; }
.fp-cta p { color: rgba(255, 255, 255, 0.72); }

/* Listing layout + filters */
.fp-listing { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.fp-filters {
  background: var(--fp-bg-muted);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  padding: 22px;
}
.fp-filters__group { margin-bottom: 18px; }
.fp-filters__group label { display: block; font-weight: 600; font-size: 0.78rem; letter-spacing: 0.03em; text-transform: uppercase; color: var(--fp-text-light); margin-bottom: 7px; }
.fp-filters__group input,
.fp-filters__group select {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  font-size: 0.92rem;
  background: #fff;
}
.fp-filters__group--split { display: flex; gap: 10px; }
.fp-filters__group--split > div { flex: 1; }
.fp-filters__submit { width: 100%; }
.fp-filters__clear { display: block; text-align: center; margin-top: 10px; font-size: 0.85rem; color: var(--fp-text-light); }
.fp-filters__clear:hover { color: var(--fp-navy); text-decoration: underline; }

.fp-filters__group label.fp-filters__checkbox { display: flex; align-items: center; gap: 8px; font-weight: 400; text-transform: none; letter-spacing: 0; font-size: 0.9rem; color: var(--fp-text); margin-bottom: 8px; }
.fp-filters__checkbox input { width: auto; }

.fp-filters__more { margin: 4px 0 18px; }
.fp-filters__more summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fp-gold);
  padding: 4px 0 12px;
}
.fp-filters__more[open] summary { margin-bottom: 4px; }

.fp-listing__count { color: var(--fp-text-light); font-size: 0.9rem; margin-bottom: 20px; }

@media (max-width: 860px) {
  .fp-listing { grid-template-columns: 1fr; }
}

.fp-pagination { margin-top: 36px; display: flex; justify-content: center; gap: 8px; }
.fp-pagination .page-numbers {
  padding: 8px 14px;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  font-size: 0.9rem;
}
.fp-pagination .page-numbers.current { background: var(--fp-navy); color: #fff; border-color: var(--fp-navy); }

/* Single property */
.fp-property-gallery { padding-top: 28px; }
.fp-property-gallery__main { position: relative; }
.fp-property-gallery__main img { width: 100%; max-height: 480px; object-fit: cover; border-radius: var(--fp-radius); }
.fp-property-gallery__thumbs { display: flex; gap: 8px; margin-top: 8px; overflow-x: auto; }
.fp-gallery-thumb { border: 1px solid transparent; border-radius: var(--fp-radius); padding: 0; background: none; cursor: pointer; flex: 0 0 auto; }
.fp-gallery-thumb img { width: 70px; height: 56px; object-fit: cover; border-radius: var(--fp-radius); }
.fp-gallery-thumb:hover { border-color: var(--fp-gold); }

.fp-gallery-view-all {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  background: rgba(26, 22, 19, 0.75);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: var(--fp-radius);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.fp-gallery-view-all span { opacity: 0.75; margin-left: 3px; }
.fp-gallery-view-all:hover { background: rgba(26, 22, 19, 0.9); }

/* Lightbox */
body.fp-lightbox-open { overflow: hidden; }

.fp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: rgba(10, 8, 6, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fp-lightbox[hidden] { display: none; }

.fp-lightbox__stage { max-width: 90vw; max-height: 85vh; text-align: center; }
.fp-lightbox__img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: inline-block; border-radius: 2px; }
.fp-lightbox__counter { color: rgba(255, 255, 255, 0.75); font-size: 0.85rem; margin: 12px 0 0; }

.fp-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.fp-lightbox__close:hover { opacity: 0.7; }

.fp-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #fff;
  font-size: 2.25rem;
  line-height: 1;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  cursor: pointer;
}
.fp-lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); }
.fp-lightbox__nav--prev { left: 16px; }
.fp-lightbox__nav--next { right: 16px; }
.fp-lightbox__nav[hidden] { display: none; }

@media (max-width: 600px) {
  .fp-lightbox__nav { width: 44px; height: 44px; font-size: 1.75rem; }
  .fp-lightbox__close { top: 10px; right: 14px; }
}

.fp-property-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) {
  .fp-property-layout { grid-template-columns: 1fr; }
}

.fp-property-header .fp-badge { position: static; display: inline-block; margin-bottom: 14px; background: var(--fp-bg-muted); }
.fp-property-location { color: var(--fp-text-light); }
.fp-property-price { font-family: var(--fp-font-serif); font-size: 1.7rem; font-weight: 600; color: var(--fp-navy); }

.fp-property-specs {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 18px 0;
  margin: 18px 0;
  border-top: 1px solid var(--fp-border);
  border-bottom: 1px solid var(--fp-border);
  font-size: 0.92rem;
}

.fp-tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; padding: 0; }
.fp-tag-list li { background: var(--fp-bg-muted); border: 1px solid var(--fp-border); padding: 6px 13px; border-radius: var(--fp-radius); font-size: 0.85rem; }

.fp-property-map {
  height: 320px;
  margin-top: 16px;
  border-radius: var(--fp-radius);
  border: 1px solid var(--fp-border);
  overflow: hidden;
  background: var(--fp-bg-muted);
}

.fp-property-sidebar { display: flex; flex-direction: column; gap: 24px; }
.fp-agent-mini, .fp-request-form {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  padding: 22px;
}
.fp-agent-mini img { border-radius: 50%; width: 68px; height: 68px; object-fit: cover; margin-bottom: 12px; }
.fp-agent-mini h3 { font-size: 1rem; }

/* Forms (contact + request-viewing) */
.fp-request-form label, .fp-contact-form-card label {
  display: block;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--fp-text-light);
  margin: 14px 0 6px;
}
.fp-request-form input,
.fp-request-form textarea,
.fp-contact-form-card input,
.fp-contact-form-card textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
}
.fp-request-form button, .fp-contact-form-card button { margin-top: 18px; width: 100%; }
.fp-hp-field { position: absolute !important; left: -9999px !important; top: -9999px !important; }
.fp-form-success { background: #eef3ee; color: var(--fp-success); padding: 12px 16px; border-radius: var(--fp-radius); border: 1px solid #d3e3d5; }
.fp-form-error { background: #f5e9e6; color: var(--fp-error); padding: 12px 16px; border-radius: var(--fp-radius); border: 1px solid #e5cec8; }

/* Agents */
.fp-agent-card {
  background: #fff;
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  overflow: hidden;
  text-align: center;
}
.fp-agent-card__media { aspect-ratio: 1; background: var(--fp-bg-muted); }
.fp-agent-card__media img { width: 100%; height: 100%; object-fit: cover; }
.fp-agent-card__media-placeholder { width: 100%; height: 100%; }
.fp-agent-card__body { padding: 18px; }
.fp-agent-card__body h3 { font-size: 1.05rem; }
.fp-agent-card__spec { color: var(--fp-text-light); font-size: 0.88rem; }
.fp-agent-card__phone { font-weight: 600; font-size: 0.92rem; }

.fp-agent-header { display: flex; gap: 28px; align-items: center; text-align: left; }
.fp-agent-header__photo img { border-radius: 50%; width: 116px; height: 116px; object-fit: cover; }
.fp-agent-header__spec { color: var(--fp-text-light); }
.fp-agent-header__meta { list-style: none; padding: 0; display: flex; gap: 20px; color: var(--fp-text-light); flex-wrap: wrap; font-size: 0.9rem; }
.fp-agent-header__socials { display: flex; gap: 16px; margin-top: 10px; }
.fp-agent-header__socials a { color: var(--fp-gold); font-weight: 600; font-size: 0.85rem; }

/* Contact page */
.fp-contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 860px) {
  .fp-contact-layout { grid-template-columns: 1fr; }
}
.fp-contact-form-card {
  background: var(--fp-bg-muted);
  border: 1px solid var(--fp-border);
  border-radius: var(--fp-radius);
  padding: 28px;
}

/* Blog / generic content */
.fp-content--narrow { max-width: 760px; margin: 0 auto; }
.fp-post-card { padding-bottom: 36px; margin-bottom: 36px; border-bottom: 1px solid var(--fp-border); }
.fp-post-card__media img { border-radius: var(--fp-radius); margin-bottom: 18px; }
.fp-post-card__meta { color: var(--fp-text-light); font-size: 0.85rem; }

/* Image loading skeleton: shown until the <img> inside fires onload
   (see fp_lazy_img_attrs() in inc/helpers.php), then fades out as the
   image fades in. Works for images inserted later by Load More too,
   since it's driven by each <img>'s own onload, not a JS observer. */
.fp-img-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--fp-bg-muted);
  overflow: hidden;
}
.fp-img-wrap img { opacity: 0; transition: opacity 0.4s ease; }
.fp-img-wrap.is-loaded img { opacity: 1; }
.fp-img-wrap:not(.is-loaded)::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--fp-border) 25%, #f2ede3 37%, var(--fp-border) 63%);
  background-size: 400% 100%;
  animation: fp-shimmer 1.4s ease infinite;
}
@keyframes fp-shimmer {
  0% { background-position: 100% 50%; }
  100% { background-position: 0 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .fp-img-wrap:not(.is-loaded)::after { animation: none; }
}

/* Skeleton placeholder cards shown briefly while "Load More" fetches
   the next page (see assets/js/load-more.js). */
.fp-skeleton-card { border: 1px solid var(--fp-border); border-radius: var(--fp-radius); overflow: hidden; background: #fff; }
.fp-skeleton-card__media { aspect-ratio: 4 / 3; background: var(--fp-bg-muted); position: relative; overflow: hidden; }
.fp-skeleton-card__media::after,
.fp-skeleton-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--fp-border) 25%, #f2ede3 37%, var(--fp-border) 63%);
  background-size: 400% 100%;
  animation: fp-shimmer 1.4s ease infinite;
}
.fp-skeleton-card__body { padding: 22px; }
.fp-skeleton-line { position: relative; overflow: hidden; height: 12px; border-radius: 3px; background: var(--fp-bg-muted); margin-bottom: 10px; }
.fp-skeleton-line--title { height: 16px; width: 70%; }
.fp-skeleton-line--short { width: 45%; }

.fp-load-more { text-align: center; margin-top: 40px; }
.fp-load-more[hidden] { display: none; }

/* Hover lift for interactive cards */
.fp-card, .fp-agent-card, .fp-type-card, .fp-testimonial {
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.fp-card:hover, .fp-agent-card:hover, .fp-type-card:hover {
  transform: translateY(-4px);
  border-color: var(--fp-gold);
}

/* Scroll-reveal: only runs with JS present (assets/js/animate.js adds
   .fp-js to <html> before paint) and only for visitors who haven't asked
   for reduced motion. Without JS or with reduced motion, content is
   simply visible immediately — no broken/invisible states either way. */
.fp-js .fp-animate {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .fp-js .fp-animate {
    opacity: 0;
    transform: translateY(24px);
  }
  .fp-js .fp-animate.fp-in-view {
    opacity: 1;
    transform: translateY(0);
  }
  .fp-grid .fp-animate:nth-child(1) { transition-delay: 0s; }
  .fp-grid .fp-animate:nth-child(2) { transition-delay: 0.08s; }
  .fp-grid .fp-animate:nth-child(3) { transition-delay: 0.16s; }
  .fp-grid .fp-animate:nth-child(4) { transition-delay: 0.24s; }
  .fp-grid .fp-animate:nth-child(5) { transition-delay: 0.32s; }
  .fp-grid .fp-animate:nth-child(6) { transition-delay: 0.4s; }

  /* Page headers are always above the fold, so a plain load-in animation
     (no scroll observer needed) covers every archive/single/page template
     that uses .fp-page-header without editing each one individually. */
  .fp-page-header .fp-container { animation: fp-fade-up 0.7s ease both; }
  @keyframes fp-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* Footer */
.fp-footer { background: var(--fp-navy-dark); color: #b9b0a5; padding: 56px 0 0; }
.fp-footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; padding-bottom: 36px; }
.fp-footer .fp-logo--light { color: #fff; }
.fp-footer h4 { color: #fff; font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; font-family: var(--fp-font); font-weight: 600; }
.fp-footer__desc { color: #948a7d; }
.fp-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.fp-footer__list a:hover { color: #fff; }
.fp-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 20px;
  text-align: center;
  font-size: 0.82rem;
}
.fp-footer__bottom p { margin: 0 0 8px; }
.fp-footer__bottom p:last-child { margin-bottom: 0; }
.fp-footer__legal a { color: #b9b0a5; }
.fp-footer__legal a:hover { color: #fff; text-decoration: underline; }
.fp-footer__legal span { color: #6b6259; margin: 0 2px; }
@media (max-width: 700px) {
  .fp-footer__inner { grid-template-columns: 1fr; }
}
