/* Bravura — rescue-orange light theme
   Brand: Bravura  ·  Company: BRITTWHIT, LLC
   Accent #F97316  ·  Body #FBF8F6  ·  Ink #191512
*/

:root {
  --orange: #F97316;
  --orange-dark: #EA580C;
  --orange-deep: #C2410C;
  --peach: #FED7AA;
  --peach-soft: #FDF0E7;
  --ink: #191512;
  --ink-soft: #4A3B31;
  --ink-faint: #6B594C;
  --bg: #FBF8F6;
  --bg-2: #F5EEE8;
  --line: #EADDD3;
  --white: #FFFFFF;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #FBF8F6;
  color: #191512;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.12;
  color: #191512;
}

/* ============================= NAVIGATION ============================= */

.laurel-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: #FBF8F6;
  border-bottom: 1px solid #EADDD3;
  box-shadow: 0 2px 14px #EFE1D6;
}

.laurel-nav::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #F97316;
}

.laurel-nav-inner {
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.wordmark {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  color: #191512;
}

/* CSS-drawn laurel wreath mark */
.laurel-mark {
  position: relative;
  width: 44px;
  height: 38px;
  display: inline-block;
  vertical-align: middle;
}

.branch {
  position: absolute;
  bottom: 0;
  width: 22px;
  height: 38px;
}

.branch::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-sizing: border-box;
}

.branch-left { left: 0; }
.branch-right { right: 0; }

.branch-left::before {
  border: 2px solid transparent;
  border-left-color: #F97316;
  border-bottom-color: #F97316;
}

.branch-right::before {
  border: 2px solid transparent;
  border-right-color: #F97316;
  border-bottom-color: #F97316;
}

.leaves { position: absolute; inset: 0; }

.leaf {
  position: absolute;
  width: 6px;
  height: 3px;
  background: #EA580C;
  border-radius: 50%;
}

.branch-left .leaf { left: 2px; }
.branch-left .leaf:nth-child(1) { top: 5px;  transform: rotate(-50deg); }
.branch-left .leaf:nth-child(2) { top: 12px; transform: rotate(-32deg); }
.branch-left .leaf:nth-child(3) { top: 19px; transform: rotate(-12deg); }
.branch-left .leaf:nth-child(4) { top: 26px; transform: rotate(8deg); }
.branch-left .leaf:nth-child(5) { top: 32px; left: 6px; transform: rotate(35deg); }

.branch-right .leaves { transform: scaleX(-1); }
.branch-right .leaf { left: 2px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: #4A3B31;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #F97316;
  transition: width 0.25s ease;
}

