/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
:root {
  --forest: #2c4a3e;
  --forest-light: #3d6854;
  --earth: #8b7355;
  --earth-light: #a69076;
  --cream: #faf8f5;
  --sage: #e8ede9;
  --charcoal: #2d2d2d;
  --text-dark: #3a3a3a;
  --text-muted: #6b6b6b;
}

/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 400;
  line-height: 1.3;
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: var(--earth);
}

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

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 30px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header.header-home {
  position: absolute;
  background: transparent;
}
.site-header.header-home .nav-link {
  color: white;
}
.site-header.header-home .nav-link:hover {
  color: rgba(255, 255, 255, 0.7);
}
.site-header.header-home .nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
}
.site-header.header-home .nav-cta:hover {
  background: white;
  color: var(--forest);
  border-color: white;
}
.site-header.header-home .mobile-nav-toggle .hamburger-line {
  background-color: white;
}
.site-header.header-interior {
  position: fixed;
  background: white;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  padding: 20px 60px;
}
.site-header.header-interior .nav-link {
  color: var(--text-dark);
}
.site-header.header-interior .nav-link:hover, .site-header.header-interior .nav-link.active {
  color: var(--forest);
}
.site-header.header-interior .nav-cta {
  background: var(--forest);
  color: white;
  border: none;
}
.site-header.header-interior .nav-cta:hover {
  background: var(--forest-light);
  color: white;
}
.site-header.header-interior .mobile-nav-toggle .hamburger-line {
  background-color: var(--forest);
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}
.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1002;
}

.logo-image {
  height: 75px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
}

.logo-text {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 26px;
  letter-spacing: 3px;
  color: white;
}

.logo-tagline {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.nav-cta {
  padding: 12px 28px;
  transition: all 0.3s;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
}

.dropdown-arrow {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 15px 0;
  margin-top: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  list-style: none;
  z-index: 1001;
}
.sub-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  margin-top: 10px;
}

.dropdown-item {
  padding: 0;
}

.dropdown-link {
  display: block;
  padding: 10px 25px;
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  transition: all 0.2s ease;
  text-transform: none;
}
.dropdown-link:hover {
  background: var(--sage);
  color: var(--forest);
}

.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--forest);
  margin: 3px 0;
  transition: all 0.3s ease;
}

.mobile-nav-toggle.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-nav-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-nav-toggle.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background: white;
  z-index: 1001;
  transition: right 0.3s ease;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.mobile-nav.is-open {
  right: 0;
}

.mobile-nav-inner {
  padding: 100px 30px 40px;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li {
  border-bottom: 1px solid var(--sage);
}
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  font-weight: 400;
  transition: color 0.3s ease;
}
.mobile-menu a:hover {
  color: var(--forest);
}
.mobile-menu .sub-menu {
  position: static;
  transform: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  margin: 0;
  padding: 0 0 10px 20px;
  background: transparent;
}
.mobile-menu .sub-menu li {
  border-bottom: none;
}
.mobile-menu .sub-menu a {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.mobile-cta {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: var(--forest);
  color: white !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
}
.mobile-cta:hover {
  background: var(--forest-light);
  color: white;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

body.mobile-nav-open {
  overflow: hidden;
}

.site-footer {
  background: var(--charcoal);
  color: white;
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand .logo-text {
  color: white;
  font-size: 22px;
  margin-bottom: 20px;
  display: block;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.8;
}

.footer-logo {
  height: 70px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 20px;
}

.footer-title {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
  color: var(--earth-light);
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-links a:hover {
  color: white;
}

.footer-contact p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--forest);
  border-color: var(--forest);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-bar {
  background: white;
  padding: 18px 60px;
  border-bottom: 1px solid var(--sage);
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-item {
  font-size: 13px;
  letter-spacing: 0.5px;
}
.breadcrumb-item a {
  color: var(--text-muted);
}
.breadcrumb-item a:hover {
  color: var(--forest);
}
.breadcrumb-item.active {
  color: var(--forest);
}
.breadcrumb-item::before {
  content: "/";
  margin-right: 10px;
  color: var(--text-muted);
}
.breadcrumb-item:first-child::before {
  content: none;
}

/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
.home-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  max-height: 700px;
  margin-top: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.home-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(44, 74, 62, 0.3) 0%, rgba(44, 74, 62, 0.45) 50%, rgba(44, 74, 62, 0.6) 100%);
}

.home-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 30px;
}

.home-hero-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
  opacity: 0.85;
  display: block;
}

