/* =============================================================
   Kids Basketball Parties - Theme Stylesheet
   ============================================================= */

:root {
	--navy-950: #081426;
	--navy-900: #0d1f3d;
	--navy-800: #142c53;
	--navy-700: #1c3a68;
	--navy-600: #274a80;
	--orange-600: #e8500f;
	--orange-500: #f15a24;
	--orange-400: #ff7a35;
	--orange-100: #fff0e8;
	--white: #ffffff;
	--gray-50: #f6f7fb;
	--gray-100: #eef1f7;
	--gray-200: #e2e6f0;
	--gray-400: #97a1b8;
	--gray-500: #6b7488;
	--gray-700: #3c4457;
	--ink: #101828;
	--radius-sm: 8px;
	--radius-md: 14px;
	--radius-lg: 22px;
	--radius-pill: 999px;
	--shadow-sm: 0 2px 8px rgba(13, 31, 61, 0.08);
	--shadow-md: 0 12px 30px rgba(13, 31, 61, 0.12);
	--shadow-lg: 0 22px 50px rgba(13, 31, 61, 0.22);
	--font-display: "Anton", "Arial Narrow", sans-serif;
	--font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--container: 1220px;
}

/* ---------- Reset ---------- */
* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--white);
	font-size: 16px;
	line-height: 1.6;
	overflow-x: hidden;
	width: 100%;
	position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 { margin: 0 0 .5em; font-family: var(--font-display); font-weight: 400; letter-spacing: .3px; line-height: 1.12; color: var(--navy-900); text-transform: uppercase; }
p { margin: 0 0 1em; color: var(--gray-700); }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.screen-reader-text,
.sr-only { position: absolute !important; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; white-space: nowrap; }

/* ---------- Buttons ---------- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 30px;
	border-radius: var(--radius-pill);
	font-weight: 800;
	font-size: 15px;
	letter-spacing: .3px;
	text-transform: uppercase;
	border: 2px solid transparent;
	transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease, color .15s ease;
	white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange-500); color: var(--white); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--orange-600); box-shadow: var(--shadow-md); color: var(--white); }
.btn-navy { background: var(--navy-900); color: var(--white); }
.btn-navy:hover { background: var(--navy-800); color: var(--white); }
.btn-outline { background: var(--white); color: var(--navy-900); border-color: var(--navy-900); }
.btn-outline:hover { background: var(--navy-900); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { background: var(--white); color: var(--navy-900); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn .chev { font-size: 1.1em; line-height: 0; }

/* ---------- Top bar ---------- */
.topbar { background: linear-gradient(90deg, var(--orange-600), var(--orange-400)); color: var(--white); font-size: 13px; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; gap: 16px; flex-wrap: wrap; }
.topbar-contact { display: flex; gap: 22px; font-weight: 700; }
.topbar-contact a { display: inline-flex; align-items: center; gap: 6px; }
.topbar-tag { font-weight: 600; letter-spacing: .4px; opacity: .95; }

/* ---------- Header ---------- */
.site-header { background: var(--white); box-shadow: 0 2px 12px rgba(13,31,61,.06); position: sticky; top: 0; z-index: 500; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; gap: 20px; }
.site-logo img, .custom-logo { height: 62px; width: auto; }
.main-nav > ul { display: flex; align-items: center; gap: 6px; }
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a { display: block; padding: 12px 14px; font-weight: 700; font-size: 14.5px; color: var(--navy-900); border-radius: var(--radius-sm); }
.main-nav > ul > li > a:hover { color: var(--orange-600); }
.main-nav li.menu-cta { margin-left: 6px; }
.main-nav li.menu-cta > a { background: var(--orange-500); color: var(--white); padding: 12px 22px; border-radius: var(--radius-pill); font-weight: 800; text-transform: uppercase; font-size: 13.5px; }
.main-nav li.menu-cta > a:hover { background: var(--orange-600); color: var(--white); }
.main-nav .sub-menu { position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px; box-shadow: var(--shadow-md); border-radius: var(--radius-sm); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .15s ease; z-index: 50; }
.main-nav li.menu-item-has-children:hover > .sub-menu,
.main-nav li.menu-item-has-children:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.main-nav .sub-menu li a { padding: 10px 14px; border-radius: 6px; font-weight: 600; font-size: 14px; color: var(--navy-800); }
.main-nav .sub-menu li a:hover { background: var(--gray-50); color: var(--orange-600); }
.main-nav li.menu-item-has-children > a::after { content: "\25BE"; font-size: 10px; margin-left: 6px; opacity: .6; }

