/* National Public School – OEL */
:root {
  --gold: #f5a623;
  --gold-dark: #d4890a;
  --orange: #e8751a;
  --navy: #1a2a4a;
  --text: #2c3e50;
  --text-light: #5a6a7a;
  --bg: #fffdf8;
  --bg-alt: #fff8ee;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(26, 42, 74, 0.08);
  --radius: 12px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-dark);
}

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

/* ── Top Bar ── */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}

.top-bar a {
  color: var(--gold);
}

.top-bar a:hover {
  color: var(--white);
}

.top-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ── Header ── */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.brand-text h1 {
  font-size: 1.15rem;
  color: var(--navy);
  line-height: 1.2;
}

.brand-text span {
  font-size: 0.8rem;
  color: var(--text-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.main-nav a {
  color: var(--navy);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--bg-alt);
  color: var(--orange);
}

.main-nav a.active {
  font-weight: 600;
}

/* ── Page Banner (inner pages) ── */
.page-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4070 60%, var(--orange) 100%);
  color: var(--white);
  padding: 3rem 0;
  text-align: center;
}

.page-banner h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}

.page-banner p {
  opacity: 0.9;
  max-width: 600px;
  margin-inline: auto;
}

.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.breadcrumb a {
  color: var(--gold);
}

/* ── Content blocks ── */
.content-block {
  max-width: 800px;
  margin-inline: auto;
}

