/*
Theme Name: Fusion Pointe Apartments
Theme URI: https://fusionpointeapartments.com
Author: VanRock Holdings LLC / NewShire Property Management
Author URI: https://newshirepm.com
Description: A custom WordPress theme for Fusion Pointe Apartments — a modern apartment community located beside USC Upstate in Spartanburg, SC. Features SEO-optimized page templates for Home, Floor Plans, Amenities, Neighborhood, Gallery, Contact, FAQ, Pet Policy, Residents, About, Specials, and Blog.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://fusionpointeapartments.com
Text Domain: fusion-pointe
Tags: custom-logo, custom-menu, featured-images, full-width-template, theme-options

Fusion Pointe Apartments WordPress Theme
Copyright 2026 VanRock Holdings LLC
*/

/* ==========================================================================
   CSS CUSTOM PROPERTIES
   ========================================================================== */

:root {
  /* Brand Colors */
  --fp-navy:        #1B3A5C;
  --fp-navy-dark:   #122841;
  --fp-navy-light:  #2A5580;
  --fp-gold:        #C5993A;
  --fp-gold-light:  #D4AD5C;
  --fp-gold-dark:   #A67E2E;
  --fp-teal:        #3A8C8C;
  --fp-teal-light:  #4AACAC;
  --fp-cream:       #F4F0EB;
  --fp-cream-dark:  #E8E2D9;
  --fp-white:       #FFFFFF;
  --fp-dark:        #1A1A1A;
  --fp-gray-900:    #2C2C2C;
  --fp-gray-700:    #555555;
  --fp-gray-500:    #888888;
  --fp-gray-300:    #CCCCCC;
  --fp-gray-100:    #F5F5F5;
  --fp-success:     #2E7D32;
  --fp-error:       #C62828;

  /* Typography */
  --fp-font-display: 'DM Serif Display', Georgia, serif;
  --fp-font-heading: 'Outfit', 'Helvetica Neue', sans-serif;
  --fp-font-body:    'Outfit', 'Helvetica Neue', sans-serif;

  /* Spacing Scale */
  --fp-space-xs:  0.25rem;
  --fp-space-sm:  0.5rem;
  --fp-space-md:  1rem;
  --fp-space-lg:  1.5rem;
  --fp-space-xl:  2rem;
  --fp-space-2xl: 3rem;
  --fp-space-3xl: 4rem;
  --fp-space-4xl: 6rem;
  --fp-space-5xl: 8rem;

  /* Layout */
  --fp-container:    1200px;
  --fp-container-sm: 800px;
  --fp-container-lg: 1400px;
  --fp-radius:       6px;
  --fp-radius-lg:    12px;
  --fp-radius-xl:    20px;

  /* Shadows */
  --fp-shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --fp-shadow-md:  0 4px 12px rgba(0,0,0,0.1);
  --fp-shadow-lg:  0 8px 30px rgba(0,0,0,0.12);
  --fp-shadow-xl:  0 16px 50px rgba(0,0,0,0.15);

  /* Transitions */
  --fp-ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --fp-ease-out:  cubic-bezier(0, 0, 0.2, 1);
  --fp-duration:  0.3s;
}


/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--fp-font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--fp-gray-900);
  background-color: var(--fp-white);
  overflow-x: hidden;
}

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

a {
  color: var(--fp-navy);
  text-decoration: none;
  transition: color var(--fp-duration) var(--fp-ease);
}

a:hover {
  color: var(--fp-gold);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--fp-font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--fp-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.625rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--fp-gray-700);
}

p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   UTILITIES
   ========================================================================== */

.fp-container {
  width: 100%;
  max-width: var(--fp-container);
  margin: 0 auto;
  padding: 0 var(--fp-space-lg);
}

.fp-container--sm {
  max-width: var(--fp-container-sm);
}

.fp-container--lg {
  max-width: var(--fp-container-lg);
}

.fp-section {
  padding: var(--fp-space-4xl) 0;
}

.fp-section--cream {
  background-color: var(--fp-cream);
}

.fp-section--navy {
  background-color: var(--fp-navy);
  color: var(--fp-white);
}