.nav-links a:hover { color: #C2410C; }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  flex: 0 0 auto;
  display: inline-block;
  background: #EA580C;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-cta:hover { background: #C2410C; transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  background: transparent;
  border: 1px solid #EADDD3;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #191512;
  margin: 5px auto;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================= HERO ============================= */

.trophy-hero {
  background: linear-gradient(180deg, #FDF1E9 0%, #FBF8F6 100%);
  padding: 150px 28px 90px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.hero-copy .eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C2410C;
  background: #FDF0E7;
  border: 1px solid #FED7AA;
  padding: 7px 14px;
  border-radius: 30px;
  margin-bottom: 22px;
}

.hero-copy h1 {
  font-size: 3.1rem;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero-copy h1 em {
  font-style: normal;
  color: #C2410C;
}

.hero-copy .lede {
  font-size: 1.15rem;
  color: #4A3B31;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: 9px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #EA580C;
  color: #FFFFFF;
  box-shadow: 0 10px 24px #F6D6BF;
}

.btn-primary:hover { background: #C2410C; transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: #C2410C;
  border: 2px solid #F97316;
}

.btn-secondary:hover { background: #FDF0E7; transform: translateY(-2px); }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: #6B594C;
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust b { color: #EA580C; font-size: 1.05rem; }

/* CSS-drawn championship trophy */
.trophy {
  position: relative;
  width: 320px;
  height: 300px;
  margin: 0 auto;
}

.trophy-glow {
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -8px;
  background: radial-gradient(circle at 50% 45%, #FED7AA 0%, transparent 62%);
  border-radius: 50%;
}

.trophy-rim {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 178px;
  height: 30px;
  background: linear-gradient(180deg, #FB923C, #F97316);
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 6px 16px #F3CBAE;
}

.trophy-cup {
  position: absolute;
  top: 38px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 122px;
  background: linear-gradient(180deg, #FB923C, #F97316 42%, #EA580C);
  border-radius: 10px 10px 74px 74px;
  z-index: 2;
}

.trophy-cup::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 28px;
  width: 30px;
  height: 46px;
  background: #FED7AA;
  border-radius: 50%;
}

.trophy-handle {
  position: absolute;
  top: 62px;
  width: 46px;
  height: 46px;
  border: 7px solid #EA580C;
  border-radius: 50%;
  z-index: 1;
}

.trophy-handle.left { left: 52px; }
.trophy-handle.right { right: 52px; }

.trophy-star {
  position: absolute;
  top: 86px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  background: #FED7AA;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  z-index: 3;
}

.trophy-stem {
  position: absolute;
  top: 160px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 30px;
  background: linear-gradient(180deg, #EA580C, #C2410C);
  z-index: 2;
}

.trophy-base.top {
  position: absolute;
  top: 190px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  background: linear-gradient(180deg, #F97316, #EA580C);
  border-radius: 5px;
  z-index: 2;
}

.trophy-base.bottom {
  position: absolute;
  top: 212px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 26px;
  background: linear-gradient(180deg, #EA580C, #C2410C);
  border-radius: 5px;
  z-index: 2;
}

.trophy-shadow {
  position: absolute;
  top: 244px;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  height: 20px;
  background: radial-gradient(circle at 50% 50%, #E5CFBF 0%, transparent 72%);
  border-radius: 50%;
}

/* ============================= SHARED SECTION BITS ============================= */

.section {
  padding: 92px 28px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #C2410C;
  margin-bottom: 14px;
}

.section h2 {
  font-size: 2.3rem;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.08rem;
  color: #4A3B31;
  max-width: 720px;
}

/* ============================= STATEMENT ROW ============================= */

.statement-section {
  background: #FDF0E7;
  border-top: 1px solid #F3E0D3;
  border-bottom: 1px solid #F3E0D3;
  padding: 84px 28px;
  text-align: center;
}

.statement-section .statement {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.22;
  color: #191512;
  max-width: 900px;
  margin: 0 auto;
}

.statement-section .statement em {
  font-style: normal;
  color: #C2410C;
}

/* ============================= ABOUT ============================= */

.about-section { background: #FBF8F6; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-grid p {
  color: #4A3B31;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.about-grid p strong { color: #191512; }

.values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.value-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #FFFFFF;
  border: 1px solid #EADDD3;
  border-left: 4px solid #F97316;
  border-radius: 10px;
  padding: 18px 20px;
}

.value-row h3 { font-size: 1.15rem; margin-bottom: 4px; }
.value-row p { font-size: 0.96rem; margin: 0; }

/* ============================= STATS ============================= */

.stats-section {
  background: #FBF8F6;
  border-top: 1px solid #EADDD3;
  border-bottom: 1px solid #EADDD3;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 44px;
}

.stat {
  text-align: center;
  padding: 26px 12px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid #EADDD3;
}

.stat-num {
  font-family: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  font-size: 2.9rem;
  font-weight: 700;
  color: #EA580C;
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label {
  font-weight: 600;
  color: #4A3B31;
  font-size: 0.98rem;
}

/* ============================= SERVICES ============================= */

.services-section { background: #FDF0E7; }

.services-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 46px;
}

.services-head p { color: #4A3B31; font-size: 1.05rem; }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.service-card {
  background: #FFFFFF;
  border: 1px solid #EADDD3;
  border-radius: 12px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px #F1DFD1; }

.service-mark {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #F97316;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 { font-size: 1.2rem; margin-bottom: 6px; }
.service-card p { color: #4A3B31; font-size: 0.98rem; }

/* ============================= PROCESS ============================= */

.process-section { background: #FBF8F6; }

.process-list {
  display: flex;
  gap: 20px;
  margin-top: 52px;
  position: relative;
}

.process-list::before {
  content: "";
  position: absolute;
  top: 27px;
  left: 4%;
  right: 4%;
  height: 3px;
  background: #FED7AA;
  z-index: 0;
}

.process-step {
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 8px;
}

.process-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #F97316;
  color: #EA580C;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  position: relative;
  z-index: 1;
}

.process-step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.process-step p { color: #4A3B31; font-size: 0.95rem; }

/* ============================= COMPARISON TABLE ============================= */

.compare-section { background: #FDF0E7; }

.compare-table {
  width: 100%;
  margin-top: 44px;
  border-collapse: separate;
  border-spacing: 0;
  background: #FFFFFF;
  border: 1px solid #EADDD3;
  border-radius: 14px;
  overflow: hidden;
}

.compare-table th,
.compare-table td {
  padding: 18px 22px;
  text-align: left;
  border-bottom: 1px solid #F0E5DC;
}

.compare-table thead th {
  background: #EA580C;
  color: #FFFFFF;
  font-family: Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
}

.compare-table thead th:first-child { background: #C2410C; }

.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: #FDF6F0; }

.compare-table td:first-child {
  font-weight: 700;
  color: #191512;
  width: 24%;
}

.compare-table .check { color: #EA580C; font-weight: 800; }

.compare-note {
  margin-top: 18px;
  color: #6B594C;
  font-size: 0.92rem;
}

/* ============================= PROGRAMS (TABS + SCROLL) ============================= */

.programs-section { background: #FBF8F6; }

.program-tabs {
  display: flex;
  gap: 8px;
  margin: 40px 0 26px;
  border-bottom: 2px solid #EADDD3;
  flex-wrap: wrap;
}

.program-tab {
  background: transparent;
  border: none;
  padding: 13px 22px;
  font-weight: 700;
  font-size: 1rem;
  color: #4A3B31;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease;
}

.program-tab:hover { color: #C2410C; }

.program-tab.active {
  color: #C2410C;
  border-bottom-color: #F97316;
}

.program-panel {
  display: none;
  background: #FFFFFF;
  border: 1px solid #EADDD3;
  border-radius: 14px;
  padding: 32px 34px;
  margin-bottom: 44px;
}

.program-panel.active { display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; }

.program-panel h3 { font-size: 1.7rem; margin-bottom: 12px; }
.program-panel > div > p { color: #4A3B31; margin-bottom: 18px; }

.program-panel ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: #4A3B31;
}

.program-panel ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  background: #F97316;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.program-panel .panel-aside {
  background: #FDF0E7;
  border-radius: 12px;
  padding: 24px;
  align-self: start;
}

.panel-aside .price {
  font-family: Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #EA580C;
  margin-bottom: 4px;
}

.panel-aside p { font-size: 0.95rem; color: #6B594C; margin-bottom: 16px; }

.panel-aside .btn { width: 100%; text-align: center; padding: 13px 20px; font-size: 0.95rem; }

.scroll-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6B594C;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.programs-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 4px 22px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.programs-track::-webkit-scrollbar { height: 10px; }
.programs-track::-webkit-scrollbar-track { background: #F0E5DC; border-radius: 10px; }
.programs-track::-webkit-scrollbar-thumb { background: #F97316; border-radius: 10px; }

.program-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: #FFFFFF;
  border: 1px solid #EADDD3;
  border-top: 4px solid #F97316;
  border-radius: 14px;
  padding: 28px 26px;
}

.program-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C2410C;
  margin-bottom: 12px;
}

.program-card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.program-card p { color: #4A3B31; font-size: 0.97rem; margin-bottom: 18px; }
.program-card .card-link { font-weight: 700; color: #C2410C; }

/* ============================= CTA BAND ============================= */

.cta-section {
  background: #C2410C;
  padding: 80px 28px;
}

.cta-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.cta-grid h2 { color: #FFFFFF; font-size: 2.4rem; margin-bottom: 18px; }
.cta-grid > div > p { color: #FED7AA; font-size: 1.08rem; margin-bottom: 26px; }

.contact-list { display: flex; flex-direction: column; gap: 16px; }

.contact-list a {
  display: flex;
  gap: 14px;
  align-items: center;
  color: #FFFFFF;
  font-weight: 600;
  font-size: 1.05rem;
}

.contact-list .ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #EA580C;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.contact-address { color: #FED7AA; font-size: 0.95rem; margin-top: 4px; }

.form-card {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 34px;
  box-shadow: 0 20px 40px #7C2D12;
}

.form-card h3 { font-size: 1.4rem; margin-bottom: 20px; }

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #191512;
  margin-bottom: 6px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid #EADDD3;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: #FBF8F6;
  color: #191512;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: #F97316;
  box-shadow: 0 0 0 3px #FED7AA;
}

.field textarea { min-height: 110px; resize: vertical; }

.form-card .btn { width: 100%; text-align: center; border: none; }

.form-status {
  display: none;
  margin-top: 14px;
  font-size: 0.9rem;
  color: #C2410C;
  font-weight: 600;
}

.form-status.visible { display: block; }

/* ============================= FOOTER ============================= */

.site-footer {
  background: #2A1607;
  color: #F5E8DF;
  border-top: 4px solid #F97316;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 28px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px;
}

.footer-col h3 {
  color: #FED7AA;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.footer-col p { color: #D9C3B3; font-size: 0.95rem; line-height: 1.7; }

.footer-col ul li { margin-bottom: 11px; }

.footer-col ul a { color: #D9C3B3; font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col ul a:hover { color: #F97316; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand .wordmark { color: #FFFFFF; }

.footer-bottom {
  border-top: 1px solid #3A2210;
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  color: #B99E8A;
  font-size: 0.86rem;
}

/* ============================= REVEAL ANIMATION ============================= */

.fade-up { opacity: 1; transform: none; }

html.js .fade-up { opacity: 0; transform: translateY(26px); }

html.js .fade-up.visible {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ============================= RESPONSIVE ============================= */

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .trophy { margin-top: 20px; }
  .hero-copy h1 { font-size: 2.5rem; }
  .about-grid { grid-template-columns: 1fr; }
  .services-head { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #FBF8F6;
    border-bottom: 1px solid #EADDD3;
    box-shadow: 0 14px 24px #EFE1D6;
    padding: 8px 0;
    display: none;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 14px 28px;
    font-size: 1rem;
  }

  .nav-links a::after { display: none; }

  .nav-cta { margin: 12px 28px 16px; text-align: center; }

  .nav-toggle { display: block; }

  .hero-copy h1 { font-size: 2.1rem; }

  .statement-section .statement { font-size: 1.7rem; }

  .section { padding: 64px 20px; }
  .trophy-hero { padding: 120px 20px 64px; }

  .process-list { flex-direction: column; gap: 34px; }
  .process-list::before { display: none; }
  .process-step { text-align: left; display: flex; gap: 18px; align-items: flex-start; }
  .process-num { margin: 0; flex: 0 0 auto; }
  .process-step h3 { margin-top: 6px; }

  .program-panel.active { grid-template-columns: 1fr; }

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

  .compare-table th,
  .compare-table td { padding: 13px 14px; font-size: 0.9rem; }
}

@media (max-width: 460px) {
  .trophy { width: 260px; transform: scale(0.88); transform-origin: top center; }
  .hero-copy h1 { font-size: 1.85rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .btn { padding: 13px 22px; font-size: 0.95rem; }
}