.home-hero-title {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 50px;
  margin-bottom: 25px;
  font-weight: 400;
  line-height: 1.2;
}

.home-hero-text {
  font-size: 18px;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 650px;
  margin: 0 auto 30px;
  font-weight: 300;
}

.scroll-hint {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  text-align: center;
  opacity: 0.7;
}
.scroll-hint span {
  display: block;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, white, transparent);
  margin: 0 auto;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(44, 74, 62, 0.3) 0%, rgba(44, 74, 62, 0.4) 50%, rgba(44, 74, 62, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  max-width: 900px;
  padding: 0 30px;
}

.hero-label {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 25px;
  opacity: 0.8;
}

.hero-title {
  font-size: 56px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.2;
}

.hero-text {
  font-size: 20px;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 300;
}

.page-hero {
  padding-top: 100px;
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero.page-hero-tall {
  height: 65vh;
  min-height: 500px;
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(44, 74, 62, 0.7) 0%, rgba(44, 74, 62, 0.5) 100%);
}
.page-hero-bg.page-hero-bg-gradient::after {
  background: linear-gradient(to right, rgba(44, 74, 62, 0.85) 0%, rgba(44, 74, 62, 0.6) 50%, rgba(44, 74, 62, 0.3) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  width: 100%;
  padding: 0 30px;
}
.page-hero-content.page-hero-content-left {
  text-align: left;
  max-width: 650px;
  padding: 0 60px;
}

.page-hero-label {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 18px;
}

.page-hero-title {
  font-size: 48px;
  margin-bottom: 15px;
}
.page-hero-title.page-hero-title-lg {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1.15;
}

.page-hero-text {
  font-size: 18px;
  opacity: 0.95;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
.section {
  padding: 120px 0;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px;
}

.section-label {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.section-text {
  color: var(--text-muted);
  font-size: 17px;
}

.vision-section {
  background: white;
}

.vision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.vision-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.vision-images img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.vision-images img:first-child {
  grid-column: span 2;
  height: 280px;
}

.vision-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
.vision-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 17px;
}

.stats-section {
  background: var(--forest);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
  color: white;
}

.stat-number {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 48px;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

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

.homes-showcase {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}

.homes-secondary {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.features-section {
  background: var(--sage);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.land-section {
  position: relative;
  padding: 0;
}

.land-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.land-image {
  height: 600px;
  background-size: cover;
  background-position: center;
}

.land-content {
  background: var(--forest);
  color: white;
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.land-content .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.land-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: white;
}
.land-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 20px;
  line-height: 1.9;
}

.builder-section {
  background: white;
}

.builder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.builder-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
.builder-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 17px;
}

.builder-features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}
.builder-features li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sage);
  font-size: 15px;
}
.builder-features li i {
  color: var(--forest);
  font-size: 18px;
}

.builder-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.testimonial-section {
  background: var(--cream);
  text-align: center;
  padding: 100px 0;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-icon {
  font-size: 40px;
  color: var(--forest);
  opacity: 0.3;
  margin-bottom: 30px;
}

.testimonial-quote {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 26px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 35px;
  color: var(--text-dark);
}

.testimonial-author {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
}

.testimonial-title {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 5px;
}

.cta-section {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: 150px 0;
}
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 74, 62, 0.85);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}
.cta-content h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.cta-content p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 35px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.intro-section {
  background: white;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.intro-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
}
.intro-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 17px;
}