.fp-section--navy h2,
.fp-section--navy h3,
.fp-section--navy h4 {
  color: var(--fp-white);
}

.fp-section--navy p {
  color: rgba(255,255,255,0.85);
}

.fp-text-center { text-align: center; }

.fp-section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--fp-space-3xl);
}

.fp-section-header h2 {
  margin-bottom: var(--fp-space-md);
}

.fp-section-header p {
  font-size: 1.125rem;
}

.fp-label {
  display: inline-block;
  font-family: var(--fp-font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fp-gold);
  margin-bottom: var(--fp-space-sm);
}

.fp-divider {
  width: 60px;
  height: 3px;
  background: var(--fp-gold);
  margin: var(--fp-space-lg) auto;
  border: none;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.fp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--fp-font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--fp-radius);
  cursor: pointer;
  transition: all var(--fp-duration) var(--fp-ease);
  text-decoration: none;
  line-height: 1;
}

.fp-btn--primary {
  background: var(--fp-gold);
  color: var(--fp-white);
  border-color: var(--fp-gold);
}

.fp-btn--primary:hover {
  background: var(--fp-gold-dark);
  border-color: var(--fp-gold-dark);
  color: var(--fp-white);
  transform: translateY(-2px);
  box-shadow: var(--fp-shadow-md);
}

.fp-btn--secondary {
  background: transparent;
  color: var(--fp-navy);
  border-color: var(--fp-navy);
}

.fp-btn--secondary:hover {
  background: var(--fp-navy);
  color: var(--fp-white);
  transform: translateY(-2px);
}

.fp-btn--white {
  background: var(--fp-white);
  color: var(--fp-navy);
  border-color: var(--fp-white);
}

.fp-btn--white:hover {
  background: transparent;
  color: var(--fp-white);
  border-color: var(--fp-white);
  transform: translateY(-2px);
}

.fp-btn--ghost-white {
  background: transparent;
  color: var(--fp-white);
  border-color: rgba(255,255,255,0.5);
}

.fp-btn--ghost-white:hover {
  background: var(--fp-white);
  color: var(--fp-navy);
  border-color: var(--fp-white);
  transform: translateY(-2px);
}

.fp-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--fp-space-md);
}


/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.fp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: all var(--fp-duration) var(--fp-ease);
}

.fp-header.scrolled {
  box-shadow: var(--fp-shadow-md);
}

.fp-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--fp-container-lg);
  margin: 0 auto;
  padding: 0 var(--fp-space-lg);
}

.fp-header__logo a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--fp-font-display);
  font-size: 1.375rem;
  color: var(--fp-navy);
  text-decoration: none;
}

.fp-header__logo img {
  height: 48px;
  width: auto;
}

.fp-header__logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.fp-header__logo .logo-text span {
  font-family: var(--fp-font-heading);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fp-gray-500);
}

.fp-nav {
  display: flex;
  align-items: center;
  gap: var(--fp-space-xl);
}

.fp-nav__menu {
  display: flex;
  list-style: none;
  gap: var(--fp-space-lg);
}

.fp-nav__menu li a {
  font-family: var(--fp-font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fp-gray-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  position: relative;
}

.fp-nav__menu li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fp-gold);
  transition: width var(--fp-duration) var(--fp-ease);
}

.fp-nav__menu li a:hover::after,
.fp-nav__menu li.current-menu-item a::after {
  width: 100%;
}

.fp-nav__menu li.current-menu-item a {
  color: var(--fp-navy);
  font-weight: 600;
}

.fp-nav__cta .fp-btn {
  padding: 0.625rem 1.5rem;
  font-size: 0.8125rem;
}

.fp-nav__phone {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--fp-font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--fp-navy);
}

.fp-nav__phone svg {
  width: 16px;
  height: 16px;
}

/* Mobile Menu Toggle */
.fp-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.fp-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fp-navy);
  margin: 5px 0;
  transition: all 0.3s ease;
}

