/*
Theme Name: Vassallo Landscaping
Theme URI: https://vassallolandscaping.com
Author: Vassallo Landscaping
Description: A professional landscaping and hardscaping theme — Rooted in Quality, Grown with Pride.
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: vassallo-landscaping
*/

/* ============================================================
   CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --green-darkest:  #0F2D18;
  --green-dark:     #1B4332;
  --green-mid:      #2D6A4F;
  --green-accent:   #52B788;
  --green-light:    #B7E4C7;
  --brown-dark:     #4A2C11;
  --brown-mid:      #7B4F2A;
  --brown-stone:    #A07850;
  --brown-sand:     #D4B896;
  --cream:          #FAF7F2;
  --cream-warm:     #F2ECE4;
  --patriot-red:    #B22234;
  --patriot-red-dk: #8B1A27;
  --patriot-blue:   #3C3B6E;
  --patriot-blue-lt:#4E4D8B;
  --patriot-white:  #FFFFFF;
  --white:          #FFFFFF;
  --gray-light:     #F0EDE8;
  --gray-mid:       #999999;
  --gray-dark:      #555555;
  --text-primary:   #1E1E1E;
  --text-secondary: #4A4A4A;
  --font-heading:   'Playfair Display', Georgia, serif;
  --font-body:      'Open Sans', Arial, sans-serif;
  --section-pad:    80px;
  --container-max:  1200px;
  --radius:         6px;
  --radius-lg:      12px;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.10);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.14);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.18);
  --transition:     0.25s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text-primary); background: var(--white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); line-height: 1.25; color: var(--green-dark); font-weight: 700; }
p { margin-bottom: 1rem; color: var(--text-secondary); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: var(--section-pad) 0; }
.text-center { text-align: center; }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 14px; }
.section-header p { max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

.section-header h2::after, .page-banner h1::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  background: linear-gradient(90deg, var(--patriot-red), var(--patriot-blue));
  margin: 14px auto 0;
  border-radius: 2px;
}
.page-banner h1::after { margin: 14px 0 0; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-block; padding: 14px 32px; border-radius: var(--radius); font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; text-transform: uppercase; cursor: pointer; border: 2px solid transparent; transition: all var(--transition); text-align: center; }
.btn-primary { background: var(--green-dark); color: var(--white); border-color: var(--green-dark); }
.btn-primary:hover { background: var(--green-mid); border-color: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: var(--white); color: var(--green-dark); }
.btn-outline { background: transparent; color: var(--green-dark); border-color: var(--green-dark); }
.btn-outline:hover { background: var(--green-dark); color: var(--white); }
.btn-red { background: var(--patriot-red); color: var(--white); border-color: var(--patriot-red); }
.btn-red:hover { background: var(--patriot-red-dk); border-color: var(--patriot-red-dk); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================================
   PATRIOTIC STRIPE
   ============================================================ */
.patriot-stripe {
  height: 5px;
  background: linear-gradient(90deg, var(--patriot-red) 0%, var(--patriot-red) 33.3%, var(--patriot-white) 33.3%, var(--patriot-white) 66.6%, var(--patriot-blue) 66.6%, var(--patriot-blue) 100%);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar { background: var(--green-darkest); color: rgba(255,255,255,0.80); font-size: 0.82rem; padding: 6px 0; }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--green-accent); }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 20px; }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--green-accent); font-size: 0.75rem; }
.flag-badge { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: rgba(255,255,255,0.90); }
.flag-badge .flag-icon { font-size: 1rem; }

/* ============================================================
   SITE HEADER / NAVIGATION
   ============================================================ */
#site-header { background: var(--white); position: sticky; top: 0; z-index: 1000; box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 24px; max-width: var(--container-max); margin: 0 auto; }

.site-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-icon { width: 52px; height: 52px; background: var(--green-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.5rem; }
.logo-name { display: block; font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--green-dark); line-height: 1.1; }
.logo-tagline { display: block; font-size: 0.70rem; color: var(--brown-stone); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }

#main-nav { display: flex; align-items: center; gap: 4px; }
#main-nav ul { display: flex; align-items: center; gap: 4px; list-style: none; }
#main-nav a { display: block; padding: 8px 16px; font-weight: 600; font-size: 0.90rem; color: var(--text-primary); border-radius: var(--radius); letter-spacing: 0.02em; transition: all var(--transition); }
#main-nav a:hover, #main-nav .current-menu-item > a { color: var(--green-dark); background: var(--green-light); }
.nav-cta-btn { margin-left: 12px; padding: 9px 22px !important; background: var(--green-dark) !important; color: var(--white) !important; border-radius: var(--radius) !important; }
.nav-cta-btn:hover { background: var(--green-mid) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 1100; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--green-dark); border-radius: 2px; transition: all var(--transition); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   PAGE BANNER
   ============================================================ */
.page-banner { background: linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 60%, var(--brown-dark) 100%); color: var(--white); padding: 70px 0 60px; position: relative; overflow: hidden; }
.page-banner::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(82,183,136,0.12) 0%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(178,34,52,0.08) 0%, transparent 40%); }
.page-banner .container { position: relative; }
.page-banner h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-banner .breadcrumb { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.page-banner .breadcrumb a { color: var(--green-accent); }
.page-banner .breadcrumb a:hover { color: var(--white); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--green-darkest); }
.hero-bg { position: absolute; inset: 0; background-image: url('images/hero-bg.jpg'); background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0.45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,45,24,0.85) 0%, rgba(27,67,50,0.70) 50%, rgba(74,44,17,0.60) 100%); }
.hero-content { position: relative; z-index: 2; color: var(--white); max-width: 680px; padding: 80px 0; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25); color: var(--green-accent); font-size: 0.80rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 6px 16px; border-radius: 40px; margin-bottom: 24px; }
.hero h1 { color: var(--white); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.15; margin-bottom: 20px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.hero h1 .accent { color: var(--green-accent); }
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.88); margin-bottom: 38px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-flag-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 5px; background: linear-gradient(90deg, var(--patriot-red) 0%, var(--patriot-red) 33.3%, var(--white) 33.3%, var(--white) 66.6%, var(--patriot-blue) 66.6%, var(--patriot-blue) 100%); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar { background: var(--green-dark); color: var(--white); padding: 28px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.stat-item { padding: 8px 16px; border-right: 1px solid rgba(255,255,255,0.15); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--green-accent); line-height: 1; display: block; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.75); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; display: block; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); border-bottom: 4px solid var(--green-accent); transition: all var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--green-dark), var(--green-accent)); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 60px; height: 60px; background: var(--green-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.6rem; transition: background var(--transition); }
.service-card:hover .service-icon { background: var(--green-dark); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--green-dark); }
.service-card p { font-size: 0.92rem; margin-bottom: 0; color: var(--gray-dark); }

.services-category-label { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; margin-top: 60px; }
.services-category-label:first-child { margin-top: 0; }
.services-category-label h2 { font-size: 1.7rem; white-space: nowrap; }
.services-category-label .label-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--green-accent), transparent); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--cream); }
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder { width: 100%; background: linear-gradient(135deg, var(--green-mid), var(--green-dark)); height: 420px; display: flex; align-items: center; justify-content: center; flex-direction: column; color: rgba(255,255,255,0.6); font-size: 3rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-img-placeholder span { font-family: var(--font-body); font-size: 0.9rem; margin-top: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
.about-img-accent { position: absolute; bottom: -24px; right: -24px; background: var(--green-dark); color: var(--white); padding: 20px 24px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); }
.about-img-accent .num { font-family: var(--font-heading); font-size: 2.2rem; font-weight: 700; color: var(--green-accent); display: block; line-height: 1; }
.about-img-accent .lbl { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.85; }
.about-content h2 { margin-bottom: 16px; }

.american-badge { display: inline-flex; align-items: center; gap: 12px; background: linear-gradient(135deg, var(--patriot-blue) 0%, var(--patriot-blue-lt) 100%); color: var(--white); padding: 12px 20px; border-radius: var(--radius); margin-top: 8px; margin-bottom: 28px; border-left: 4px solid var(--patriot-red); }
.american-badge .badge-flag { font-size: 1.5rem; }
.american-badge .badge-text { display: flex; flex-direction: column; }
.american-badge .badge-title { font-weight: 700; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; }
.american-badge .badge-sub { font-size: 0.75rem; opacity: 0.80; }

.check-list { margin: 20px 0; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.95rem; color: var(--text-secondary); }
.check-list li::before { content: '✓'; display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; min-width: 22px; background: var(--green-accent); color: var(--green-dark); border-radius: 50%; font-size: 0.72rem; font-weight: 800; margin-top: 1px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; cursor: pointer; background: var(--green-mid); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(27,67,50,0.85) 0%, transparent 60%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 20px; }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay .gallery-caption { color: var(--white); font-weight: 600; font-size: 0.95rem; }
.gallery-zoom-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.7); opacity: 0; background: rgba(255,255,255,0.15); border: 2px solid rgba(255,255,255,0.6); color: var(--white); width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: all var(--transition); backdrop-filter: blur(4px); }
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.gallery-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, var(--green-mid), var(--brown-dark)); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 2rem; gap: 8px; }
.gallery-placeholder span { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; }