.intro-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.highlight-quote {
  background: var(--forest);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.quote-content {
  max-width: 850px;
  margin: 0 auto;
}

.quote-icon {
  font-size: 36px;
  opacity: 0.3;
  margin-bottom: 25px;
}

.quote-text {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.6;
}

.lifestyle-section {
  background: white;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.location-section {
  padding: 0;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.location-image {
  height: 550px;
  background-size: cover;
  background-position: center;
}

.location-content {
  background: var(--forest);
  color: white;
  padding: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.location-content .section-label {
  color: rgba(255, 255, 255, 0.6);
}
.location-content h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: white;
}
.location-content p {
  font-size: 17px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.location-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.location-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  opacity: 0.9;
}
.location-list li i {
  color: var(--earth-light);
}

.land-features {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}
.land-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-dark);
}
.land-features li i {
  color: var(--forest);
  font-size: 16px;
}

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

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  height: 250px;
}
.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: auto;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 74, 62, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  color: white;
  font-size: 28px;
}

.hero-cta {
  display: inline-block;
  padding: 16px 45px;
  background: white;
  color: var(--forest);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.hero-cta:hover {
  background: var(--cream);
  color: var(--forest);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-block;
  padding: 16px 45px;
  background: white;
  color: var(--forest);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
}
.btn-white:hover {
  background: var(--cream);
  color: var(--forest);
}

.btn-outline-light {
  display: inline-block;
  padding: 14px 35px;
  border: 1px solid white;
  color: white;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-outline-light:hover {
  background: white;
  color: var(--forest);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
  margin-top: 15px;
}
.text-link i {
  transition: transform 0.3s;
}
.text-link:hover {
  color: var(--earth);
}
.text-link:hover i {
  transform: translateX(5px);
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 500;
}
.read-more i {
  transition: transform 0.3s;
}
.read-more:hover i {
  transform: translateX(5px);
}

.home-featured {
  position: relative;
  overflow: hidden;
}
.home-featured img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-featured:hover img {
  transform: scale(1.03);
}

.home-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

.home-tag {
  display: inline-block;
  padding: 6px 15px;
  background: var(--forest);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.home-featured h3 {
  font-size: 32px;
  margin-bottom: 10px;
}

.home-featured p {
  font-size: 16px;
  opacity: 0.9;
}

.home-card {
  position: relative;
  overflow: hidden;
  flex: 1;
}
.home-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.home-card:hover img {
  transform: scale(1.05);
}

.home-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  color: white;
}
.home-card-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.home-card-content p {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}

.feature-item {
  text-align: center;
  padding: 50px 35px;
  background: white;
  transition: all 0.3s ease;
}
.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 74, 62, 0.1);
}
.feature-item h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.feature-item p {
  color: var(--text-muted);
  font-size: 15px;
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sage);
  border-radius: 50%;
  color: var(--forest);
  font-size: 28px;
}

.feature-card {
  background: white;
  padding: 45px 35px;
  text-align: center;
  transition: all 0.3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(44, 74, 62, 0.12);
}
.feature-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 0;
}

.lifestyle-card {
  position: relative;
  overflow: hidden;
  height: 400px;
}
.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.lifestyle-card:hover img {
  transform: scale(1.05);
}

.lifestyle-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 35px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}
.lifestyle-card-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.lifestyle-card-content p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
.blog-section {
  padding: 80px 0;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
}

.featured-post {
  margin-bottom: 60px;
}

.featured-post-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.featured-post-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.featured-post:hover .featured-post-image img {
  transform: scale(1.03);
}

.featured-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--forest);
  color: white;
  padding: 8px 18px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.featured-post-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
}
.featured-post-content h2 a {
  color: var(--text-dark);
}
.featured-post-content h2 a:hover {
  color: var(--forest);
}
.featured-post-content p {
  color: var(--text-muted);
  font-size: 17px;
  margin-bottom: 20px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-meta i {
  color: var(--forest);
  font-size: 14px;
}

.post-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--sage);
}
.post-card:last-child {
  border-bottom: none;
}

.post-card-image {
  position: relative;
  overflow: hidden;
}
.post-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-image img {
  transform: scale(1.05);
}

.post-category {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--earth);
  color: white;
  padding: 5px 12px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.post-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.post-card-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.post-card-content h3 a {
  color: var(--text-dark);
}
.post-card-content h3 a:hover {
  color: var(--forest);
}
.post-card-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 15px;
}