.menu-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 40px; height: 40px; background: none; border: none; padding: 0; }
.menu-toggle span { display: block; width: 100%; height: 3px; background: var(--navy-900); border-radius: 3px; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle.is-active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-active span:nth-child(2) { opacity: 0; }
.menu-toggle.is-active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Sections & headings ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-navy { background: var(--navy-900); color: var(--white); }
.section-navy p { color: rgba(255,255,255,.75); }
.section-navy h2, .section-navy h3 { color: var(--white); }
.section-gray { background: var(--gray-50); }
.section-orange { background: var(--orange-500); }
.section-orange .eyebrow { background: var(--white); color: var(--orange-600); }
.section-orange .section-head h2, .section-orange .section-head p { color: var(--white); }
.section-orange .contact-card p, .section-orange .contact-card a { color: var(--gray-700); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--orange-100); color: var(--orange-600); font-weight: 800; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; padding: 7px 16px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.section-navy .eyebrow { background: rgba(241,90,36,.16); color: var(--orange-400); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head p { font-size: 17px; }
.divider-star { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 18px 0; color: var(--orange-500); }
.divider-star::before, .divider-star::after { content: ""; height: 2px; width: 60px; background: var(--orange-500); opacity: .5; }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--navy-900) url('../images/hero-photo.jpg') right center / cover no-repeat; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,38,.96) 0%, rgba(8,20,38,.88) 38%, rgba(8,20,38,.35) 68%, rgba(8,20,38,.15) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 90px 0 100px; display: grid; grid-template-columns: minmax(0,620px) 1fr; gap: 20px; align-items: center; }
.hero-star { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); color: var(--white); font-weight: 700; font-size: 12.5px; letter-spacing: 1.4px; text-transform: uppercase; padding: 8px 16px; border-radius: var(--radius-pill); margin-bottom: 22px; }
.hero h1 { color: var(--white); font-size: clamp(38px, 5.4vw, 62px); margin-bottom: 18px; }
.hero h1 .accent { color: var(--orange-500); }
.hero p.lede { color: rgba(255,255,255,.82); font-size: 18px; max-width: 520px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 34px; flex-wrap: wrap; }
.hero-stats .stat strong { display: block; font-family: var(--font-display); font-size: 30px; color: var(--orange-500); }
.hero-stats .stat span { color: rgba(255,255,255,.7); font-size: 13px; text-transform: uppercase; letter-spacing: .6px; font-weight: 600; }

.hero-image-section { background: #001335; }
.hero-composite-img { width: 100%; display: block; }
.hero-btn-row { display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap; }

/* On screens with enough room, the image itself has empty navy space
   below "THE BIRTHDAY CHILD IS THE MVP" ribbon (roughly the bottom 17%
   of the image, left-aligned under the ribbon) - overlay the buttons
   directly into that space so they sit as part of the same graphic
   instead of trailing below it as a separate block. */
@media (min-width: 641px) {
	.hero-image-section { position: relative; }
	.hero-btn-row { position: absolute; left: 6%; top: 86%; }
}

/* Not enough vertical room to overlay on small screens - fall back to a
   normal, centered row below the image. */
@media (max-width: 640px) {
	.hero-image-section { padding-bottom: 26px; }
	.hero-btn-row { justify-content: center; padding-top: 16px; }
}

.page-hero { position: relative; background: var(--navy-900); color: var(--white); padding: 60px 0 56px; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background: radial-gradient(circle at 85% 20%, rgba(241,90,36,.28), transparent 55%); }
.page-hero-inner { position: relative; z-index: 2; text-align: center; max-width: 760px; margin: 0 auto; }
.page-hero h1 { color: var(--white); font-size: clamp(32px, 4.6vw, 48px); }
.page-hero p { color: rgba(255,255,255,.78); font-size: 17px; max-width: 600px; margin: 0 auto; }
.breadcrumb { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,.55); }
.breadcrumb a { color: rgba(255,255,255,.85); }

