/*
Theme Name: PTI Theme v3
Theme URI: https://positiveturninitiatve.org
Author: Positive Turn Initiative
Description: Official WordPress theme for Positive Turn Initiative – RCCG Youth Province 14. Elementor-compatible with hero slider, gallery, anchor navigation, locations, and partnership page.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: pti-theme
*/

:root {
  --pti-red: #C0392B;
  --pti-orange: #E8621A;
  --pti-gold: #F0A500;
  --pti-navy: #1B2167;
  --pti-navy-dk: #0D1240;
  --pti-navy-2: #12122A;
  --pti-cream: #FAF8F5;
  --pti-ink: #1A1A2E;
  --pti-ink60: #565668;
  --pti-white: #FFFFFF;
  --pti-grad: linear-gradient(135deg, #C0392B 0%, #E8621A 50%, #F0A500 100%);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --radius-pill: 100px;
  --radius-card: 12px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lift: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--pti-ink); background: var(--pti-cream); line-height: 1.7; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
.screen-reader-text { position: absolute; left: -9999px; }

/* Elementor compat */
.elementor-page .elementor-section, .elementor-page .elementor-container, .elementor-page .elementor-widget-wrap { padding-top: 0; padding-bottom: 0; }
.elementor-section.elementor-section-stretched { width: 100% !important; left: 0 !important; }
.e-con, .e-con-inner { padding: 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); line-height: 1.1; letter-spacing: -0.03em; font-weight: 900; }

/* Layout */
.pti-container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }

/* Badges */
.pti-badge { display: inline-block; font-size: 10.5px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; padding: 5px 16px; border-radius: var(--radius-pill); margin-bottom: 16px; }
.pti-badge--orange { color: var(--pti-orange); background: rgba(232,98,26,0.1); border: 1px solid rgba(232,98,26,0.2); }
.pti-badge--gold { color: var(--pti-gold); background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.25); }
.pti-badge--ghost { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); }

