/*
Theme Name: Mt. Fernie Estates
Theme URI: https://mtfernieestates.com
Author: Mt. Fernie Estates
Author URI: https://mtfernieestates.com
Description: Premium bare land strata development theme for Mt. Fernie Estates, Fernie BC. Optimised for lot sales, SEO, and lead generation.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Private
Text Domain: mtfernie
Tags: real-estate, land-development, mountain, fernie, lots-for-sale
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --forest:     #1a2318;
  --pine:       #2c3d28;
  --sage:       #5a7052;
  --mist:       #a8b8a0;
  --stone:      #c8bfb0;
  --cream:      #f5f0e8;
  --gold:       #b8963e;
  --gold-light: #d4af60;
  --snow:       #faf8f4;
  --charcoal:   #2a2a2a;
  --mid:        #6b6b6b;
  --white:      #ffffff;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --radius-sm: 2px;
  --radius-md: 4px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.14);

  --transition: 0.3s ease;
  --max-width: 1400px;
  --content-width: 860px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--snow);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
.text-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.text-display { font-size: clamp(3rem, 7vw, 6rem); }
.text-hero    { font-size: clamp(2.6rem, 5vw, 4.4rem); }
.text-section { font-size: clamp(2.2rem, 4vw, 3.6rem); }
.text-card    { font-size: 1.5rem; }
.text-body    { font-size: 1rem; font-weight: 300; line-height: 1.8; }
.text-small   { font-size: 0.85rem; }
.text-label   {
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}
.container--narrow { max-width: var(--content-width); }

.section { padding: 100px 0; }
.section--dark  { background: var(--forest); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.divider {
  width: 50px; height: 1px;
  background: var(--gold);
  margin: 24px 0;
}
.divider--center { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform 0.2s, border-color var(--transition);
  text-decoration: none;
}
.btn--primary  { background: var(--gold); color: var(--forest); }
.btn--primary:hover { background: var(--gold-light); color: var(--forest); transform: translateY(-1px); }
.btn--outline  { border: 1px solid rgba(200,191,176,0.6); color: var(--cream); background: transparent; }
.btn--outline:hover { border-color: var(--gold-light); background: rgba(184,150,62,0.1); color: var(--cream); }
.btn--dark     { background: var(--forest); color: var(--cream); }
.btn--dark:hover { background: var(--pine); color: var(--cream); }
.btn--sm       { padding: 10px 24px; font-size: 0.68rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
  padding: 22px 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(26,35,24,0.97);
  backdrop-filter: blur(12px);
  padding: 14px 60px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.site-header--solid {
  background: rgba(26,35,24,0.97);
  padding: 14px 60px;
}

.site-branding a {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  text-decoration: none;
}
.site-branding a:hover { color: var(--cream); }
.site-branding span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--gold-light);
}

.main-nav { display: flex; align-items: center; gap: 40px; }
.main-nav ul { display: flex; gap: 36px; }
.main-nav a {
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); text-decoration: none;
  transition: color var(--transition);
}
.main-nav a:hover, .main-nav .current-menu-item a { color: var(--gold-light); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--cream); display: block; transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--forest); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2.2rem; color: var(--cream);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav .btn--primary { font-family: var(--font-sans); font-size: 0.8rem; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,35,24,0.2) 0%, rgba(26,35,24,0.08) 40%, rgba(26,35,24,0.78) 100%);
}
@keyframes heroZoom { to { transform: scale(1); } }

.hero__content {
  position: relative; z-index: 2;
  padding: 0 60px 90px;
  max-width: 860px;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.5s forwards;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300; color: var(--cream);
  line-height: 1.0; margin-bottom: 28px;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.hero__title em { font-style: italic; color: var(--gold-light); }
.hero__sub {
  font-size: 1.05rem; font-weight: 300;
  color: var(--stone); line-height: 1.75;
  max-width: 500px; margin-bottom: 44px;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 1.1s forwards;
}
.hero__scroll {
  position: absolute; bottom: 38px; right: 60px; z-index: 2;
  display: flex; align-items: center; gap: 12px;
  color: var(--stone); font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 1.8s forwards;
}
.hero__scroll-line { width: 48px; height: 1px; background: var(--gold); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { to { opacity: 1; } }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--forest);
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(184,150,62,0.3);
}
.stats-bar__item {
  padding: 36px 40px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stats-bar__item:last-child { border-right: none; }
.stats-bar__num {
  font-family: var(--font-serif);
  font-size: 2.6rem; font-weight: 300;
  color: var(--gold-light); line-height: 1; margin-bottom: 6px;
}
.stats-bar__label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist);
}

/* ============================================================
   LOT LISTING CARDS (Custom Post Type)
   ============================================================ */