/* ---------- USP feature grid (uses client-supplied brand tiles) ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usp-grid img { border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }

.icon-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.icon-card { background: var(--white); border-radius: var(--radius-md); padding: 34px 26px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); transition: transform .18s ease, box-shadow .18s ease; }
.icon-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.icon-card .icon-wrap { width: 64px; height: 64px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 28px; }
.icon-card h3 { font-size: 18px; margin-bottom: 8px; }
.icon-card p { font-size: 14.5px; margin: 0; }

/* ---------- Two-column feature (about) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media .badge-float { position: absolute; bottom: -22px; left: -22px; background: var(--white); border-radius: var(--radius-md); padding: 16px 22px; box-shadow: var(--shadow-md); font-weight: 800; font-family: var(--font-display); color: var(--navy-900); display: flex; align-items: center; gap: 12px; text-transform: none; letter-spacing: 0; }
.split-media .badge-float strong { display: block; font-size: 22px; color: var(--orange-600); }
.split-media .badge-float span { display: block; font-size: 11px; color: var(--gray-500); font-family: var(--font-body); text-transform: uppercase; letter-spacing: .5px; font-weight: 700; }
.check-list { margin: 22px 0 30px; }
.check-list li { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--gray-200); font-weight: 600; color: var(--navy-900); }
.check-list li:last-child { border-bottom: none; }
.check-list li .mark { flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; }
.check-list li span.txt { color: var(--gray-700); font-weight: 500; }

/* ---------- Locations strip ---------- */
.suburb-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }
.suburb-pill { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); color: var(--white); padding: 10px 22px; border-radius: var(--radius-pill); font-weight: 700; font-size: 14px; }
.suburb-pill.is-more { background: var(--orange-500); border-color: var(--orange-500); }

/* ---------- Pricing cards ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.price-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.is-featured { border-color: var(--orange-500); box-shadow: var(--shadow-md); }
.price-card .ribbon { position: absolute; top: 14px; right: -34px; background: var(--orange-500); color: var(--white); font-size: 11px; font-weight: 800; letter-spacing: .6px; padding: 5px 40px; transform: rotate(35deg); text-transform: uppercase; }
.price-media { aspect-ratio: 1 / 1; background: linear-gradient(135deg, var(--navy-800), var(--navy-950)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.price-media img { height: 100%; width: 100%; object-fit: cover; object-position: center center; }
.price-body { padding: 26px 22px 28px; display: flex; flex-direction: column; flex: 1; }
.price-badge { font-size: 11.5px; font-weight: 800; letter-spacing: .5px; color: var(--orange-600); text-transform: uppercase; margin-bottom: 8px; }
.price-body h3 { font-size: 21px; margin-bottom: 14px; }
.price-body ul { margin-bottom: 20px; flex: 1; }
.price-body ul li { font-size: 13.5px; color: var(--gray-700); padding: 6px 0 6px 22px; position: relative; font-weight: 500; }
.price-body ul li::before { content: "\2713"; position: absolute; left: 0; top: 6px; color: var(--orange-500); font-weight: 800; }
.price-tag { font-family: var(--font-display); font-size: 34px; color: var(--navy-900); margin-bottom: 4px; }
.price-tag small { display: block; font-size: 13px; font-family: var(--font-body); font-weight: 700; color: var(--gray-500); line-height: 1.4; min-height: 18px; margin-top: 2px; }
.price-note { font-size: 12px; color: var(--gray-500); margin-bottom: 16px; min-height: 16px; }

/* ---------- Steps ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; counter-reset: step; }
.step-card { text-align: center; padding: 0 10px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--orange-500); color: var(--white); font-family: var(--font-display); font-size: 24px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: var(--shadow-sm); }
.step-card .step-label { font-size: 12px; letter-spacing: 1px; font-weight: 800; color: var(--orange-600); text-transform: uppercase; margin-bottom: 8px; }
.step-card h3 { font-size: 19px; margin-bottom: 10px; }
.step-card p { font-size: 14.5px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.stars { color: var(--orange-500); letter-spacing: 3px; margin-bottom: 14px; font-size: 15px; }
.testimonial-card p.quote { font-size: 15px; color: var(--gray-700); font-style: italic; margin-bottom: 18px; }
.testimonial-who { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 16px; flex: none; }
.testimonial-who strong { display: block; font-size: 14.5px; color: var(--navy-900); }
.testimonial-who span { font-size: 12.5px; color: var(--gray-500); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); color: var(--white); border-radius: var(--radius-lg); padding: 56px 50px; text-align: center; position: relative; overflow: hidden; }
.cta-banner::after { content:""; position:absolute; inset:0; background: radial-gradient(circle at 20% 20%, rgba(241,90,36,.25), transparent 45%); }
.cta-banner .inner { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); font-size: clamp(26px, 3.6vw, 36px); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Cards / grids generic ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.card-media { aspect-ratio: 4/3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.card:hover .card-media img { transform: scale(1.06); }
.card-body { padding: 22px 22px 26px; }
.card-body h3 { font-size: 18px; margin-bottom: 8px; }
.card-body p { font-size: 14px; margin-bottom: 14px; }
.card-price { font-family: var(--font-display); color: var(--orange-600); font-size: 22px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gallery-grid a { display: block; border-radius: var(--radius-md); overflow: hidden; position: relative; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-grid a:hover img { transform: scale(1.08); }
.gallery-grid .tall { grid-row: span 2; }
.gallery-grid .wide { grid-column: span 2; }

/* ---------- Venues ---------- */
.venue-card { background: var(--white); border-radius: var(--radius-md); padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); display: flex; gap: 16px; align-items: flex-start; }
.venue-card .pin { flex: none; width: 46px; height: 46px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.venue-card h3 { font-size: 17px; margin-bottom: 4px; }
.venue-card p { font-size: 13.5px; margin: 0; }

/* ---------- Extras (Party Packages page add-ons) ---------- */
.extra-card { background: var(--white); border-radius: var(--radius-md); padding: 26px 24px; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); display: flex; flex-direction: column; height: 100%; transition: transform .18s ease, box-shadow .18s ease; }
.extra-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.extra-card .icon-wrap { width: 50px; height: 50px; border-radius: 12px; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.extra-card h4 { font-family: var(--font-body); text-transform: none; font-weight: 800; font-size: 16px; color: var(--navy-900); margin-bottom: 8px; letter-spacing: 0; }
.extra-card p { font-size: 13.5px; flex: 1; margin-bottom: 16px; }
.extra-card .extra-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.extra-card .extra-price { font-family: var(--font-display); font-size: 20px; color: var(--orange-600); }
.category-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 60px 0 26px; flex-wrap: wrap; }
.category-head:first-of-type { margin-top: 0; }
.category-head h3 { font-size: 22px; margin: 0; }
.category-head p { margin: 0; font-size: 14px; max-width: 480px; }