.pagination-wrapper {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid var(--sage);
  color: var(--text-dark);
  font-size: 14px;
  transition: all 0.3s;
}
.pagination-link:hover, .pagination-link.active {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

.single-post-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.single-post-category {
  display: inline-block;
  background: var(--forest);
  color: white;
  padding: 8px 20px;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.single-post-title {
  font-size: 42px;
  margin-bottom: 25px;
  line-height: 1.2;
}

.single-post-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  color: var(--text-muted);
  font-size: 14px;
}
.single-post-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.single-post-meta i {
  color: var(--forest);
}

.single-post-image {
  margin-bottom: 50px;
}
.single-post-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.single-post-content {
  max-width: 750px;
  margin: 0 auto;
}
.single-post-content p {
  font-size: 17px;
  margin-bottom: 25px;
  color: var(--text-dark);
}
.single-post-content h3 {
  font-size: 26px;
  margin: 40px 0 20px;
}
.single-post-content blockquote {
  border-left: 3px solid var(--forest);
  padding: 25px 35px;
  margin: 35px 0;
  background: white;
  font-family: "Libre Baskerville", Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--text-dark);
}
.single-post-content ul {
  margin: 25px 0;
  padding-left: 25px;
}
.single-post-content li {
  margin-bottom: 10px;
  color: var(--text-dark);
}

.post-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid var(--sage);
  flex-wrap: wrap;
}

.tag-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
}

.tag {
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--sage);
  font-size: 12px;
  color: var(--text-muted);
  transition: all 0.3s;
}
.tag:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: white;
}

.author-box {
  display: flex;
  gap: 30px;
  background: white;
  padding: 40px;
  margin-top: 50px;
}

.author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-content h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.author-content p {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
}

/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
.blog-sidebar {
  position: sticky;
  top: 120px;
}

.sidebar-widget {
  background: white;
  padding: 35px;
  margin-bottom: 30px;
}

.widget-title {
  font-size: 18px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--sage);
}

.search-form {
  display: flex;
}
.search-form input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid var(--sage);
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif;
  background: var(--cream);
}
.search-form input:focus {
  outline: none;
  border-color: var(--forest);
}
.search-form button {
  padding: 14px 18px;
  background: var(--forest);
  border: none;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}
.search-form button:hover {
  background: var(--forest-light);
}

.category-list {
  list-style: none;
  padding: 0;
}
.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--sage);
}
.category-list li:last-child {
  border-bottom: none;
}
.category-list a {
  color: var(--text-dark);
  font-size: 14px;
}
.category-list a:hover {
  color: var(--forest);
}

.category-count {
  background: var(--sage);
  color: var(--text-muted);
  padding: 3px 10px;
  font-size: 12px;
  border-radius: 3px;
}

.recent-post {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--sage);
}
.recent-post:first-child {
  padding-top: 0;
}
.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-image {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}
.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h4 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 5px;
}
.recent-post-content h4 a {
  color: var(--text-dark);
}
.recent-post-content h4 a:hover {
  color: var(--forest);
}

.recent-post-date {
  font-size: 12px;
  color: var(--text-muted);
}

.newsletter-widget {
  background: var(--forest);
  color: white;
}
.newsletter-widget .widget-title {
  color: white;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}