.gallery-filter { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn { padding: 9px 24px; border: 2px solid var(--green-dark); border-radius: 40px; background: transparent; color: var(--green-dark); font-family: var(--font-body); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; cursor: pointer; transition: all var(--transition); }
.filter-btn.active, .filter-btn:hover { background: var(--green-dark); color: var(--white); }

.gallery-full-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-full-grid .gallery-item.hidden { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; align-items: center; justify-content: center; padding: 24px; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-img { width: 100%; max-height: 80vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-placeholder { width: 100%; height: 480px; background: linear-gradient(135deg, var(--green-dark), var(--brown-dark)); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 3rem; gap: 12px; }
.lightbox-placeholder p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 0; }
.lightbox-caption { color: var(--white); text-align: center; margin-top: 16px; font-size: 1rem; font-weight: 600; }
.lightbox-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: var(--white); font-size: 1.8rem; cursor: pointer; line-height: 1; opacity: 0.75; transition: opacity var(--transition); }
.lightbox-close:hover { opacity: 1; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.12); border: none; color: var(--white); font-size: 1.5rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); backdrop-filter: blur(4px); }
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: -60px; }
.lightbox-nav.next { right: -60px; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner { background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-darkest) 60%, var(--brown-dark) 100%); color: var(--white); padding: 80px 0; position: relative; overflow: hidden; text-align: center; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(82,183,136,0.15) 0%, transparent 70%); }
.cta-banner .container { position: relative; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.80); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-banner .btn-row { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-patriot-bar { height: 4px; background: linear-gradient(90deg, var(--patriot-red) 0%, var(--patriot-red) 33.3%, var(--patriot-white) 33.3%, var(--patriot-white) 66.6%, var(--patriot-blue) 66.6%, var(--patriot-blue) 100%); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: start; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--text-primary); margin-bottom: 7px; text-transform: uppercase; letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 13px 16px; border: 2px solid var(--gray-light); border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem; color: var(--text-primary); background: var(--white); transition: border-color var(--transition); outline: none; appearance: none; -webkit-appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--green-mid); box-shadow: 0 0 0 3px rgba(45,106,79,0.12); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-info-card { background: var(--green-dark); color: var(--white); border-radius: var(--radius-lg); padding: 40px 32px; position: sticky; top: 100px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; font-size: 1.3rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.10); }
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon { width: 42px; height: 42px; background: rgba(255,255,255,0.10); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; color: var(--green-accent); }
.contact-info-text strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.55); margin-bottom: 3px; }
.contact-info-text a, .contact-info-text span { color: var(--white); font-size: 0.97rem; font-weight: 500; }
.contact-info-text a:hover { color: var(--green-accent); }
.map-placeholder { background: rgba(255,255,255,0.06); border-radius: var(--radius); height: 180px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 8px; margin-top: 24px; color: rgba(255,255,255,0.4); font-size: 2rem; border: 2px dashed rgba(255,255,255,0.15); }
.map-placeholder p { font-size: 0.80rem; margin-bottom: 0; color: rgba(255,255,255,0.4); }
.form-alert { padding: 14px 18px; border-radius: var(--radius); margin-bottom: 22px; font-weight: 600; font-size: 0.92rem; }
.form-alert.success { background: #D1FAE5; color: #065F46; border-left: 4px solid #10B981; }
.form-alert.error { background: #FEE2E2; color: #991B1B; border-left: 4px solid #EF4444; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-owner { display: grid; grid-template-columns: 280px 1fr; gap: 48px; align-items: start; margin-top: 48px; }
.owner-photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.owner-photo-placeholder { background: linear-gradient(135deg, var(--green-mid), var(--brown-dark)); height: 320px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); font-size: 3.5rem; gap: 10px; }
.owner-photo-placeholder span { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; }
.owner-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.owner-title { color: var(--green-accent); font-weight: 600; font-size: 0.90rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; display: block; }

.values-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px 24px; box-shadow: var(--shadow-sm); text-align: center; border-top: 4px solid var(--green-accent); transition: transform var(--transition); }
.value-card:hover { transform: translateY(-4px); }
.value-icon { font-size: 2.2rem; margin-bottom: 14px; display: block; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { font-size: 0.90rem; margin-bottom: 0; }

.patriot-section { background: linear-gradient(135deg, var(--patriot-blue) 0%, #2a295a 100%); color: var(--white); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
.patriot-section::before { content: '🇺🇸'; position: absolute; font-size: 18rem; opacity: 0.04; top: 50%; left: 50%; transform: translate(-50%, -50%); line-height: 1; }
.patriot-section h2 { color: var(--white); margin-bottom: 16px; }
.patriot-section p { color: rgba(255,255,255,0.80); max-width: 620px; margin: 0 auto; }
.patriot-stars { letter-spacing: 0.5em; color: rgba(255,255,255,0.40); font-size: 0.7rem; margin-top: 24px; display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--green-darkest); color: rgba(255,255,255,0.75); }
.footer-main { padding: 64px 0 48px; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; }
.footer-brand .logo-name { color: var(--white); font-size: 1.2rem; }
.footer-brand .logo-tagline { color: var(--green-accent); }
.footer-brand p { font-size: 0.88rem; margin-top: 16px; line-height: 1.7; }
.footer-flag-badge { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); padding: 8px 14px; border-radius: var(--radius); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.80); border-left: 3px solid var(--patriot-red); }
.footer-col h4 { color: var(--white); font-family: var(--font-heading); font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 32px; height: 2px; background: var(--green-accent); }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { color: rgba(255,255,255,0.68); font-size: 0.88rem; transition: color var(--transition), padding-left var(--transition); }
.footer-col ul li a:hover { color: var(--green-accent); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item i { color: var(--green-accent); margin-top: 2px; font-size: 0.82rem; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--green-accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.55); }
.footer-bottom a:hover { color: var(--green-accent); }

