/* ==========================================================================
   Poultry Farm Landing - Frontend Styles
   ========================================================================== */
.pfl-wrapper {
	--pfl-primary: #e8a33d;
	--pfl-secondary: #5c8a3a;
	--pfl-dark: #1f2a1a;
	--pfl-light: #faf6ee;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--pfl-dark);
	background: #fff;
	line-height: 1.6;
	overflow-x: hidden;
}
.pfl-wrapper * { box-sizing: border-box; }
/* These elements are moved to a direct child of <body> via JS (portalFixedElements)
   so their position:fixed always resolves against the real viewport. That move
   takes them OUTSIDE .pfl-wrapper, so the wildcard box-sizing rule above no
   longer reaches them - restate it explicitly here or their padding gets added
   on top of width:100% instead of being included in it. */
#pfl-navbar, #pfl-navbar *,
#pfl-video-modal, #pfl-video-modal *,
#pfl-lightbox, #pfl-lightbox *,
#pfl-about-modal, #pfl-about-modal *,
#pfl-back-to-top { box-sizing: border-box; }
.pfl-wrapper img { max-width: 100%; height: auto; display: block; }
.pfl-wrapper a { text-decoration: none; color: inherit; }
.pfl-wrapper ul { list-style: none; margin: 0; padding: 0; }
.pfl-wrapper h1, .pfl-wrapper h2, .pfl-wrapper h3, .pfl-wrapper h4 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; margin: 0 0 16px; color: var(--pfl-dark); }
.pfl-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.pfl-section { padding: 90px 0; position: relative; }
.pfl-bg-light { background: var(--pfl-light); }
.pfl-section-head { text-align: center; max-width: 680px; margin: 0 auto 50px; }
.pfl-section-head p { color: #666; }
.pfl-eyebrow { display: inline-block; color: var(--pfl-secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; margin-bottom: 10px; }

.pfl-icon-svg { width: 28px; height: 28px; }

/* Buttons */
.pfl-btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 50px; font-weight: 700; font-size: 15px; transition: all .25s ease; border: 2px solid transparent; cursor: pointer; }
.pfl-btn-primary { background: var(--pfl-primary); color: #fff; }
.pfl-btn-primary:hover { background: var(--pfl-secondary); color: #fff; transform: translateY(-2px); }
.pfl-btn-lg { padding: 16px 36px; font-size: 16px; }

/* ---------------- Navbar ---------------- */
.pfl-navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 999; background: rgba(255,255,255,.97); box-shadow: 0 2px 14px rgba(0,0,0,.08); }
.pfl-navbar-inner {
	display: grid;
	grid-template-columns: auto 1fr auto;
	align-items: center;
	column-gap: 24px;
	width: 100%;
	height: 76px;
	padding: 0 40px;
}
.pfl-logo { justify-self: start; display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; font-family: Georgia, serif; color: var(--pfl-dark); }
.pfl-logo-icon { width: 32px; height: 32px; color: var(--pfl-primary); }
.pfl-logo img { max-height: 44px; width: auto; }
.pfl-nav-menu { justify-self: center; display: flex; align-items: center; gap: 28px; }
.pfl-nav-menu a { font-weight: 600; font-size: 15px; color: var(--pfl-dark); white-space: nowrap; }
.pfl-nav-menu a:hover { color: var(--pfl-primary); }
.pfl-nav-right { justify-self: end; display: flex; align-items: center; gap: 20px; }
.pfl-nav-actions { display: flex; align-items: center; gap: 20px; }
.pfl-nav-phone { display: flex; align-items: center; gap: 6px; color: var(--pfl-secondary) !important; font-weight: 600; font-size: 15px; white-space: nowrap; }
.pfl-nav-phone svg { width: 18px; height: 18px; }
.pfl-nav-btn { padding: 10px 22px; white-space: nowrap; }
.pfl-nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 34px; height: 34px; background: none; border: none; cursor: pointer; z-index: 1001; flex-shrink: 0; }
.pfl-nav-toggle span { display: block; width: 100%; height: 2px; background: var(--pfl-dark); transition: all .25s ease; }
.pfl-nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pfl-nav-toggle.active span:nth-child(2) { opacity: 0; }
.pfl-nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------- Hero ---------------- */
.pfl-hero { position: relative; height: 100vh; min-height: 560px; overflow: hidden; }
.pfl-hero-slider { position: relative; width: 100%; height: 100%; }
.pfl-hero-slide { position: absolute; inset: 0; background: linear-gradient(135deg, #3b5323, #1f2a1a); background-size: cover; background-position: center; display: flex; align-items: center; opacity: 0; visibility: hidden; transition: opacity 1s ease; }
.pfl-hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.pfl-hero-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.65) 10%, rgba(0,0,0,.25) 80%); }
.pfl-hero-content { position: relative; z-index: 2; color: #fff; max-width: 680px; }
.pfl-hero-content .pfl-eyebrow { color: var(--pfl-primary); }
.pfl-hero-content h1 { color: #fff; font-size: 52px; margin-bottom: 20px; }
.pfl-hero-content p { font-size: 18px; margin-bottom: 30px; color: #f0f0f0; max-width: 540px; }
.pfl-hero-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.pfl-hero-dot { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.45); border: none; cursor: pointer; padding: 0; }
.pfl-hero-dot.active { background: var(--pfl-primary); }
.pfl-hero-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4); color: #fff; width: 46px; height: 46px; border-radius: 50%; font-size: 24px; cursor: pointer; }
.pfl-hero-arrow:hover { background: var(--pfl-primary); border-color: var(--pfl-primary); }
.pfl-hero-prev { left: 24px; }
.pfl-hero-next { right: 24px; }
.pfl-scroll-down { position: absolute; bottom: 26px; right: 30px; z-index: 3; color: #fff; font-size: 22px; animation: pfl-bounce 2s infinite; }
@keyframes pfl-bounce { 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(8px);} }

/* Small single-image hero used by every standalone section shortcode (pfl_about, pfl_services, etc.) */
.pfl-page-hero {
	position: relative;
	background-color: #24331a;
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	overflow: hidden;
	padding-top: 76px;
}
.pfl-page-hero-overlay { position: absolute; inset: 0; background: rgba(15,20,10,.55); }
.pfl-page-hero-content { position: relative; z-index: 2; color: #fff; max-width: 700px; }
.pfl-page-hero-content .pfl-eyebrow { color: var(--pfl-primary); }
.pfl-page-hero-content h1 { color: #fff; font-size: 44px; margin: 0; }
@media (max-width: 782px) {
	.pfl-page-hero { padding-top: 64px; }
	.pfl-page-hero-content h1 { font-size: 30px; }
}

/* ---------------- About ---------------- */
.pfl-about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.pfl-about-media { position: relative; }
.pfl-about-media img { border-radius: 14px; width: 100%; object-fit: cover; aspect-ratio: 4/3.2; }
.pfl-about-stat-badge { position: absolute; bottom: -20px; left: -20px; background: var(--pfl-secondary); color: #fff; padding: 18px 24px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,.15); }
.pfl-about-stat-badge strong { display: block; font-size: 28px; font-family: Georgia, serif; }
.pfl-about-stat-badge span { font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.pfl-about-content h2 { font-size: 34px; }
.pfl-feature-list { margin: 24px 0; display: grid; gap: 14px; }
.pfl-feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; }
.pfl-feature-list svg { width: 22px; height: 22px; color: var(--pfl-primary); flex-shrink: 0; }
.pfl-about-footer { display: flex; align-items: center; gap: 30px; margin-top: 20px; flex-wrap: wrap; }
.pfl-about-stat2 strong { display: block; font-size: 24px; color: var(--pfl-primary); font-family: Georgia, serif; }
.pfl-about-stat2 span { font-size: 13px; color: #666; }

/* About "Discover More" popup */
.pfl-about-modal { display: none; position: fixed; inset: 0; z-index: 10000; align-items: center; justify-content: center; padding: 24px; }
.pfl-about-modal.open { display: flex; }
.pfl-about-modal-backdrop { position: absolute; inset: 0; background: rgba(15,20,10,.72); animation: pfl-fade-in .25s ease; }
.pfl-about-modal-card {
	position: relative; background: #fff; border-radius: 18px; max-width: 720px; width: 100%;
	max-height: 85vh; overflow-y: auto; box-shadow: 0 30px 80px rgba(0,0,0,.35);
	animation: pfl-modal-pop .3s ease;
}
.pfl-about-modal-media img { width: 100%; max-height: 280px; object-fit: cover; border-radius: 18px 18px 0 0; }
.pfl-about-modal-body { padding: 36px 40px 40px; }
.pfl-about-modal-body h2 { font-size: 28px; }
.pfl-about-modal-text p { color: #555; margin-bottom: 16px; }
.pfl-about-modal-text p:last-child { margin-bottom: 0; }
.pfl-about-modal-close {
	position: absolute; top: 16px; right: 16px; width: 40px; height: 40px; border-radius: 50%;
	background: rgba(255,255,255,.9); border: none; font-size: 26px; line-height: 1; color: var(--pfl-dark);
	cursor: pointer; z-index: 2; box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.pfl-about-modal-close:hover { background: var(--pfl-primary); color: #fff; }
@keyframes pfl-fade-in { from { opacity: 0; } to { opacity: 1; } }
@keyframes pfl-modal-pop { from { opacity: 0; transform: scale(.94) translateY(10px); } to { opacity: 1; transform: scale(1) translateY(0); } }
@media (max-width: 782px) {
	.pfl-about-modal-body { padding: 26px 22px 30px; }
	.pfl-about-modal-body h2 { font-size: 22px; }
}

/* ---------------- Grids / Cards ---------------- */
.pfl-grid { display: grid; gap: 30px; }
.pfl-grid-2 { grid-template-columns: repeat(2, 1fr); }
.pfl-grid-3 { grid-template-columns: repeat(3, 1fr); }
.pfl-grid-4 { grid-template-columns: repeat(4, 1fr); }
.pfl-card { background: #fff; border-radius: 14px; padding: 30px; box-shadow: 0 6px 24px rgba(0,0,0,.06); transition: transform .25s ease, box-shadow .25s ease; }
.pfl-card:hover { transform: translateY(-6px); box-shadow: 0 16px 34px rgba(0,0,0,.1); }
.pfl-card-icon { width: 60px; height: 60px; border-radius: 50%; background: var(--pfl-light); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; color: var(--pfl-primary); }
.pfl-card-icon svg { width: 30px; height: 30px; }
.pfl-card-icon-round { background: #fff; box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.pfl-service-card h3, .pfl-breed-card h3 { font-size: 20px; }
.pfl-service-card p, .pfl-breed-card p, .pfl-why-item p { color: #666; font-size: 15px; margin: 0; }

/* Breeds */
.pfl-breed-card { padding: 0; overflow: hidden; }
.pfl-breed-media img { width: 100%; height: 220px; object-fit: cover; }
.pfl-breed-placeholder { width: 100%; height: 220px; background: var(--pfl-light); display: flex; align-items: center; justify-content: center; color: var(--pfl-primary); }
.pfl-breed-placeholder svg { width: 60px; height: 60px; }
.pfl-breed-body { padding: 24px; }
.pfl-link-arrow { color: var(--pfl-primary); font-weight: 700; display: inline-block; margin-top: 12px; }

/* Why choose */
.pfl-why-item { text-align: center; padding: 20px; }
.pfl-why-item .pfl-card-icon { margin-left: auto; margin-right: auto; }
.pfl-why-item h3 { font-size: 19px; }

/* ---------------- Stats ---------------- */
.pfl-stats { background: var(--pfl-dark); color: #fff; padding: 60px 0; }
.pfl-stat-item { text-align: center; }
.pfl-stat-icon { color: var(--pfl-primary); margin-bottom: 10px; display: flex; justify-content: center; }
.pfl-stat-icon svg { width: 34px; height: 34px; }
.pfl-stat-number { font-size: 40px; font-weight: 800; font-family: Georgia, serif; display: inline-block; }
.pfl-stat-suffix { font-size: 30px; font-weight: 800; font-family: Georgia, serif; color: var(--pfl-primary); }
.pfl-stat-label { color: #ccc; font-size: 14px; margin-top: 6px; }

/* ---------------- Video ---------------- */
.pfl-video { background-color: #24331a; background-size: cover; background-position: center; text-align: center; color: #fff; }
.pfl-video-overlay { position: absolute; inset: 0; background: rgba(15,20,10,.6); }
.pfl-video-content { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.pfl-video-content h2 { color: #fff; }
.pfl-video-content p { color: #eee; margin-bottom: 30px; }
.pfl-play-btn { width: 84px; height: 84px; border-radius: 50%; background: var(--pfl-primary); border: none; color: #fff; font-size: 22px; cursor: pointer; margin: 0 auto; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 0 rgba(232,163,61,.6); animation: pfl-pulse 2.2s infinite; }
.pfl-play-icon { margin-left: 4px; }
@keyframes pfl-pulse { 0%{ box-shadow: 0 0 0 0 rgba(232,163,61,.55);} 70%{ box-shadow: 0 0 0 24px rgba(232,163,61,0);} 100%{ box-shadow: 0 0 0 0 rgba(232,163,61,0);} }
.pfl-video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 10000; align-items: center; justify-content: center; }
.pfl-video-modal.open { display: flex; }
.pfl-video-modal-inner { width: 90%; max-width: 900px; aspect-ratio: 16/9; position: relative; }
.pfl-video-modal-frame iframe { width: 100%; height: 100%; border: none; }
.pfl-video-modal-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-size: 34px; cursor: pointer; }

/* ---------------- Gallery ---------------- */
.pfl-gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pfl-gallery-item { position: relative; overflow: hidden; border-radius: 10px; aspect-ratio: 1/1; }
.pfl-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.pfl-gallery-item:hover img { transform: scale(1.08); }
.pfl-gallery-zoom { position: absolute; inset: 0; background: rgba(31,42,26,.55); color: #fff; font-size: 30px; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s ease; }
.pfl-gallery-item:hover .pfl-gallery-zoom { opacity: 1; }
.pfl-lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 10000; align-items: center; justify-content: center; flex-direction: column; padding: 30px; }
.pfl-lightbox.open { display: flex; }
.pfl-lightbox img { max-width: 90vw; max-height: 80vh; border-radius: 6px; }
.pfl-lightbox-caption { color: #fff; margin-top: 16px; }
.pfl-lightbox-close { position: absolute; top: 24px; right: 30px; background: none; border: none; color: #fff; font-size: 36px; cursor: pointer; }

/* ---------------- Testimonials ---------------- */
.pfl-testimonial-slider { position: relative; max-width: 720px; margin: 0 auto; min-height: 220px; }
.pfl-testimonial-card { display: none; text-align: center; background: #fff; padding: 40px; border-radius: 14px; box-shadow: 0 6px 24px rgba(0,0,0,.06); }
.pfl-testimonial-card.active { display: block; }
.pfl-testimonial-stars { color: var(--pfl-primary); margin-bottom: 14px; display: flex; justify-content: center; gap: 3px; }
.pfl-star { width: 18px; height: 18px; color: #ddd; }
.pfl-star-filled { color: var(--pfl-primary); }
.pfl-testimonial-text { font-size: 18px; font-style: italic; color: #444; margin-bottom: 20px; }
.pfl-testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.pfl-testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.pfl-testimonial-author strong { display: block; }
.pfl-testimonial-author span { color: #777; font-size: 13px; }
.pfl-testimonial-dots { display: flex; justify-content: center; gap: 10px; margin-top: 24px; }
.pfl-testimonial-dot { width: 11px; height: 11px; border-radius: 50%; background: #ddd; border: none; cursor: pointer; padding: 0; }
.pfl-testimonial-dot.active { background: var(--pfl-primary); }

/* ---------------- Blog ---------------- */
.pfl-blog-card { padding: 0; overflow: hidden; }
.pfl-blog-media img { width: 100%; height: 200px; object-fit: cover; }
.pfl-blog-body { padding: 24px; }
.pfl-blog-date { color: var(--pfl-secondary); font-size: 13px; font-weight: 700; text-transform: uppercase; }
.pfl-blog-body h3 { font-size: 19px; margin: 8px 0 10px; }

/* ---------------- CTA ---------------- */
.pfl-cta { background: var(--pfl-secondary); background-size: cover; background-position: center; text-align: center; color: #fff; padding: 80px 0; }
.pfl-cta-overlay { position: absolute; inset: 0; background: rgba(31,42,26,.55); }
.pfl-cta-content { position: relative; z-index: 2; max-width: 620px; margin: 0 auto; }
.pfl-cta-content h2 { color: #fff; }
.pfl-cta-content p { color: #f2f2f2; margin-bottom: 26px; }

/* ---------------- Contact ---------------- */
.pfl-contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; }
.pfl-contact-item { display: flex; gap: 16px; margin-bottom: 22px; }
.pfl-contact-item svg { width: 26px; height: 26px; color: var(--pfl-primary); flex-shrink: 0; }
.pfl-contact-item strong { display: block; margin-bottom: 2px; }
.pfl-contact-item span { color: #666; }
.pfl-contact-map { margin-top: 10px; border-radius: 10px; overflow: hidden; }
.pfl-contact-map iframe { width: 100%; height: 240px; border: none; display: block; }
.pfl-contact-form { display: flex; flex-direction: column; gap: 14px; background: var(--pfl-light); padding: 30px; border-radius: 14px; }
.pfl-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pfl-contact-form input, .pfl-contact-form textarea { padding: 13px 16px; border: 1px solid #ddd; border-radius: 8px; font-size: 15px; font-family: inherit; width: 100%; }
.pfl-contact-form button { align-self: flex-start; }
.pfl-form-note { font-size: 12px; color: #888; margin: 0; }

/* ---------------- Footer ---------------- */
.pfl-footer { background: var(--pfl-dark); color: #ddd; padding-top: 70px; }
.pfl-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.pfl-footer-logo { color: #fff; margin-bottom: 16px; }
.pfl-footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.pfl-footer-col p { color: #b8bdb2; font-size: 14px; }
.pfl-footer-col ul li { margin-bottom: 10px; }
.pfl-footer-col ul a { color: #b8bdb2; }
.pfl-footer-col ul a:hover { color: var(--pfl-primary); }
.pfl-social-links { display: flex; gap: 10px; margin-top: 18px; }
.pfl-social-links a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; font-size: 13px; text-transform: uppercase; color: #fff; }
.pfl-social-links a:hover { background: var(--pfl-primary); }
.pfl-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0; text-align: center; font-size: 13px; color: #999; }

/* ---------------- Back to top ---------------- */
.pfl-back-to-top { position: fixed; bottom: 26px; right: 26px; width: 46px; height: 46px; background: var(--pfl-primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; opacity: 0; visibility: hidden; transform: translateY(10px); transition: all .25s ease; z-index: 500; }
.pfl-back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
	.pfl-grid-4 { grid-template-columns: repeat(2, 1fr); }
	.pfl-grid-3 { grid-template-columns: repeat(2, 1fr); }
	.pfl-gallery-grid { grid-template-columns: repeat(3, 1fr); }
	.pfl-about-grid { grid-template-columns: 1fr; }
	.pfl-hero-content h1 { font-size: 42px; }
}

@media (max-width: 782px) {
	.pfl-section { padding: 60px 0; }
	.pfl-navbar-inner { display: flex; justify-content: space-between; align-items: center; height: 64px; padding: 0 16px; }
	.pfl-logo { font-size: 15px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 50vw; flex-shrink: 1; min-width: 0; }
	.pfl-logo span { overflow: hidden; text-overflow: ellipsis; }
	.pfl-logo-icon { width: 24px; height: 24px; flex-shrink: 0; }
	.pfl-nav-toggle { display: flex; }
	.pfl-nav-right { gap: 10px; flex-shrink: 0; }
	.pfl-nav-actions { display: none; }
	.pfl-nav-menu {
		position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
		background: #fff; flex-direction: column; align-items: flex-start;
		justify-self: auto; justify-content: flex-start;
		gap: 0; padding: 10px 24px 30px; overflow-y: auto;
		width: auto; max-width: none;
		transform: translateX(100%); transition: transform .3s ease; z-index: 998;
	}
	.pfl-nav-menu.open { transform: translateX(0); }
	.pfl-nav-menu a { width: 100%; padding: 14px 0; border-bottom: 1px solid #eee; }
	.pfl-hero-content h1 { font-size: 32px; }
	.pfl-hero-content p { font-size: 16px; }
	.pfl-grid-4, .pfl-grid-3, .pfl-grid-2 { grid-template-columns: 1fr; }
	.pfl-gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.pfl-contact-grid { grid-template-columns: 1fr; }
	.pfl-footer-grid { grid-template-columns: 1fr; gap: 30px; }
	.pfl-about-stat-badge { left: 10px; bottom: -16px; padding: 12px 18px; }
	.pfl-hero-arrow { width: 38px; height: 38px; font-size: 20px; }
	.pfl-hero-prev { left: 10px; }
	.pfl-hero-next { right: 10px; }
	.pfl-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
	.pfl-hero { min-height: 480px; }
	.pfl-hero-content h1 { font-size: 26px; }
	.pfl-gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.pfl-container { padding: 0 16px; }
	.pfl-card { padding: 22px; }
	.pfl-stat-number { font-size: 30px; }
}