.fp-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.fp-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.fp-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav */
@media (max-width: 1024px) {
  .fp-hamburger {
    display: block;
  }

  .fp-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--fp-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px var(--fp-space-xl) var(--fp-space-xl);
    box-shadow: var(--fp-shadow-xl);
    transition: right 0.4s var(--fp-ease);
    gap: var(--fp-space-lg);
    overflow-y: auto;
  }

  .fp-nav.open {
    right: 0;
  }

  .fp-nav__menu {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }

  .fp-nav__menu li a {
    display: block;
    padding: var(--fp-space-md) 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--fp-gray-100);
  }

  .fp-nav__cta {
    width: 100%;
  }

  .fp-nav__cta .fp-btn {
    width: 100%;
  }

  .fp-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .fp-mobile-overlay.active {
    display: block;
  }
}


/* ==========================================================================
   HERO
   ========================================================================== */

.fp-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 80px;
}

.fp-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.fp-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(27, 58, 92, 0.88) 0%,
    rgba(27, 58, 92, 0.65) 50%,
    rgba(27, 58, 92, 0.4) 100%
  );
}

.fp-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: var(--fp-space-4xl) 0;
}

.fp-hero__badge {
  display: inline-block;
  font-family: var(--fp-font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fp-gold);
  background: rgba(197, 153, 58, 0.15);
  border: 1px solid rgba(197, 153, 58, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  margin-bottom: var(--fp-space-lg);
}

.fp-hero h1 {
  color: var(--fp-white);
  font-family: var(--fp-font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: var(--fp-space-lg);
}

.fp-hero p {
  color: rgba(255,255,255,0.9);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--fp-space-xl);
  max-width: 560px;
}

.fp-hero__stats {
  display: flex;
  gap: var(--fp-space-2xl);
  margin-top: var(--fp-space-2xl);
  padding-top: var(--fp-space-xl);
  border-top: 1px solid rgba(255,255,255,0.15);
}

.fp-hero__stat {
  text-align: left;
}

.fp-hero__stat-number {
  font-family: var(--fp-font-display);
  font-size: 2rem;
  color: var(--fp-gold);
  line-height: 1;
}

.fp-hero__stat-label {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}


/* ==========================================================================
   FEATURE CARDS (Value Props on Home)
   ========================================================================== */

.fp-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fp-space-xl);
  margin-top: calc(-1 * var(--fp-space-4xl));
  position: relative;
  z-index: 10;
}

.fp-feature-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius-lg);
  padding: var(--fp-space-2xl);
  box-shadow: var(--fp-shadow-lg);
  transition: transform var(--fp-duration) var(--fp-ease), box-shadow var(--fp-duration) var(--fp-ease);
  border-bottom: 3px solid transparent;
}

.fp-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--fp-shadow-xl);
  border-bottom-color: var(--fp-gold);
}

.fp-feature-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--fp-radius);
  background: var(--fp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--fp-space-lg);
  color: var(--fp-navy);
}

.fp-feature-card__icon svg {
  width: 28px;
  height: 28px;
}

.fp-feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: var(--fp-space-sm);
}

.fp-feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .fp-features {
    grid-template-columns: 1fr;
    margin-top: calc(-1 * var(--fp-space-2xl));
  }
}


/* ==========================================================================
   FLOOR PLANS
   ========================================================================== */

.fp-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fp-space-xl);
}

.fp-plan-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  box-shadow: var(--fp-shadow-md);
  transition: all var(--fp-duration) var(--fp-ease);
  border: 1px solid var(--fp-gray-100);
}

.fp-plan-card:hover {
  box-shadow: var(--fp-shadow-xl);
  transform: translateY(-4px);
}

.fp-plan-card.featured {
  border-color: var(--fp-gold);
  position: relative;
}

.fp-plan-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: var(--fp-space-md);
  right: var(--fp-space-md);
  z-index: 2;
  font-family: var(--fp-font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--fp-gold);
  color: var(--fp-white);
  padding: 0.375rem 0.875rem;
  border-radius: 50px;
}

.fp-plan-card__image {
  position: relative;
  aspect-ratio: 16/10;
  background: var(--fp-cream);
  overflow: hidden;
}

.fp-plan-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--fp-ease);
}

.fp-plan-card:hover .fp-plan-card__image img {
  transform: scale(1.05);
}

.fp-plan-card__body {
  padding: var(--fp-space-xl);
}