.lot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.lot-card {
  background: var(--white);
  border: 1px solid #ece8e0;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  text-decoration: none; color: inherit;
  display: block;
}
.lot-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  color: inherit;
}
.lot-card__svg-wrap {
  background: linear-gradient(135deg, var(--pine), var(--sage));
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.lot-card:hover .lot-card__svg-wrap { transform: scale(1.03); }
.lot-card__svg-wrap svg {
  width: 85%; height: 85%;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.25));
}
.lot-card__body { padding: 28px; }
.lot-card__phase {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px;
}
.lot-card__name {
  font-family: var(--font-serif);
  font-size: 1.6rem; font-weight: 400; margin-bottom: 10px;
}
.lot-card__specs { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.lot-card__spec {
  font-size: 0.75rem; color: var(--mid);
  display: flex; align-items: center; gap: 6px;
}
.lot-card__spec::before {
  content: '';
  width: 4px; height: 4px;
  background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
.lot-card__price {
  font-family: var(--font-serif);
  font-size: 1.8rem; font-weight: 300; color: var(--forest);
}
.lot-card__status {
  display: inline-block;
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 10px; margin-left: 10px; vertical-align: middle;
}
.status--available { background: #e8f0e4; color: #3a6634; }
.status--sold      { background: #f5e8e8; color: #8b2020; }
.status--hold      { background: #fef4e0; color: #996b00; }

.lot-card__dims {
  background: #f5f1ea;
  border-top: 1px solid #e8e2d8;
  padding: 10px 28px;
  display: flex; gap: 24px;
}
.lot-card__dim-label {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: #999;
  margin-bottom: 2px;
}
.lot-card__dim-val { font-size: 0.82rem; font-weight: 500; }

.lot-card.is-sold { opacity: 0.65; pointer-events: none; }
.lot-card.is-sold .lot-card__svg-wrap { filter: grayscale(60%); }

/* ============================================================
   SINGLE LOT PAGE
   ============================================================ */
.lot-single { padding-top: 100px; }
.lot-single__header {
  background: var(--forest);
  padding: 80px 60px 60px;
  position: relative; overflow: hidden;
}
.lot-single__header::before {
  content: '';
  position: absolute; inset: 0;
  background: url() center/cover no-repeat;
  opacity: 0.12;
}
.lot-single__breadcrumb {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--mist); margin-bottom: 20px;
  position: relative; z-index: 2;
}
.lot-single__breadcrumb a { color: var(--mist); }
.lot-single__breadcrumb a:hover { color: var(--gold-light); }
.lot-single__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--cream); font-weight: 300;
  position: relative; z-index: 2;
  margin-bottom: 12px;
}
.lot-single__subtitle {
  color: var(--mist); font-size: 0.95rem; font-weight: 300;
  position: relative; z-index: 2;
}

.lot-single__body {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 60px; padding: 60px;
  max-width: var(--max-width); margin: 0 auto;
}
.lot-single__svg {
  background: linear-gradient(135deg, var(--pine), var(--sage));
  display: flex; align-items: center; justify-content: center;
  min-height: 380px; padding: 40px;
}
.lot-single__svg svg { max-width: 100%; max-height: 340px; }

.lot-single__details {}
.lot-data-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin: 28px 0;
  border: 1px solid #e8e2d8;
}
.lot-data-item {
  padding: 18px 22px;
  border-right: 1px solid #e8e2d8;
  border-bottom: 1px solid #e8e2d8;
}
.lot-data-item:nth-child(even) { border-right: none; }
.lot-data-label {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 4px;
}
.lot-data-val {
  font-family: var(--font-serif);
  font-size: 1.2rem; color: var(--forest);
}
.lot-single__price {
  font-family: var(--font-serif);
  font-size: 3rem; font-weight: 300;
  color: var(--forest); margin: 24px 0 8px;
}
.lot-single__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ============================================================
   LEAD CAPTURE FORM
   ============================================================ */
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.lead-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.lead-form__field { display: flex; flex-direction: column; gap: 8px; }
.lead-form__label {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--mist);
}
.lead-form__input,
.lead-form__select,
.lead-form__textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  font-family: var(--font-sans); font-size: 0.9rem; font-weight: 300;
  padding: 14px 16px;
  outline: none; resize: none;
  transition: border-color var(--transition);
}
.lead-form__input:focus,
.lead-form__select:focus,
.lead-form__textarea:focus { border-color: var(--gold); }
.lead-form__select option { background: var(--forest); }

/* ============================================================
   VIDEO SECTION
   ============================================================ */