.content-block p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.info-card h3 {
  color: var(--navy);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.info-card ul {
  list-style: none;
  color: var(--text-light);
  font-size: 0.95rem;
}

.info-card li {
  padding: 0.35rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.info-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* ── Grade cards ── */
.grade-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.grade-tab {
  padding: 0.5rem 1rem;
  border: 2px solid var(--navy);
  background: var(--white);
  color: var(--navy);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition);
}

.grade-tab:hover,
.grade-tab.active {
  background: var(--navy);
  color: var(--white);
}

.grade-detail {
  display: none;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.grade-detail.active {
  display: block;
}

.grade-detail h3 {
  color: var(--navy);
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.grade-meta {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.grade-detail p {
  color: var(--text-light);
  margin-bottom: 1rem;
}

.grade-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.subject-tag {
  background: var(--bg-alt);
  color: var(--navy);
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* ── Level groups ── */
.level-group {
  margin-bottom: 3rem;
}

.level-group h3 {
  color: var(--navy);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.level-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.level-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.level-card:hover {
  transform: translateY(-3px);
}

.level-card .grade-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.level-card h4 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.level-card .age {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.level-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ── Admission steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  counter-reset: step;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 800;
  border-radius: 50%;
  margin: 0 auto 0.75rem;
}

.step-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── Home quick links ── */
.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.quick-link-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 4px solid transparent;
}

.quick-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(26, 42, 74, 0.12);
  border-bottom-color: var(--gold);
}

.quick-link-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.quick-link-card h3 {
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.quick-link-card .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
}

/* ── Contact page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.95rem;
  color: var(--text-light);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 300px;
  background: var(--bg-alt);
}

.map-embed iframe {
  width: 100%;
  height: 350px;
  border: 0;
}

/* ── Facilities grid ── */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.facility-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.facility-item .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.facility-item h4 {
  color: var(--navy);
  font-size: 0.95rem;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4070 50%, var(--orange) 100%);
  color: var(--white);
  padding: 4rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.05rem;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  max-width: 320px;
}

.hero-card img {
  width: 140px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.hero-card .since {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
}

/* ── Notice Board ── */
.notice-board {
  background: var(--bg-alt);
  border-bottom: 3px solid var(--gold);
  padding: 1.25rem 0;
}

.notice-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.notice-label {
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-radius: 6px;
  white-space: nowrap;
}

.notice-content {
  flex: 1;
  min-width: 200px;
  font-weight: 500;
}

.year-select {
  padding: 0.4rem 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.9rem;
  background: var(--white);
}

/* ── Sections ── */
section {
  padding: 4rem 0;
}

section:nth-child(even) {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin-inline: auto;
}

.section-header .underline {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

/* ── C-A-R-E-S Grid ── */
.cares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.25rem;
}

.care-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.care-card:hover {
  transform: translateY(-4px);
}

.care-letter {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.care-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.care-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ── Leadership ── */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 700px;
  margin-inline: auto;
}

.leader-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}

.leader-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--navy), #3a5080);
  color: var(--gold);
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.leader-card h3 {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.leader-card .designation {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ── Mission Quote ── */
.mission-block {
  background: var(--white);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 2rem;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin-inline: auto;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.8;
}

/* ── Timeline ── */
.timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.timeline-item {
  text-align: center;
  position: relative;
  flex: 1;
  min-width: 100px;
}

.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 0 3px var(--gold);
}

.timeline-item h4 {
  color: var(--navy);
  font-size: 1.1rem;
}

.timeline-item p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.timeline-line {
  flex: 0 0 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  align-self: flex-start;
  margin-top: 9px;
}

/* ── PYP Section ── */
.pyp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.pyp-badge {
  display: inline-block;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.pyp-coordinator {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.pyp-coordinator .avatar {
  width: 64px;
  height: 64px;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.pyp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.pyp-tag {
  background: var(--white);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--gold);
}

/* ── Reasons ── */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.reason-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: attr(data-num);
  position: absolute;
  top: -10px;
  right: 10px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(245, 166, 35, 0.15);
}

.reason-card h3 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.reason-card .cta-text {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ── Staff ── */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.staff-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.staff-initials {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  color: var(--navy);
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 0.85rem;
}

.staff-card span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

/* ── Footer ── */
.enquiry-section {
  background: linear-gradient(180deg, var(--bg-alt) 0%, var(--white) 100%);
}

.form-wrapper {
  max-width: 640px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.consent input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-wrapper .btn-primary {
  width: 100%;
  border: none;
  font-size: 1rem;
  padding: 0.85rem;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--navy);
}

.form-success.show {
  display: block;
}

.form-success svg {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ── Contact Form 7 ── */
.form-wrapper.nps-cf7 .wpcf7 {
  margin: 0;
}

.form-wrapper.nps-cf7 .wpcf7-form .form-group {
  margin-bottom: 1rem;
}

.form-wrapper.nps-cf7 .wpcf7-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-wrapper.nps-cf7 .wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-wrapper.nps-cf7 .wpcf7-form input[type="text"],
.form-wrapper.nps-cf7 .wpcf7-form input[type="email"],
.form-wrapper.nps-cf7 .wpcf7-form input[type="tel"],
.form-wrapper.nps-cf7 .wpcf7-form select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-wrapper.nps-cf7 .wpcf7-form input:focus,
.form-wrapper.nps-cf7 .wpcf7-form select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.2);
}

.form-wrapper.nps-cf7 .wpcf7-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.form-wrapper.nps-cf7 .wpcf7-form .consent input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-wrapper.nps-cf7 input[type="submit"],
.form-wrapper.nps-cf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  background: var(--gold);
  color: var(--navy);
  transition: all 0.25s ease;
}

.form-wrapper.nps-cf7 input[type="submit"]:hover,
.form-wrapper.nps-cf7 .wpcf7-submit:hover {
  background: var(--gold-dark);
}

.form-wrapper.nps-cf7 .wpcf7-response-output {
  margin: 1rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  border: 2px solid transparent;
}

.form-wrapper.nps-cf7 .wpcf7 form.sent .wpcf7-response-output {
  border-color: var(--gold);
  background: var(--bg-alt);
  color: var(--navy);
}

.form-wrapper.nps-cf7 .wpcf7 form.invalid .wpcf7-response-output,
.form-wrapper.nps-cf7 .wpcf7 form.failed .wpcf7-response-output {
  border-color: #e74c3c;
  background: #fdf2f2;
  color: #c0392b;
}

.form-wrapper.nps-cf7 .wpcf7-not-valid-tip {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.25rem;
}

.form-wrapper.nps-cf7 .wpcf7-spinner {
  margin-left: 0.5rem;
}

.nps-cf7-missing {
  color: var(--text-light);
  text-align: center;
  padding: 1rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand img {
  width: 72px;
  margin-bottom: 0.75rem;
}

.footer-brand h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .pyp-intro {
    grid-template-columns: 1fr;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }

  .main-nav.open {
    max-height: 480px;
  }

  .main-nav ul {
    flex-direction: column;
    padding: 0.5rem;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1rem;
  }

  .site-header .container {
    position: relative;
  }

  .form-row,
  .form-wrapper.nps-cf7 .wpcf7-form .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .timeline-line {
    display: none;
  }

  .timeline {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand-text h1 {
    font-size: 0.95rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .form-wrapper {
    padding: 1.25rem;
  }
}