/* ---------- Coaching hub ---------- */
.coach-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); display: flex; flex-direction: column; transition: transform .18s ease, box-shadow .18s ease; }
.coach-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.coach-card .card-media { aspect-ratio: 16/10; }
.coach-card .card-body { flex: 1; display: flex; flex-direction: column; }
.coach-card .price-badge { margin-bottom: 6px; }
.coach-card .card-body p { flex: 1; }

/* ---------- Forms ---------- */
.form-wrap { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 44px; max-width: 880px; margin: -70px auto 0; position: relative; z-index: 5; }
.form-wrap h2 { font-size: 24px; text-align: center; }
.form-wrap > p.form-intro { text-align: center; max-width: 560px; margin: 0 auto 28px; font-size: 14.5px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row { margin-bottom: 20px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { display: block; font-size: 13px; font-weight: 700; color: var(--navy-900); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .3px; }
.form-row label .req { color: var(--orange-600); }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="date"],
.form-row input[type="time"],
.form-row select,
.form-row textarea {
	width: 100%;
	padding: 13px 16px;
	border: 1.5px solid var(--gray-200);
	border-radius: var(--radius-sm);
	background: var(--gray-50);
	color: var(--ink);
	transition: border-color .15s ease, background .15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus { outline: none; border-color: var(--orange-500); background: var(--white); }
.form-row textarea { min-height: 110px; resize: vertical; }
.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.checkbox-grid label { display: flex; align-items: center; gap: 10px; font-weight: 500; font-size: 14px; color: var(--gray-700); text-transform: none; letter-spacing: 0; cursor: pointer; }
.checkbox-grid input { width: 17px; height: 17px; accent-color: var(--orange-500); }
.form-note { font-size: 12.5px; color: var(--gray-500); text-align: center; margin-top: 16px; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-alert { border-radius: var(--radius-sm); padding: 16px 20px; margin-bottom: 24px; font-weight: 600; font-size: 14.5px; }
.form-alert.success { background: #e8f7ee; color: #1a7f3c; border: 1px solid #b9e8c8; }
.form-alert.error { background: #fdecea; color: #b3261e; border: 1px solid #f6c6c2; }
.form-alt { text-align: center; margin-top: 34px; }
.form-alt p { font-size: 14px; margin-bottom: 14px; }
.form-alt .btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.contact-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 22px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100); }
.contact-card .icon-wrap { width: 56px; height: 56px; border-radius: 50%; background: var(--orange-100); color: var(--orange-600); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; font-size: 24px; }
.contact-card h3 { font-size: 16px; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 14px; color: var(--gray-700); }
.contact-card a:hover { color: var(--orange-600); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); margin-top: 50px; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,.75); padding-top: 64px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { width: 130px; height: auto; margin-bottom: 16px; }
.footer-about p { color: rgba(255,255,255,.6); font-size: 14px; }
.footer-social { display: inline-flex; align-items: center; gap: 8px; color: var(--orange-400); font-weight: 700; font-size: 14px; margin-top: 6px; }
.footer-col h4 { color: var(--white); font-size: 14px; letter-spacing: .8px; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; font-size: 14px; }
.footer-col ul li a:hover { color: var(--orange-400); }
.footer-contact li { margin-bottom: 10px; }
.footer-col .btn { margin-top: 8px; }
.footer-bottom { padding: 22px 0; }
.footer-bottom p { color: rgba(255,255,255,.45); font-size: 12.5px; text-align: center; margin: 0; }
.footer-bottom a { color: rgba(255,255,255,.65); }
.footer-bottom a:hover { color: var(--orange-400); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list span { background: var(--gray-100); color: var(--navy-800); font-size: 12.5px; font-weight: 700; padding: 7px 14px; border-radius: var(--radius-pill); }

/* Simple inline icon glyphs (no icon font dependency) - scoped to <span>
   only so it never collides with unrelated .icon-card/.icon-cards/.icon-wrap
   block elements that happen to share the "icon-" class prefix. */
span[class^="icon-"] { display: inline-block; }

/* ---------- Generic entry content (legal pages) ---------- */
.entry-content h2, .entry-content h3, .entry-content h4 { text-transform: none; font-family: var(--font-body); font-weight: 800; color: var(--navy-900); margin-top: 1.6em; }
.entry-content h2 { font-size: 24px; }
.entry-content h3 { font-size: 19px; }
.entry-content ul, .entry-content ol { margin: 0 0 1em 1.2em; color: var(--gray-700); }
.entry-content a { color: var(--orange-600); text-decoration: underline; }

/* ---------- Lightbox ---------- */
.kbp-lightbox { position: fixed; inset: 0; background: rgba(8,20,38,.92); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 40px; }
.kbp-lightbox.is-open { display: flex; }
.kbp-lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.kbp-lightbox-close { position: absolute; top: 24px; right: 30px; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.12); color: var(--white); border: none; font-size: 22px; }
.kbp-lightbox-close:hover { background: var(--orange-500); }

/* ---------- 404 ---------- */
.error-404 { text-align: center; padding: 120px 0; }
.error-404 h1 { font-size: 96px; color: var(--orange-500); }

/* =============================================================
   Responsive
   ============================================================= */
@media (max-width: 1100px) {
	.pricing-grid { grid-template-columns: repeat(3, 1fr); }
	.usp-grid { grid-template-columns: repeat(3, 1fr); }
	.footer-grid { grid-template-columns: 1fr 1fr; }
	.contact-grid { grid-template-columns: repeat(2, 1fr); }
	.gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	.main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; width: auto; height: 100vh; background: var(--white); box-shadow: var(--shadow-lg); padding: 90px 24px 24px; overflow-y: auto; }
	.main-nav.is-open { display: block; }
	.main-nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
	.main-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; display: none; padding-left: 14px; }
	.main-nav li.menu-item-has-children.is-open > .sub-menu { display: block; }
	.main-nav li.menu-cta { margin: 10px 0 0; }
	.menu-toggle { display: flex; }
	.hero-inner { grid-template-columns: 1fr; text-align: center; padding: 60px 0 70px; }
	.hero p.lede { margin-left: auto; margin-right: auto; }
	.hero-ctas, .hero-stats { justify-content: center; }
	.split { grid-template-columns: 1fr; gap: 40px; }
	.split-reverse .split-media { order: -1; }
	.grid-2, .grid-3, .grid-4, .steps-grid, .testimonial-grid, .icon-cards, .footer-grid { grid-template-columns: repeat(2, 1fr); }
	.pricing-grid { grid-template-columns: repeat(2, 1fr); }
	.usp-grid { grid-template-columns: repeat(2, 1fr); }
	.contact-grid { grid-template-columns: 1fr 1fr; }
	.form-grid, .checkbox-grid { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}

@media (max-width: 640px) {
	.section { padding: 56px 0; }
	.topbar-inner { justify-content: center; text-align: center; }
	.topbar-tag { display: none; }
	.grid-2, .grid-3, .grid-4, .steps-grid, .testimonial-grid, .icon-cards, .pricing-grid, .usp-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
	.category-head { flex-direction: column; }
	.form-wrap { padding: 28px 20px; margin-top: -40px; }
	.cta-banner { padding: 40px 24px; }
	.split-media .badge-float { position: static; margin-top: -30px; display: inline-flex; }
	.gallery-grid { grid-template-columns: 1fr 1fr; }
}