.video-section { padding: 100px 60px; background: var(--forest); }
.video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 300px 300px;
  gap: 12px; margin-top: 50px;
}
.video-grid__main { grid-row: 1/3; }
.video-embed {
  position: relative; overflow: hidden;
  background: var(--pine);
  cursor: pointer;
}
.video-embed iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.video-embed__thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.video-embed__thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(26,35,24,0.45);
  transition: background var(--transition);
}
.video-embed:hover .video-embed__thumb::after { background: rgba(26,35,24,0.2); }
.video-embed__play {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
}
.video-embed__play-btn {
  width: 64px; height: 64px;
  background: rgba(184,150,62,0.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition), background var(--transition);
}
.video-embed__play-btn::after {
  content: '';
  border-left: 22px solid var(--forest);
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  margin-left: 4px;
}
.video-embed:hover .video-embed__play-btn {
  transform: scale(1.1); background: var(--gold);
}
.video-embed__caption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  padding: 14px 18px;
  background: linear-gradient(transparent, rgba(26,35,24,0.88));
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--stone); opacity: 0; transition: opacity var(--transition);
}
.video-embed:hover .video-embed__caption { opacity: 1; }

/* Tourism Fernie link cards */
.tf-video-links {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 12px; margin-top: 32px;
}
.tf-link {
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), border-color var(--transition);
  text-decoration: none;
}
.tf-link:hover {
  background: rgba(184,150,62,0.1);
  border-color: var(--gold);
}
.tf-link__icon { font-size: 1.6rem; margin-bottom: 10px; }
.tf-link__title {
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 4px;
}
.tf-link__sub { font-size: 0.72rem; color: var(--mist); font-weight: 300; }

/* Social embed strip */
.social-strip {
  padding: 60px;
  background: var(--pine);
  display: flex; align-items: center; gap: 40px;
  border-top: 1px solid rgba(184,150,62,0.2);
  flex-wrap: wrap;
}
.social-strip__label {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-light); flex-shrink: 0;
}
.social-strip__links { display: flex; gap: 20px; flex-wrap: wrap; }
.social-strip__link {
  display: flex; align-items: center; gap: 10px;
  color: var(--stone); text-decoration: none; font-size: 0.82rem;
  padding: 10px 20px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}
.social-strip__link:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(184,150,62,0.08);
}

/* ============================================================
   GALLERY / SITE PICS
   ============================================================ */
.masonry-grid { columns: 3; column-gap: 12px; }
.masonry-item {
  break-inside: avoid; margin-bottom: 12px;
  position: relative; overflow: hidden; cursor: pointer;
  background: #e8e2d8;
}
.masonry-item img {
  width: 100%; display: block;
  transition: transform 0.5s ease, filter 0.4s;
  filter: brightness(0.92);
}
.masonry-item:hover img { transform: scale(1.04); filter: brightness(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #111810;
  border-top: 1px solid rgba(184,150,62,0.2);
}
.footer__main {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding: 80px 60px 60px;
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem; color: var(--cream);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer__brand-desc {
  font-size: 0.88rem; font-weight: 300;
  color: #666; line-height: 1.7;
  margin-bottom: 24px;
}
.footer__heading {
  font-family: var(--font-sans);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a {
  font-size: 0.85rem; color: #666; font-weight: 300;
  text-decoration: none; transition: color var(--transition);
}
.footer__nav a:hover { color: var(--gold-light); }
.footer__contact-item {
  font-size: 0.85rem; color: #666; font-weight: 300;
  margin-bottom: 10px; line-height: 1.5;
}
.footer__contact-item strong { color: var(--stone); font-weight: 500; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer__copy { font-size: 0.7rem; color: #444; letter-spacing: 0.08em; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a {
  font-size: 0.7rem; color: #444;
  text-decoration: none; transition: color var(--transition);
}
.footer__legal a:hover { color: var(--gold); }
.footer__schema-ref {
  font-size: 0.62rem; color: #333;
  letter-spacing: 0.1em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .lot-grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .video-grid__main { grid-row: auto; }
  .tf-video-links { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .site-header { padding: 16px 24px; }
  .site-header.scrolled { padding: 12px 24px; }
  .site-header--solid { padding: 12px 24px; }
  .main-nav ul, .main-nav .btn { display: none; }
  .nav-toggle { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .hero__content { padding: 0 24px 70px; }
  .hero__scroll { right: 24px; }
  .lot-single__body { grid-template-columns: 1fr; padding: 40px 24px; }
  .section { padding: 70px 0; }
  .masonry-grid { columns: 2; }
  .video-section { padding: 70px 24px; }
  .social-strip { padding: 40px 24px; }
}
@media (max-width: 600px) {
  .lot-grid { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 1; }
  .lead-form__row { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .tf-video-links { grid-template-columns: 1fr 1fr; }
  .hero__title { font-size: clamp(2.8rem, 10vw, 4rem); }
  .video-grid { grid-template-columns: 1fr; }
}