.fp-plan-card__name {
  font-family: var(--fp-font-display);
  font-size: 1.5rem;
  color: var(--fp-navy);
  margin-bottom: var(--fp-space-xs);
}

.fp-plan-card__subtitle {
  font-size: 0.875rem;
  color: var(--fp-gray-500);
  margin-bottom: var(--fp-space-lg);
}

.fp-plan-card__details {
  display: flex;
  gap: var(--fp-space-lg);
  padding: var(--fp-space-md) 0;
  border-top: 1px solid var(--fp-gray-100);
  border-bottom: 1px solid var(--fp-gray-100);
  margin-bottom: var(--fp-space-lg);
}

.fp-plan-card__detail {
  text-align: center;
  flex: 1;
}

.fp-plan-card__detail-value {
  font-family: var(--fp-font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fp-navy);
  line-height: 1;
}

.fp-plan-card__detail-label {
  font-size: 0.75rem;
  color: var(--fp-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

.fp-plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: var(--fp-space-lg);
}

.fp-plan-card__price-label {
  font-size: 0.8125rem;
  color: var(--fp-gray-500);
}

.fp-plan-card__price-amount {
  font-family: var(--fp-font-display);
  font-size: 1.75rem;
  color: var(--fp-navy);
}

.fp-plan-card__price-period {
  font-size: 0.875rem;
  color: var(--fp-gray-500);
}

.fp-plan-card__features {
  list-style: none;
  margin-bottom: var(--fp-space-lg);
}

.fp-plan-card__features li {
  font-size: 0.9rem;
  color: var(--fp-gray-700);
  padding: 0.375rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.fp-plan-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--fp-teal);
  font-weight: 700;
}

.fp-plan-card__cta {
  width: 100%;
}

@media (max-width: 992px) {
  .fp-plans {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
}


/* ==========================================================================
   AMENITIES
   ========================================================================== */

.fp-amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--fp-space-lg);
}

.fp-amenity {
  text-align: center;
  padding: var(--fp-space-xl) var(--fp-space-lg);
  border-radius: var(--fp-radius-lg);
  background: var(--fp-white);
  border: 1px solid var(--fp-gray-100);
  transition: all var(--fp-duration) var(--fp-ease);
}

.fp-amenity:hover {
  border-color: var(--fp-gold);
  box-shadow: var(--fp-shadow-md);
  transform: translateY(-3px);
}

.fp-amenity__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--fp-space-md);
  background: var(--fp-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-navy);
}

.fp-amenity__icon svg {
  width: 28px;
  height: 28px;
}

.fp-amenity h4 {
  font-size: 1rem;
  margin-bottom: 0.375rem;
}

.fp-amenity p {
  font-size: 0.8125rem;
  color: var(--fp-gray-500);
  margin: 0;
}

@media (max-width: 992px) {
  .fp-amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ==========================================================================
   NEIGHBORHOOD / COMMUNITY
   ========================================================================== */

.fp-neighborhood__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fp-space-3xl);
  align-items: center;
}

.fp-neighborhood__split.reverse {
  direction: rtl;
}

.fp-neighborhood__split.reverse > * {
  direction: ltr;
}

.fp-neighborhood__image {
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  box-shadow: var(--fp-shadow-lg);
}

.fp-neighborhood__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.fp-neighborhood__text h3 {
  margin-bottom: var(--fp-space-md);
}

.fp-poi-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--fp-space-md);
  margin-top: var(--fp-space-xl);
}

.fp-poi {
  display: flex;
  align-items: flex-start;
  gap: var(--fp-space-sm);
  padding: var(--fp-space-md);
  background: var(--fp-cream);
  border-radius: var(--fp-radius);
}

.fp-poi__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--fp-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-teal);
}

.fp-poi__icon svg {
  width: 16px;
  height: 16px;
}

.fp-poi__name {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fp-navy);
  line-height: 1.3;
}