.newsletter-widget p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.newsletter-form input {
  width: 100%;
  padding: 14px 18px;
  border: none;
  margin-bottom: 12px;
  font-size: 14px;
  font-family: "Source Sans 3", sans-serif;
}
.newsletter-form button {
  width: 100%;
  padding: 14px 18px;
  background: var(--earth);
  border: none;
  color: white;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-form button:hover {
  background: var(--earth-light);
}

/*!
Theme Name: Liberty Ridge 2026
Theme URI: https://libertyridgeva.com
Author: Liberty Ridge
Author URI: https://libertyridgeva.com
Description: A luxury real estate community theme featuring elegant design with modular SCSS architecture. Built for Liberty Ridge in Williamsburg, Virginia.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: liberty-ridge-2026
Tags: custom-menu, custom-logo, featured-images, full-width-template, theme-options

Liberty Ridge 2026 WordPress Theme
(c) 2026 Liberty Ridge. All rights reserved.
*/
@media (max-width: 1200px) {
  .vision-grid,
  .builder-grid {
    gap: 50px;
  }
  .intro-grid,
  .land-grid {
    gap: 50px;
  }
}
@media (max-width: 991px) {
  .home-hero {
    margin-top: 85px;
    height: 60vh;
    min-height: 450px;
  }
  .home-hero-title {
    font-size: 42px;
  }
  .hero-title {
    font-size: 42px;
  }
  .page-hero-title {
    font-size: 40px;
  }
  .page-hero-content {
    padding: 0 30px;
  }
  .vision-grid,
  .land-grid,
  .builder-grid,
  .intro-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }
  .homes-showcase {
    grid-template-columns: 1fr;
  }
  .home-featured img {
    height: 400px;
  }
  .homes-secondary {
    flex-direction: row;
  }
  .home-card img {
    min-height: 300px;
  }
  .features-grid,
  .lifestyle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .land-image {
    height: 400px;
  }
  .land-content {
    padding: 60px 40px;
  }
  .location-image {
    height: 350px;
  }
  .location-content {
    padding: 50px 40px;
  }
  .location-list {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
    height: 300px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-header {
    padding: 25px 30px;
  }
  .site-header.header-interior {
    padding: 20px 30px;
  }
  .header-nav {
    gap: 20px;
  }
  .breadcrumb-bar {
    padding: 15px 30px;
  }
  .blog-layout {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    position: static;
  }
  .post-card {
    grid-template-columns: 1fr;
  }
  .post-card-image img {
    height: 250px;
  }
}
@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: flex;
  }
  .desktop-nav {
    display: none;
  }
  .home-hero {
    margin-top: 75px;
    height: 55vh;
    min-height: 400px;
  }
  .home-hero-title {
    font-size: 32px;
  }
  .home-hero-text {
    font-size: 16px;
  }
  .home-hero-label {
    font-size: 11px;
    letter-spacing: 3px;
  }
  .section {
    padding: 80px 0;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-text {
    font-size: 17px;
  }
  .page-hero {
    height: 55vh;
  }
  .page-hero-title {
    font-size: 32px;
  }
  .page-hero-title.page-hero-title-lg {
    font-size: 36px;
  }
  .page-hero-text {
    font-size: 16px;
  }
  .page-hero-content.page-hero-content-left {
    padding: 0 30px;
  }
  .section-title {
    font-size: 32px;
  }
  .homes-secondary {
    flex-direction: column;
  }
  .stat-number {
    font-size: 36px;
  }
  .quote-text {
    font-size: 22px;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item:first-child {
    grid-column: span 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .cta-content h2 {
    font-size: 32px;
  }
  .featured-post-image img {
    height: 300px;
  }
  .featured-post-content h2 {
    font-size: 26px;
  }
  .single-post-title {
    font-size: 32px;
  }
  .single-post-image img {
    height: 300px;
  }
  .author-box {
    flex-direction: column;
    text-align: center;
  }
  .author-box .author-image {
    margin: 0 auto;
  }
  .site-header {
    padding: 20px 20px;
  }
  .site-header.header-interior {
    padding: 15px 20px;
  }
  .logo-image {
    height: 55px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .breadcrumb-bar {
    padding: 12px 20px;
  }
}
@media (max-width: 480px) {
  .home-hero {
    margin-top: 70px;
    height: 50vh;
    min-height: 350px;
  }
  .home-hero-title {
    font-size: 28px;
  }
  .home-hero-text {
    font-size: 15px;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-text {
    font-size: 16px;
  }
  .hero-cta {
    padding: 14px 30px;
    font-size: 12px;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 28px;
  }
  .page-hero-title {
    font-size: 28px;
  }
  .page-hero-title.page-hero-title-lg {
    font-size: 30px;
  }
  .stat-number {
    font-size: 30px;
  }
  .cta-content h2 {
    font-size: 26px;
  }
  .btn-white {
    padding: 14px 30px;
    font-size: 12px;
  }
}

/*# sourceMappingURL=style.css.map */