/*
Theme Name:  Placement Focus
Theme URI:   https://placementfocus.com
Author:      Placement Focus Dev
Description: Exact match of the Placement Focus redesign — cream hero, crimson brand, Cormorant + Jakarta Sans typography, fully responsive.
Version:     3.0.0
License:     GPL-2.0-or-later
Text Domain: placement-focus
*/

/* ──────── Google Fonts loaded via functions.php ──────── */

/* ──────── CSS Variables ──────── */
:root {
  --primary:   #8B1A1A;
  --secondary: #C0392B;
  --gold:      #C8963E;
  --cream:     #F9F1E7;
  --cream2:    #F0E4D0;
  --text:      #1A1A1A;
  --muted:     #6B5B4E;
  --white:     #FFFFFF;
  --shadow:    0 20px 60px rgba(139,26,26,.14);
  --radius:    16px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* ──────── Typography ──────── */
.display { font-family: 'Cormorant Garamond', serif; line-height: 1.05; font-weight: 700; }

/* ──────── Section Common ──────── */
section { padding: 100px 60px; }
.section-tag { display: inline-block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--primary); margin-bottom: 12px; }
.section-title { font-size: clamp(30px, 3.5vw, 48px); color: var(--text); margin-bottom: 18px; }
.section-lead { font-size: 17px; color: var(--muted); line-height: 1.7; max-width: 600px; }
.divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--gold)); border-radius: 2px; margin: 18px 0 24px; }

/* ──────── NAV ──────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(139,26,26,.1);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(139,26,26,.12); }

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon { width: 42px; height: 42px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.nav-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--primary); line-height: 1.1; }
.nav-logo-text small { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }

.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-links a { padding: 8px 15px; text-decoration: none; color: var(--text); font-size: 14px; font-weight: 500; border-radius: 8px; transition: background .18s, color .18s; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active, .nav-links li.current-menu-item > a, .nav-links li.current_page_item > a { background: var(--cream); color: var(--primary); font-weight: 600; }

.nav-cta { padding: 10px 22px; background: var(--primary); color: #fff !important; border: none; border-radius: 30px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 600; cursor: pointer; text-decoration: none; transition: background .2s, transform .2s, box-shadow .2s; white-space: nowrap; flex-shrink: 0; }
.nav-cta:hover { background: var(--secondary); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,26,26,.3); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; width: 40px; height: 40px; border-radius: 8px; padding: 8px; background: transparent; border: none; transition: background .2s; flex-shrink: 0; z-index: 1100; }
.nav-hamburger:hover { background: var(--cream); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--primary); border-radius: 2px; transition: transform .3s ease, opacity .3s ease, width .3s ease; transform-origin: center; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer { display: none; position: fixed; top: 72px; left: 0; right: 0; background: #fff; border-bottom: 2px solid rgba(139,26,26,.12); box-shadow: 0 16px 48px rgba(139,26,26,.13); z-index: 999; padding: 0; overflow: hidden; max-height: 0; transition: max-height .38s cubic-bezier(.4,0,.2,1), padding .3s; }
.nav-drawer.open { display: block; max-height: 500px; padding: 12px 0 20px; }
.nav-drawer ul { list-style: none; padding: 0 20px; margin: 0; }
.nav-drawer ul li { border-bottom: 1px solid rgba(139,26,26,.07); }
.nav-drawer ul li:last-child { border: none; }
.nav-drawer ul a { display: block; padding: 14px 12px; text-decoration: none; color: var(--text); font-size: 15px; font-weight: 500; border-radius: 8px; transition: background .15s, color .15s; }
.nav-drawer ul a:hover, .nav-drawer ul a.active { background: var(--cream); color: var(--primary); font-weight: 600; }
.nav-drawer .drawer-cta { display: block; margin: 14px 20px 0; padding: 14px; background: var(--primary); color: #fff; text-align: center; border-radius: 12px; font-size: 15px; font-weight: 700; text-decoration: none; transition: background .2s; }
.nav-drawer .drawer-cta:hover { background: var(--secondary); }

/* ──────── HERO ──────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 100px 60px 60px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background: var(--cream);
  margin-top: 72px; /* offset for fixed nav */
}
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(139,26,26,.06) 0%, transparent 70%); pointer-events: none; }
.hero-dots { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(139,26,26,.12) 1.5px, transparent 1.5px); background-size: 28px 28px; pointer-events: none; opacity: .5; }