/* ============================================================
   BLOG / 404
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 28px; }
.post-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-light); transition: transform var(--transition), box-shadow var(--transition); }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg, var(--green-mid), var(--brown-dark)); overflow: hidden; }
.post-card-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card-body { padding: 24px; }
.post-meta { font-size: 0.80rem; color: var(--gray-mid); margin-bottom: 8px; }
.post-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.post-card-body h3 a:hover { color: var(--green-mid); }
.post-card-body p { font-size: 0.88rem; margin-bottom: 0; }
.error-404-section { text-align: center; padding: 120px 0; }
.error-404-section h1 { font-size: 8rem; color: var(--green-light); line-height: 1; }
.error-404-section h2 { margin-bottom: 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-split { gap: 40px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
}
@media (max-width: 900px) {
  .gallery-grid, .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .about-split { grid-template-columns: 1fr; }
  .about-img-accent { right: 12px; bottom: -12px; }
  .about-owner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --section-pad: 56px; }
  .top-bar .container { justify-content: center; }
  .top-bar-right .flag-badge { display: none; }
  #main-nav { position: fixed; top: 0; right: 0; bottom: 0; width: min(300px, 80vw); background: var(--white); flex-direction: column; justify-content: flex-start; padding: 90px 24px 32px; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; z-index: 1050; }
  #main-nav.open { transform: translateX(0); }
  #main-nav ul { flex-direction: column; width: 100%; gap: 4px; }
  #main-nav a { padding: 12px 16px; font-size: 1rem; }
  .nav-cta-btn { margin: 12px 0 0; width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 60px 0; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox-nav { display: none; }
  .about-img-accent { position: static; margin-top: 16px; display: inline-block; }
}
@media (max-width: 540px) {
  .gallery-grid, .gallery-full-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .header-inner { padding: 14px 16px; }
  .logo-tagline { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* WP alignment */
.aligncenter { display: block; margin: 0 auto; }
.alignleft { float: left; margin: 0 24px 16px 0; }
.alignright { float: right; margin: 0 0 16px 24px; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