.fp-poi__distance {
  font-size: 0.75rem;
  color: var(--fp-gray-500);
}

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

  .fp-neighborhood__split.reverse {
    direction: ltr;
  }

  .fp-poi-list {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   GALLERY
   ========================================================================== */

.fp-gallery-tabs {
  display: flex;
  justify-content: center;
  gap: var(--fp-space-sm);
  margin-bottom: var(--fp-space-2xl);
  flex-wrap: wrap;
}

.fp-gallery-tab {
  font-family: var(--fp-font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--fp-gray-300);
  border-radius: 50px;
  background: transparent;
  color: var(--fp-gray-700);
  cursor: pointer;
  transition: all var(--fp-duration) var(--fp-ease);
}

.fp-gallery-tab.active,
.fp-gallery-tab:hover {
  background: var(--fp-navy);
  color: var(--fp-white);
  border-color: var(--fp-navy);
}

.fp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--fp-space-md);
}

.fp-gallery-item {
  border-radius: var(--fp-radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 4/3;
}

.fp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--fp-ease);
}

.fp-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0);
  transition: background var(--fp-duration) var(--fp-ease);
}

.fp-gallery-item:hover img {
  transform: scale(1.08);
}

.fp-gallery-item:hover::after {
  background: rgba(27, 58, 92, 0.2);
}

.fp-gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 768px) {
  .fp-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fp-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
  }
}


/* ==========================================================================
   CTA BAND
   ========================================================================== */

.fp-cta-band {
  background: var(--fp-navy);
  position: relative;
  overflow: hidden;
}

.fp-cta-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(197, 153, 58, 0.08);
}

.fp-cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--fp-space-2xl);
  padding: var(--fp-space-3xl) 0;
  position: relative;
  z-index: 1;
}

.fp-cta-band h2 {
  color: var(--fp-white);
  font-family: var(--fp-font-display);
  margin-bottom: 0.5rem;
}

.fp-cta-band p {
  color: rgba(255,255,255,0.75);
  margin: 0;
  font-size: 1.0625rem;
}

@media (max-width: 768px) {
  .fp-cta-band__inner {
    flex-direction: column;
    text-align: center;
  }
}


/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.fp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fp-space-3xl);
}

.fp-contact-info__item {
  display: flex;
  align-items: flex-start;
  gap: var(--fp-space-md);
  margin-bottom: var(--fp-space-xl);
}

.fp-contact-info__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: var(--fp-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fp-navy);
}

.fp-contact-info__icon svg {
  width: 20px;
  height: 20px;
}

.fp-contact-info__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fp-gray-500);
  margin-bottom: 0.125rem;
}

.fp-contact-info__value {
  font-weight: 600;
  color: var(--fp-navy);
  font-size: 1.0625rem;
}

.fp-form {
  background: var(--fp-white);
  border-radius: var(--fp-radius-lg);
  padding: var(--fp-space-2xl);
  box-shadow: var(--fp-shadow-lg);
}

.fp-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--fp-space-md);
  margin-bottom: var(--fp-space-md);
}

.fp-form__field {
  margin-bottom: var(--fp-space-md);
}

.fp-form__label {
  display: block;
  font-family: var(--fp-font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fp-navy);
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fp-form__input,
.fp-form__select,
.fp-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--fp-font-body);
  font-size: 0.9375rem;
  border: 1px solid var(--fp-gray-300);
  border-radius: var(--fp-radius);
  background: var(--fp-white);
  color: var(--fp-gray-900);
  transition: border-color var(--fp-duration) var(--fp-ease);
}

.fp-form__input:focus,
.fp-form__select:focus,
.fp-form__textarea:focus {
  outline: none;
  border-color: var(--fp-navy);
  box-shadow: 0 0 0 3px rgba(27, 58, 92, 0.1);
}

.fp-form__textarea {
  resize: vertical;
  min-height: 120px;
}

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

  .fp-form__row {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   FAQ
   ========================================================================== */

.fp-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.fp-faq-item {
  border-bottom: 1px solid var(--fp-gray-100);
}

.fp-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--fp-space-lg) 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fp-font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--fp-navy);
  text-align: left;
  line-height: 1.4;
}

.fp-faq-question__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--fp-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--fp-space-md);
  transition: transform var(--fp-duration) var(--fp-ease), background var(--fp-duration) var(--fp-ease);
}

.fp-faq-item.active .fp-faq-question__icon {
  transform: rotate(45deg);
  background: var(--fp-gold);
  color: var(--fp-white);
}