/* ── HEADER ── */
.pti-header { position: fixed; top: 0; left: 0; right: 0; z-index: 9999; padding: 0 48px; height: 70px; display: flex; align-items: center; justify-content: space-between; background: rgba(13,18,64,0.92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); border-bottom: 1px solid rgba(255,255,255,0.07); transition: background var(--transition), box-shadow var(--transition); }
.pti-header.scrolled { background: rgba(13,18,64,0.98); box-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.pti-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-heading); font-weight: 900; font-size: 18px; color: var(--pti-white); }
.pti-logo img { height: 42px; width: auto; }
.pti-logo__text span { color: var(--pti-orange); }
.pti-nav { display: flex; align-items: center; gap: 4px; }
.pti-nav a { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7); padding: 8px 14px; border-radius: 6px; transition: color var(--transition), background var(--transition); }
.pti-nav a:hover { color: var(--pti-white); background: rgba(255,255,255,0.07); }
.pti-nav .pti-cta-link { background: var(--pti-grad); color: var(--pti-white) !important; padding: 9px 22px; border-radius: var(--radius-pill); margin-left: 8px; font-weight: 700; }
.pti-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: transparent; border: none; padding: 6px; }
.pti-hamburger span { display: block; width: 24px; height: 2px; background: var(--pti-white); border-radius: 2px; }
.pti-mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: rgba(13,18,64,0.98); padding: 20px 32px; border-bottom: 1px solid rgba(255,255,255,0.1); z-index: 9998; }
.pti-mobile-nav.open { display: flex; flex-direction: column; gap: 2px; }
.pti-mobile-nav a { color: rgba(255,255,255,0.8); font-size: 15px; font-weight: 600; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pti-mobile-nav a:hover { color: var(--pti-orange); }

/* ── HERO SLIDER ── */
.pti-hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; flex-direction: column; justify-content: flex-end; }
.pti-hero__slides { position: absolute; inset: 0; z-index: 0; }
.pti-hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; opacity: 0; transition: opacity 1.2s ease-in-out; transform: scale(1.04); transition: opacity 1.2s ease, transform 8s ease; }
.pti-hero__slide.active { opacity: 1; transform: scale(1); }
.pti-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(13,18,64,0.3) 0%, rgba(13,18,64,0.6) 55%, rgba(13,18,64,0.88) 100%); }
.pti-hero__body { position: relative; z-index: 10; padding: 110px 80px 0; }
.pti-hero__content { max-width: 740px; padding-bottom: 50px; }
.pti-hero__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pti-gold); margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.pti-hero__eyebrow::before { content: ''; display: inline-block; width: 28px; height: 2px; background: var(--pti-gold); }
.pti-hero__h1 { font-size: clamp(44px, 5.5vw, 78px); font-weight: 900; color: var(--pti-white); line-height: 1.0; letter-spacing: -0.04em; margin-bottom: 24px; }
.pti-hero__h1 em { font-style: italic; background: var(--pti-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pti-hero__sub { font-size: 18px; color: rgba(255,255,255,0.62); line-height: 1.75; max-width: 520px; margin-bottom: 40px; }
.pti-hero__buttons { display: flex; gap: 14px; flex-wrap: wrap; }

/* Buttons */
.pti-btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 15px; font-weight: 700; padding: 15px 32px; border-radius: var(--radius-pill); transition: var(--transition); cursor: pointer; border: none; white-space: nowrap; }
.pti-btn--primary { background: var(--pti-grad); color: var(--pti-white); box-shadow: 0 4px 24px rgba(232,98,26,0.4); }
.pti-btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,98,26,0.5); }
.pti-btn--ghost { background: transparent; color: rgba(255,255,255,0.85); border: 2px solid rgba(255,255,255,0.3); }
.pti-btn--ghost:hover { border-color: rgba(255,255,255,0.7); color: var(--pti-white); }
.pti-btn--white { background: var(--pti-white); color: var(--pti-orange); }
.pti-btn--white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.15); }
.pti-btn--navy { background: var(--pti-navy-dk); color: var(--pti-white); border: 2px solid rgba(255,255,255,0.15); }
.pti-btn--navy:hover { background: rgba(255,255,255,0.08); }

/* Hero stats */
.pti-hero__stats { position: relative; z-index: 10; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,0.08); border-top: 1px solid rgba(255,255,255,0.09); margin-top: 0; }
.pti-hero__stat { background: rgba(13,18,64,0.7); padding: 26px 32px; }
.pti-hero__stat-num { font-family: var(--font-heading); font-size: 36px; font-weight: 900; color: var(--pti-orange); line-height: 1; margin-bottom: 5px; }
.pti-hero__stat-label { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.42); line-height: 1.4; }

/* Dots */
.pti-hero__dots { position: absolute; bottom: 26px; right: 80px; z-index: 20; display: flex; gap: 8px; align-items: center; }
.pti-hero__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); border: none; }
.pti-hero__dot.active { background: var(--pti-orange); width: 28px; border-radius: 4px; }

/* ── STORY ── */
.pti-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; }
.pti-story__image { position: relative; overflow: hidden; min-height: 500px; }
.pti-story__image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.8s ease; }
.pti-story__image:hover img { transform: scale(1.04); }
.pti-story__quote-box { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 34px; background: rgba(13,18,64,0.88); border-left: 4px solid var(--pti-orange); }
.pti-story__quote-box p { font-family: var(--font-heading); font-style: italic; font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.65; margin-bottom: 10px; }
.pti-story__quote-box cite { font-size: 10px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pti-gold); font-style: normal; }
.pti-story__text { padding: 72px 68px; background: var(--pti-white); display: flex; flex-direction: column; justify-content: center; }
.pti-story__text h2 { font-size: clamp(32px, 3.5vw, 46px); color: var(--pti-navy); margin-bottom: 20px; }
.pti-story__text p { font-size: 17px; color: var(--pti-ink60); line-height: 1.78; margin-bottom: 16px; }
.pti-story__blockquote { border-left: 3px solid var(--pti-orange); padding: 4px 0 4px 22px; margin: 24px 0; }
.pti-story__blockquote p { font-family: var(--font-heading); font-style: italic; font-size: 19px; color: var(--pti-navy); line-height: 1.65; }
.pti-story__blockquote cite { display: block; font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pti-orange); font-style: normal; margin-top: 10px; }