.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(139,26,26,.08); color: var(--primary); padding: 8px 16px; border-radius: 30px; font-size: 13px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 24px; border: 1px solid rgba(139,26,26,.15); }
.hero-title { font-size: clamp(38px, 4.5vw, 62px); color: var(--text); margin-bottom: 20px; letter-spacing: -.02em; }
.hero-title .highlight { color: var(--primary); }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-primary { padding: 14px 32px; background: var(--primary); color: #fff; border: none; border-radius: 40px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-primary:hover { background: var(--secondary); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139,26,26,.3); color: #fff; }
.btn-outline { padding: 14px 32px; background: transparent; color: var(--primary); border: 2px solid var(--primary); border-radius: 40px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: all .25s; }
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }

.hero-stats { display: flex; gap: 32px; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(139,26,26,.15); }
.hero-stat .num { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; color: var(--primary); line-height: 1; }
.hero-stat .lbl { font-size: 12px; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-top: 4px; }

.hero-visual { position: relative; z-index: 1; animation: fadeUp .9s .4s ease both; }
.hero-img-wrap { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); position: relative; }
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; filter: brightness(.95) saturate(1.05); }
.hero-float-card { position: absolute; bottom: -20px; left: -30px; background: #fff; border-radius: 16px; padding: 16px 20px; box-shadow: 0 16px 40px rgba(0,0,0,.12); display: flex; align-items: center; gap: 14px; min-width: 200px; }
.hero-float-icon { width: 44px; height: 44px; background: var(--cream); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.hero-float-text .t { font-size: 18px; font-weight: 700; color: var(--primary); font-family: 'Cormorant Garamond', serif; }
.hero-float-text .s { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ──────── ABOUT ──────── */
.about { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-stack { position: relative; height: 520px; }
.about-img-main { position: absolute; left: 0; top: 0; width: 75%; height: 400px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-accent { position: absolute; right: 0; bottom: 0; width: 55%; height: 260px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: var(--radius); display: flex; flex-direction: column; align-items: center; justify-content: center; color: #fff; text-align: center; padding: 24px; box-shadow: var(--shadow); }
.about-img-accent .big { font-family: 'Cormorant Garamond', serif; font-size: 52px; font-weight: 700; line-height: 1; }
.about-img-accent .sm { font-size: 13px; opacity: .85; margin-top: 6px; font-weight: 500; }
.vm-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.vm-card { background: var(--cream); border-radius: 14px; padding: 22px; border-left: 4px solid var(--primary); transition: transform .2s; }
.vm-card:hover { transform: translateY(-3px); }
.vm-card h4 { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); margin-bottom: 8px; font-family: 'Plus Jakarta Sans', sans-serif; }
.vm-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ──────── WHO WE SERVE ──────── */
.serve { background: var(--cream); }
.serve-header { text-align: center; margin-bottom: 60px; }
.serve-header .section-lead { margin: 0 auto; }
.serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.serve-card { background: #fff; border-radius: 20px; padding: 36px 28px; transition: all .3s; position: relative; overflow: hidden; border: 1px solid transparent; }
.serve-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--gold)); transform: scaleX(0); transition: transform .3s; transform-origin: left; }
.serve-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(139,26,26,.1); }
.serve-card:hover::after { transform: scaleX(1); }
.serve-icon { font-size: 40px; margin-bottom: 18px; display: block; }
.serve-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.serve-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.serve-link { color: var(--primary); font-size: 13px; font-weight: 700; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; transition: gap .2s; }
.serve-link:hover { gap: 10px; }

/* ──────── SERVICES ──────── */
.services { background: var(--primary); color: #fff; }
.services .section-title, .services .section-tag { color: #fff; }
.services .section-tag { opacity: .7; }
.services .divider { background: linear-gradient(90deg, var(--gold), rgba(255,255,255,.3)); }
.services-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-top: 50px; }
.services-list { display: flex; flex-direction: column; gap: 4px; }
.svc-item { display: flex; align-items: center; gap: 20px; padding: 20px 24px; border-radius: 14px; cursor: pointer; transition: all .2s; border: 1px solid transparent; }
.svc-item.active, .svc-item:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.2); }
.svc-num { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: rgba(255,255,255,.3); font-weight: 700; min-width: 36px; }
.svc-item.active .svc-num { color: var(--gold); }
.svc-info h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 4px; font-family: 'Plus Jakarta Sans', sans-serif; }
.svc-info p { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.svc-arrow { margin-left: auto; color: rgba(255,255,255,.3); font-size: 18px; transition: all .2s; }
.svc-item.active .svc-arrow, .svc-item:hover .svc-arrow { color: var(--gold); transform: translateX(4px); }
.services-visual { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 20px; padding: 40px; min-height: 320px; display: flex; flex-direction: column; justify-content: center; }
.svc-detail { display: none; }
.svc-detail.active { display: block; }
.svc-detail h3 { font-family: 'Cormorant Garamond', serif; font-size: 32px; color: #fff; margin-bottom: 16px; }
.svc-detail p { color: rgba(255,255,255,.8); line-height: 1.7; margin-bottom: 24px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.svc-tag { padding: 6px 14px; background: rgba(255,255,255,.15); color: #fff; border-radius: 20px; font-size: 12px; font-weight: 600; }

/* ──────── WHY CHOOSE ──────── */
.why { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 60px; }
.why-card { text-align: center; padding: 36px 20px; border-radius: 20px; background: var(--cream); transition: all .3s; position: relative; }
.why-card:hover { background: var(--primary); }
.why-card:hover .why-icon { background: rgba(255,255,255,.2); }
.why-card:hover h4, .why-card:hover p { color: #fff; }
.why-icon { width: 64px; height: 64px; background: rgba(139,26,26,.1); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; transition: background .3s; }
.why-card h4 { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; transition: color .3s; font-family: 'Plus Jakarta Sans', sans-serif; }
.why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; transition: color .3s; }

/* ──────── CTA BAND ──────── */
.cta-band { background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%); text-align: center; padding: 80px 60px; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 24px 24px; }
.cta-band h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); color: #fff; margin-bottom: 16px; position: relative; }
.cta-band p { font-size: 17px; color: rgba(255,255,255,.8); margin-bottom: 36px; position: relative; }
.btn-white { padding: 16px 40px; background: #fff; color: var(--primary); border: none; border-radius: 40px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16px; font-weight: 700; text-decoration: none; display: inline-block; transition: all .25s; position: relative; }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(0,0,0,.25); color: var(--primary); }

/* ──────── CONTACT ──────── */
.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; }
.contact-info { padding-top: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 28px; }
.ci-icon { width: 48px; height: 48px; min-width: 48px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ci-text strong { display: block; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--primary); margin-bottom: 4px; }
.ci-text a, .ci-text span { font-size: 15px; color: var(--text); text-decoration: none; }
.ci-text a:hover { color: var(--primary); }
.contact-form { background: #fff; border-radius: 24px; padding: 40px; box-shadow: var(--shadow); }
.contact-form h3 { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: var(--text); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin-bottom: 8px; }
.form-group input, .form-group textarea { width: 100%; padding: 13px 16px; border: 1.5px solid #E5D5C5; border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; color: var(--text); transition: border-color .2s; outline: none; background: var(--cream); }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 3px rgba(139,26,26,.08); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 15px; background: var(--primary); color: #fff; border: none; border-radius: 12px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; margin-top: 6px; }
.form-submit:hover { background: var(--secondary); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(139,26,26,.3); }

/* ──────── FOOTER ──────── */
footer { background: var(--text); color: rgba(255,255,255,.7); padding: 60px 60px 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .logo-icon { width: 40px; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.footer-brand .logo-text { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: #fff; font-weight: 700; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h5 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ──────── WhatsApp FAB ──────── */
.wa-fab { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(37,211,102,.4); z-index: 900; transition: all .2s; text-decoration: none; font-size: 28px; }
.wa-fab:hover { transform: scale(1.1); box-shadow: 0 10px 30px rgba(37,211,102,.5); }

/* ──────── Inner Pages ──────── */
.pf-page-hero { background: linear-gradient(135deg, var(--primary), var(--secondary)); padding: 80px 60px 60px; margin-top: 72px; position: relative; overflow: hidden; }
.pf-page-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 22px 22px; }
.pf-breadcrumb { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 12px; position: relative; }
.pf-breadcrumb a { color: rgba(255,255,255,.7); }
.pf-breadcrumb a:hover { color: #fff; }
.pf-page-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 5vw, 56px); color: #fff; position: relative; font-weight: 700; }
.pf-page-content { padding: 60px 60px 100px; max-width: 900px; }
.pf-page-body { font-size: 16px; line-height: 1.8; color: var(--text); }
.pf-page-body h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(24px,3vw,36px); margin: 1.8em 0 .6em; }
.pf-page-body h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(20px,2.5vw,28px); margin: 1.4em 0 .5em; }
.pf-page-body p { margin-bottom: 1.2em; }
.pf-page-body ul, .pf-page-body ol { margin: 1em 0 1em 1.5em; list-style: disc; }
.pf-page-body li { margin-bottom: .4em; }
.pf-page-body a { color: var(--primary); text-decoration: underline; }
.pf-page-body img { border-radius: 12px; margin: 1.5em 0; box-shadow: var(--shadow); }
.pf-page-body blockquote { border-left: 4px solid var(--primary); background: var(--cream); padding: 16px 20px; border-radius: 0 10px 10px 0; margin: 1.5em 0; font-style: italic; color: var(--muted); }

/* ──────── Animations ──────── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { animation: fadeUp .7s ease both; }
.hero-content > *:nth-child(1) { animation-delay: .1s; }
.hero-content > *:nth-child(2) { animation-delay: .2s; }
.hero-content > *:nth-child(3) { animation-delay: .3s; }
.hero-content > *:nth-child(4) { animation-delay: .4s; }
.hero-content > *:nth-child(5) { animation-delay: .5s; }

/* ──────── RESPONSIVE ──────── */
@media (max-width: 1024px) {
  section { padding: 70px 40px; }
  .hero { padding: 100px 40px 60px; gap: 40px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pf-page-hero { padding: 60px 40px 50px; }
  .pf-page-content { padding: 50px 40px 80px; }
}

@media (max-width: 800px) {
  nav { padding: 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; padding: 90px 24px 50px; }
  .hero-visual { display: none; }
  .about-grid, .services-layout, .contact-grid, .serve-grid { grid-template-columns: 1fr; }
  .vm-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 60px 24px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  footer { padding: 48px 24px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-band { padding: 60px 24px; }
  .about-img-stack { height: 300px; }
  .about-img-main { width: 80%; height: 260px; }
  .pf-page-hero { padding: 50px 24px 40px; margin-top: 72px; }
  .pf-page-content { padding: 40px 24px 70px; }
}

@media (max-width: 480px) {
  .hero-stats { gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .wa-fab { bottom: 16px; right: 16px; width: 50px; height: 50px; font-size: 24px; }
}