.fp-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--fp-ease);
}

.fp-faq-answer__inner {
  padding-bottom: var(--fp-space-lg);
}

.fp-faq-answer p {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.fp-faq-item.active .fp-faq-answer {
  max-height: 500px;
}


/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.fp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fp-space-xl);
}

.fp-testimonial {
  background: var(--fp-white);
  border-radius: var(--fp-radius-lg);
  padding: var(--fp-space-2xl);
  box-shadow: var(--fp-shadow-sm);
  border: 1px solid var(--fp-gray-100);
  position: relative;
}

.fp-testimonial__stars {
  color: var(--fp-gold);
  font-size: 1.125rem;
  margin-bottom: var(--fp-space-md);
}

.fp-testimonial p {
  font-style: italic;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: var(--fp-space-lg);
}

.fp-testimonial__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fp-navy);
}

.fp-testimonial__role {
  font-size: 0.8125rem;
  color: var(--fp-gray-500);
}

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


/* ==========================================================================
   PAGE HEADER (Interior Pages)
   ========================================================================== */

.fp-page-header {
  background: var(--fp-navy);
  padding: var(--fp-space-4xl) 0 var(--fp-space-3xl);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.fp-page-header::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -50px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(197, 153, 58, 0.06);
}

.fp-page-header__content {
  position: relative;
  z-index: 1;
}

.fp-page-header h1 {
  color: var(--fp-white);
  font-family: var(--fp-font-display);
  margin-bottom: 0.5rem;
}

.fp-page-header p {
  color: rgba(255,255,255,0.75);
  font-size: 1.125rem;
  max-width: 600px;
}

.fp-breadcrumbs {
  margin-bottom: var(--fp-space-lg);
}

.fp-breadcrumbs a,
.fp-breadcrumbs span {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

.fp-breadcrumbs a:hover {
  color: var(--fp-gold);
}

.fp-breadcrumbs .separator {
  margin: 0 0.5rem;
}


/* ==========================================================================
   SPECIALS BANNER
   ========================================================================== */

.fp-specials-bar {
  background: var(--fp-gold);
  color: var(--fp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem var(--fp-space-lg);
  font-family: var(--fp-font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
}

.fp-specials-bar__text {
  text-align: center;
  flex: 1;
}

.fp-specials-bar a {
  color: var(--fp-white);
  text-decoration: underline;
  margin-left: 0.5rem;
}

.fp-specials-bar__close {
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.fp-specials-bar__close:hover {
  opacity: 1;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.fp-footer {
  background: var(--fp-dark);
  color: rgba(255,255,255,0.7);
  padding: var(--fp-space-4xl) 0 0;
}

.fp-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--fp-space-3xl);
  padding-bottom: var(--fp-space-3xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fp-footer__brand {
  font-family: var(--fp-font-display);
  font-size: 1.5rem;
  color: var(--fp-white);
  margin-bottom: var(--fp-space-md);
}

.fp-footer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.fp-footer h4 {
  color: var(--fp-white);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--fp-space-lg);
}

.fp-footer__links {
  list-style: none;
}

.fp-footer__links li {
  margin-bottom: 0.625rem;
}

.fp-footer__links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--fp-duration) var(--fp-ease);
}

.fp-footer__links a:hover {
  color: var(--fp-gold);
}

.fp-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--fp-space-md);
  font-size: 0.9rem;
}

.fp-footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--fp-gold);
}

.fp-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--fp-space-lg) 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.fp-footer__social {
  display: flex;
  gap: var(--fp-space-md);
}

.fp-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--fp-duration) var(--fp-ease);
}

.fp-footer__social a:hover {
  background: var(--fp-gold);
  color: var(--fp-white);
}

.fp-footer__social svg {
  width: 16px;
  height: 16px;
}

.fp-eho {
  display: flex;
  align-items: center;
  gap: var(--fp-space-sm);
}

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

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

  .fp-footer__bottom {
    flex-direction: column;
    gap: var(--fp-space-md);
    text-align: center;
  }
}


/* ==========================================================================
   MAP EMBED
   ========================================================================== */