/* ── GALLERY ── */
.pti-gallery { background: var(--pti-navy-dk); padding: 80px 0 0; }
.pti-gallery__header { padding: 0 80px 48px; }
.pti-gallery__grid { display: grid; grid-template-columns: repeat(4,1fr); grid-auto-rows: 240px; gap: 4px; }
.pti-gallery__item { overflow: hidden; position: relative; cursor: pointer; }
.pti-gallery__item--tall { grid-row: span 2; }
.pti-gallery__item--wide { grid-column: span 2; }
.pti-gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.pti-gallery__item:hover img { transform: scale(1.07); }
.pti-gallery__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(13,18,64,0.75) 100%); opacity: 0; transition: opacity var(--transition); }
.pti-gallery__item:hover .pti-gallery__overlay { opacity: 1; }
.pti-gallery__caption { position: absolute; bottom: 16px; left: 16px; right: 16px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.9); opacity: 0; transform: translateY(6px); transition: opacity var(--transition), transform var(--transition); }
.pti-gallery__item:hover .pti-gallery__caption { opacity: 1; transform: translateY(0); }

/* ── IMPACT ── */
.pti-impact { background: var(--pti-navy); padding: 80px 0 0; }
.pti-impact__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; margin-top: 48px; }
.pti-impact__metric { padding: 52px 40px; background: rgba(13,18,64,0.8); text-align: center; }
.pti-impact__metric--hot { background: var(--pti-grad); }
.pti-impact__num { font-family: var(--font-heading); font-size: 58px; font-weight: 900; color: var(--pti-orange); line-height: 1; margin-bottom: 8px; }
.pti-impact__metric--hot .pti-impact__num { color: var(--pti-white); }
.pti-impact__label { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--pti-white); margin-bottom: 6px; }
.pti-impact__sub { font-size: 12px; color: rgba(255,255,255,0.4); line-height: 1.5; }
.pti-impact__metric--hot .pti-impact__sub { color: rgba(255,255,255,0.72); }
.pti-impact__banner { padding: 60px 80px; display: flex; align-items: center; gap: 60px; background: rgba(13,18,64,0.6); }
.pti-impact__banner-quote { font-family: var(--font-heading); font-style: italic; font-size: 22px; color: var(--pti-white); line-height: 1.55; flex: 1; }
.pti-impact__banner-quote cite { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pti-orange); font-style: normal; margin-top: 14px; }
.pti-impact__banner-image { width: 280px; height: 200px; object-fit: cover; border-radius: var(--radius-card); flex-shrink: 0; }

/* ── APPROACH / PROGRAMS ── */
.pti-approach { background: var(--pti-cream); padding: 80px 0; }
.pti-approach__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; margin-top: 48px; }
.pti-approach__card { padding: 44px 38px; background: var(--pti-white); position: relative; overflow: hidden; transition: transform var(--transition), box-shadow var(--transition); }
.pti-approach__card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--pti-grad); transform: scaleX(0); transition: transform var(--transition); }
.pti-approach__card:hover::after { transform: scaleX(1); }
.pti-approach__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.pti-approach__card--dark { background: var(--pti-navy-dk); }
.pti-approach__num { font-family: var(--font-heading); font-size: 52px; font-weight: 900; color: var(--pti-orange); opacity: 0.18; line-height: 1; margin-bottom: 18px; }
.pti-approach__title { font-family: var(--font-body); font-size: 17px; font-weight: 800; color: var(--pti-navy); margin-bottom: 10px; line-height: 1.3; }
.pti-approach__card--dark .pti-approach__title { color: var(--pti-gold); }
.pti-approach__desc { font-size: 14px; color: var(--pti-ink60); line-height: 1.78; }
.pti-approach__card--dark .pti-approach__desc { color: rgba(255,255,255,0.55); }