.fp-map {
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  box-shadow: var(--fp-shadow-lg);
}

.fp-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}


/* ==========================================================================
   BLOG / POSTS
   ========================================================================== */

.fp-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--fp-space-xl);
}

.fp-post-card {
  background: var(--fp-white);
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  box-shadow: var(--fp-shadow-sm);
  border: 1px solid var(--fp-gray-100);
  transition: all var(--fp-duration) var(--fp-ease);
}

.fp-post-card:hover {
  box-shadow: var(--fp-shadow-lg);
  transform: translateY(-3px);
}

.fp-post-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.fp-post-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fp-post-card__body {
  padding: var(--fp-space-xl);
}

.fp-post-card__meta {
  font-size: 0.75rem;
  color: var(--fp-gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.fp-post-card__title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.fp-post-card__title a {
  color: var(--fp-navy);
}

.fp-post-card__title a:hover {
  color: var(--fp-gold);
}

.fp-post-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--fp-gray-700);
}

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


/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

.fp-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--fp-ease-out), transform 0.8s var(--fp-ease-out);
}

.fp-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fp-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--fp-ease-out), transform 0.6s var(--fp-ease-out);
}

.fp-stagger.visible > *:nth-child(1) { transition-delay: 0s; opacity: 1; transform: translateY(0); }
.fp-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.fp-stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.fp-stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.fp-stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.fp-stagger.visible > *:nth-child(6) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
.fp-stagger.visible > *:nth-child(7) { transition-delay: 0.6s; opacity: 1; transform: translateY(0); }
.fp-stagger.visible > *:nth-child(8) { transition-delay: 0.7s; opacity: 1; transform: translateY(0); }


/* ==========================================================================
   MOBILE STICKY CTA BAR
   ========================================================================== */

.fp-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--fp-white);
  border-top: 1px solid var(--fp-gray-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  padding: 0.5rem;
  gap: 0.5rem;
}

@media (max-width: 768px) {
  .fp-sticky-cta {
    display: flex;
  }

  /* Add padding to body so footer content isn't hidden behind sticky bar */
  body {
    padding-bottom: 72px;
  }
}

.fp-sticky-cta__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  padding: 0.75rem 0.5rem;
  font-family: var(--fp-font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: var(--fp-radius);
  transition: all var(--fp-duration) var(--fp-ease);
  line-height: 1;
}

.fp-sticky-cta__btn--tour {
  background: var(--fp-gold);
  color: var(--fp-white);
}

.fp-sticky-cta__btn--apply {
  background: var(--fp-navy);
  color: var(--fp-white);
}

.fp-sticky-cta__btn--call {
  background: var(--fp-gray-100);
  color: var(--fp-navy);
}

.fp-sticky-cta__btn svg {
  width: 16px;
  height: 16px;
}


/* ==========================================================================
   HCV BADGE
   ========================================================================== */

.fp-hcv-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: rgba(46, 125, 50, 0.08);
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 50px;
  font-family: var(--fp-font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--fp-success);
  margin-top: var(--fp-space-md);
}

.fp-hcv-badge__icon {
  display: flex;
  color: var(--fp-success);
}

.fp-hcv-badge__icon svg {
  width: 16px;
  height: 16px;
}


/* ==========================================================================
   APPFOLIO EMBED
   ========================================================================== */

.fp-appfolio-embed {
  border-radius: var(--fp-radius-lg);
  overflow: hidden;
  box-shadow: var(--fp-shadow-lg);
  border: 1px solid var(--fp-gray-100);
}

.fp-appfolio-embed iframe {
  width: 100%;
  min-height: 600px;
  border: none;
}

@media (max-width: 768px) {
  .fp-appfolio-embed iframe {
    min-height: 500px;
  }
}


/* ==========================================================================
   WORDPRESS CORE OVERRIDES
   ========================================================================== */

.alignwide {
  max-width: var(--fp-container-lg);
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.wp-block-image img {
  border-radius: var(--fp-radius);
}

.entry-content > * + * {
  margin-top: var(--fp-space-lg);
}

.entry-content h2 {
  margin-top: var(--fp-space-3xl);
}

.entry-content p {
  max-width: 72ch;
}