/* ── LOCATIONS ── */
.pti-locations { background: var(--pti-white); padding: 80px 0; }
.pti-locations__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 48px; }
.pti-locations__card { background: var(--pti-cream); border: 1px solid rgba(0,0,0,0.06); border-radius: var(--radius-card); padding: 20px 22px; display: flex; align-items: flex-start; gap: 14px; transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition); }
.pti-locations__card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); border-color: rgba(232,98,26,0.2); }
.pti-locations__pin { width: 36px; height: 36px; border-radius: 50%; background: rgba(232,98,26,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 15px; }
.pti-locations__name { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--pti-navy); line-height: 1.3; }

/* ── VISION ── */
.pti-vision { background: var(--pti-navy-2); padding: 80px 0; border-top: 4px solid var(--pti-orange); }
.pti-vision__row { display: grid; grid-template-columns: 52px 1fr; gap: 26px; align-items: start; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.pti-vision__num { font-family: var(--font-heading); font-size: 28px; font-weight: 900; color: rgba(255,255,255,0.12); line-height: 1; }
.pti-vision__title { font-family: var(--font-body); font-size: 17px; font-weight: 700; color: var(--pti-white); margin-bottom: 8px; }
.pti-vision__desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ── CTA STRIP ── */
.pti-cta { background: var(--pti-grad); padding: 72px 80px; display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.pti-cta h2 { font-size: clamp(26px, 3vw, 38px); color: var(--pti-white); margin-bottom: 12px; }
.pti-cta p { font-size: 16px; color: rgba(255,255,255,0.78); max-width: 500px; line-height: 1.72; }
.pti-cta__buttons { display: flex; flex-direction: column; gap: 12px; }

/* ── PARTNERSHIP PAGE ── */
.pti-partner-page { padding-top: 70px; }
.pti-partner__hero-block { background: linear-gradient(135deg, var(--pti-navy-dk), var(--pti-navy)); padding: 100px 80px 80px; border-bottom: 4px solid var(--pti-orange); }
.pti-partner__hero-block h1 { font-size: clamp(36px, 5vw, 64px); color: var(--pti-white); margin-bottom: 16px; }
.pti-partner__hero-block p { font-size: 18px; color: rgba(255,255,255,0.68); max-width: 600px; line-height: 1.72; }
.pti-accounts-section { padding: 80px; background: var(--pti-cream); }
.pti-accounts-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; margin-top: 48px; }
.pti-account-card { background: var(--pti-white); border-radius: 16px; padding: 40px; box-shadow: var(--shadow-card); border: 1px solid rgba(0,0,0,0.05); position: relative; overflow: hidden; }
.pti-account-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--pti-grad); }
.pti-account-card__badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--pti-orange); background: rgba(232,98,26,0.08); padding: 4px 14px; border-radius: 100px; margin-bottom: 20px; }
.pti-account-card__bank { font-size: 11px; font-weight: 700; color: var(--pti-ink60); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 8px; }
.pti-account-card__name { font-family: var(--font-heading); font-size: 20px; font-weight: 900; color: var(--pti-navy); margin-bottom: 16px; line-height: 1.25; }
.pti-account-card__number { font-family: 'Courier New', monospace; font-size: 28px; font-weight: 700; color: var(--pti-navy-dk); letter-spacing: 0.1em; padding: 16px 22px; background: var(--pti-cream); border-radius: 8px; border: 2px dashed rgba(232,98,26,0.3); }
.pti-account-card__note { font-size: 12px; color: var(--pti-ink60); margin-top: 14px; line-height: 1.5; }
.pti-partner-contact { margin: 0 80px 80px; background: var(--pti-navy-dk); border-radius: 16px; padding: 56px 48px; text-align: center; }
.pti-partner-contact h3 { font-size: 30px; color: var(--pti-white); margin-bottom: 14px; }
.pti-partner-contact p { font-size: 16px; color: rgba(255,255,255,0.58); margin-bottom: 32px; line-height: 1.65; }
.pti-phone-links { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.pti-phone-link { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 100px; padding: 14px 30px; font-size: 18px; font-weight: 700; color: var(--pti-white); transition: background var(--transition), color var(--transition); }
.pti-phone-link:hover { background: rgba(232,98,26,0.15); color: var(--pti-orange); border-color: var(--pti-orange); }

/* ── FOOTER ── */
.pti-footer { background: var(--pti-navy-2); padding: 64px 0 0; }
.pti-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding: 0 80px 56px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pti-footer__logo { font-family: var(--font-heading); font-size: 20px; font-weight: 900; color: var(--pti-white); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.pti-footer__logo img { height: 36px; width: auto; }
.pti-footer__about { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.pti-footer__phone { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 8px; display: block; transition: color var(--transition); }
.pti-footer__phone:hover { color: var(--pti-orange); }
.pti-footer__heading { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pti-white); margin-bottom: 18px; }
.pti-footer__links { display: flex; flex-direction: column; gap: 10px; }
.pti-footer__links a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.pti-footer__links a:hover { color: var(--pti-orange); }
.pti-footer__bottom { padding: 22px 80px; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 10px; }
.pti-footer__bottom span { color: var(--pti-orange); }

/* Scroll reveals */
.pti-reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.pti-reveal.visible { opacity: 1; transform: translateY(0); }
.pti-reveal--d1 { transition-delay: 0.1s; }
.pti-reveal--d2 { transition-delay: 0.2s; }
.pti-reveal--d3 { transition-delay: 0.3s; }
.pti-reveal--d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pti-gallery__grid { grid-template-columns: repeat(3,1fr); }
  .pti-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pti-locations__grid { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .pti-header { padding: 0 24px; }
  .pti-nav { display: none; }
  .pti-hamburger { display: flex; }
  .pti-hero__body { padding: 90px 32px 0; }
  .pti-hero__stats { grid-template-columns: repeat(2,1fr); }
  .pti-hero__dots { right: 32px; }
  .pti-story { grid-template-columns: 1fr; }
  .pti-story__text { padding: 48px 32px; }
  .pti-approach__grid { grid-template-columns: 1fr 1fr; }
  .pti-impact__grid { grid-template-columns: 1fr 1fr; }
  .pti-impact__banner { flex-direction: column; padding: 40px 32px; }
  .pti-impact__banner-image { width: 100%; height: 220px; }
  .pti-locations__grid { grid-template-columns: repeat(2,1fr); }
  .pti-cta { padding: 48px 32px; flex-direction: column; align-items: flex-start; }
  .pti-footer__grid { grid-template-columns: 1fr; padding: 0 32px 40px; }
  .pti-footer__bottom { padding: 20px 32px; }
  .pti-accounts-section { padding: 48px 32px; }
  .pti-accounts-grid { grid-template-columns: 1fr; }
  .pti-partner__hero-block { padding: 80px 32px 60px; }
  .pti-partner-contact { margin: 0 32px 60px; padding: 40px 28px; }
}
@media (max-width: 600px) {
  .pti-hero__h1 { font-size: 38px; }
  .pti-hero__stats { grid-template-columns: 1fr 1fr; }
  .pti-approach__grid, .pti-impact__grid { grid-template-columns: 1fr; }
  .pti-gallery__grid { grid-template-columns: repeat(2,1fr); }
  .pti-gallery__item--wide { grid-column: span 1; }
  .pti-gallery__item--tall { grid-row: span 1; }
  .pti-locations__grid { grid-template-columns: 1fr; }
  .pti-container { padding: 0 20px; }
  .pti-gallery__header { padding: 0 24px 36px; }
  .pti-phone-links { flex-direction: column; align-items: center; }
}
