:root {
  --opc-secondary-blue: #0052d9;
  --opc-secondary-blue-hover: #2670e8;
  --opc-secondary-ink: #16181a;
  --opc-secondary-body: #566178;
  --opc-secondary-muted: #f5f7fa;
  --opc-secondary-soft: #f7f8fa;
  --opc-secondary-border: #e5e8ed;
  --opc-secondary-container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  color: var(--opc-secondary-ink);
  background: #fff;
  font-family: var(--tcwf-font-sans);
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.opc-secondary-page {
  min-height: 100vh;
  background: #fff;
}

.opc-secondary-header {
  position: sticky;
  z-index: 120;
  top: 0;
  width: 100%;
  height: 62px;
  border-bottom: 1px solid rgba(155, 166, 183, 0.34);
  background: #fff;
}

.opc-secondary-header__inner {
  display: grid;
  width: 100%;
  max-width: var(--opc-secondary-container);
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.opc-secondary-brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}

.opc-secondary-brand img {
  display: block;
  width: 26px;
  height: 18px;
}

.opc-secondary-brand strong {
  font-size: 17px;
  font-weight: 500;
}

.opc-secondary-nav {
  display: flex;
  min-width: 0;
  height: 100%;
  align-items: stretch;
  justify-content: center;
  gap: 6px;
}

.opc-secondary-nav a {
  display: inline-flex;
  position: relative;
  min-height: 44px;
  padding: 0 14px;
  align-items: center;
  color: #16181a;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.opc-secondary-nav a:hover,
.opc-secondary-nav a:focus-visible,
.opc-secondary-nav a[aria-current="page"] {
  color: var(--opc-secondary-blue);
}

.opc-secondary-nav a[aria-current="page"]::after {
  position: absolute;
  right: 12px;
  bottom: 0;
  left: 12px;
  height: 2px;
  background: var(--opc-secondary-blue);
  content: "";
}

.opc-secondary-header__action {
  display: inline-flex;
  min-height: 40px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--opc-secondary-blue);
  border-radius: 2px;
  color: var(--opc-secondary-blue);
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.opc-secondary-header__action:hover,
.opc-secondary-header__action:focus-visible {
  color: #fff;
  background: var(--opc-secondary-blue);
}

.opc-secondary-menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
}

.opc-secondary-menu img {
  width: 24px;
  height: 24px;
}

.opc-secondary-hero {
  min-height: 392px;
  height: auto;
  overflow: hidden;
  border-bottom: 1px solid var(--opc-secondary-border);
  color: var(--opc-secondary-ink);
  background: #eef5ff;
}

.opc-secondary-hero__inner {
  display: grid;
  width: 100%;
  max-width: var(--opc-secondary-container);
  min-height: 392px;
  margin: 0 auto;
  padding: 54px 10px;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 480px);
  align-items: center;
  gap: 64px;
}

.opc-secondary-breadcrumb {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  color: #49617f;
  font-size: 14px;
  text-decoration: none;
}

.opc-secondary-breadcrumb img {
  width: 18px;
  height: 18px;
}

.opc-secondary-hero h1 {
  max-width: 680px;
  margin: 12px 0 14px;
  color: #0d1d36;
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 500;
  line-height: 1.24;
}

.opc-secondary-hero__lead {
  max-width: 660px;
  margin: 0;
  color: #495770;
  font-size: 16px;
  line-height: 28px;
}

.opc-secondary-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.opc-secondary-action,
.opc-secondary-action--outline {
  display: inline-flex;
  min-width: 136px;
  min-height: 44px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--opc-secondary-blue);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.opc-secondary-action {
  color: #fff;
  background: var(--opc-secondary-blue);
}

.opc-secondary-action--outline {
  color: var(--opc-secondary-blue);
  background: transparent;
}

.opc-secondary-action:hover,
.opc-secondary-action:focus-visible {
  border-color: var(--opc-secondary-blue-hover);
  background: var(--opc-secondary-blue-hover);
}

.opc-secondary-action--outline:hover,
.opc-secondary-action--outline:focus-visible {
  color: #fff;
  background: var(--opc-secondary-blue);
}

.opc-secondary-action img,
.opc-secondary-action--outline img {
  width: 16px;
  height: 16px;
}

.opc-secondary-hero__media {
  position: relative;
  min-width: 0;
  height: 284px;
  overflow: hidden;
  border: 1px solid rgba(0, 82, 217, 0.16);
  background: #dceafd;
  box-shadow: 0 2px 14px rgba(0, 36, 92, 0.1);
}

.opc-secondary-hero__media > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opc-secondary-hero__media dl {
  display: grid;
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  margin: 0;
  padding: 14px 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  background: rgba(8, 35, 73, 0.9);
}

.opc-secondary-hero__media dl div {
  min-width: 0;
}

.opc-secondary-hero__media dt,
.opc-secondary-hero__media dd {
  margin: 0;
}

.opc-secondary-hero__media dt {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
}

.opc-secondary-hero__media dd {
  margin-top: 4px;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.opc-secondary-section-nav {
  position: sticky;
  z-index: 90;
  top: 62px;
  border-bottom: 1px solid var(--opc-secondary-border);
  background: #f5f7fa;
}

.opc-secondary-section-nav__inner {
  display: flex;
  width: 100%;
  max-width: var(--opc-secondary-container);
  height: 60px;
  margin: 0 auto;
  padding: 0 10px;
  align-items: stretch;
  gap: 32px;
  overflow-x: auto;
  scrollbar-width: none;
}

.opc-secondary-section-nav__inner::-webkit-scrollbar {
  display: none;
}

.opc-secondary-section-nav a {
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
  min-height: 44px;
  align-items: center;
  color: #263750;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
}

.opc-secondary-section-nav a:hover,
.opc-secondary-section-nav a:focus-visible,
.opc-secondary-section-nav a[aria-current="location"] {
  color: var(--opc-secondary-blue);
}

.opc-secondary-section-nav a[aria-current="location"]::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--opc-secondary-blue);
  content: "";
}

.opc-secondary-page .tcwf-section {
  padding: 60px 0;
}

.opc-secondary-page .tcwf-section--muted {
  background: var(--opc-secondary-muted);
}

.opc-secondary-page .tcwf-section__inner {
  width: 100%;
  max-width: var(--opc-secondary-container);
  margin: 0 auto;
  padding: 0 10px;
}

.opc-secondary-page .tcwf-section__header {
  display: flex;
  margin-bottom: 32px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.opc-secondary-page .tcwf-section__title {
  margin: 0;
  color: #000;
  font-size: 32px;
  font-weight: 400;
  line-height: 48px;
  text-align: left;
}

.opc-secondary-page .tcwf-section__description {
  max-width: 760px;
  margin: 6px 0 0;
  color: var(--opc-secondary-body);
  font-size: 14px;
  line-height: 24px;
}

.opc-secondary-status {
  display: flex;
  min-height: 44px;
  margin: 0;
  padding: 10px 14px;
  align-items: center;
  border: 1px solid #c9daf5;
  color: #345170;
  background: #f0f6ff;
  font-size: 13px;
  line-height: 22px;
}

.opc-park-search {
  padding: 24px;
  border: 1px solid var(--opc-secondary-border);
  background: #fff;
  box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}

.opc-park-search__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
}

.opc-park-search label {
  display: block;
  margin-bottom: 8px;
  color: #344258;
  font-size: 13px;
  font-weight: 500;
}

.opc-park-search input {
  width: 100%;
  height: 46px;
  padding: 7px 14px;
  border: 1px solid #d6dce5;
  border-right: 0;
  border-radius: 2px 0 0 2px;
  outline: 0;
  color: #16181a;
  background: #fff;
}

.opc-park-search__main button {
  height: 46px;
  border: 1px solid var(--opc-secondary-blue);
  border-radius: 0 2px 2px 0;
  color: #fff;
  background: var(--opc-secondary-blue);
}

.opc-park-search input:focus {
  border-color: var(--opc-secondary-blue);
  box-shadow: inset 0 0 0 1px var(--opc-secondary-blue);
}

.opc-park-search__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 18px;
  border-bottom: 1px solid var(--opc-secondary-border);
}

.opc-park-search__filters button {
  position: relative;
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  color: #4d5b70;
  background: transparent;
}

.opc-park-search__filters button:hover,
.opc-park-search__filters button:focus-visible,
.opc-park-search__filters button[aria-pressed="true"] {
  color: var(--opc-secondary-blue);
}

.opc-park-search__filters button[aria-pressed="true"]::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  background: var(--opc-secondary-blue);
  content: "";
}

.opc-park-result-row {
  display: flex;
  min-height: 44px;
  margin: 14px 0 0;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: #68758a;
  font-size: 13px;
}

.opc-park-grid {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.opc-park-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  border: 1px solid var(--opc-secondary-border);
  border-radius: 0;
  background: #fff;
  box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
  transition: box-shadow 180ms linear;
}

.opc-park-card:hover,
.opc-park-card:focus-within {
  box-shadow: 0 4px 8px rgba(3, 27, 78, 0.12);
}

.opc-park-card__media {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: #e9eef5;
}

.opc-park-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.opc-park-card__tier {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 9px;
  color: #fff;
  background: rgba(8, 35, 73, 0.88);
  font-size: 12px;
  line-height: 18px;
}

.opc-park-card__body {
  display: flex;
  flex: 1;
  min-width: 0;
  padding: 20px;
  flex-direction: column;
}

.opc-park-card__meta {
  margin: 0;
  color: var(--opc-secondary-blue);
  font-size: 12px;
  line-height: 18px;
}

.opc-park-card h3 {
  margin: 10px 0 8px;
  color: #293957;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.opc-park-card__summary {
  margin: 0;
  color: var(--opc-secondary-body);
  font-size: 14px;
  line-height: 24px;
}

.opc-park-card__facts {
  display: flex;
  flex-wrap: wrap;
  margin: 16px 0 0;
  padding: 12px 0 0;
  gap: 6px 14px;
  border-top: 1px solid #edf0f4;
  list-style: none;
}

.opc-park-card__facts li {
  color: #566178;
  font-size: 12px;
  line-height: 18px;
}

.opc-park-card__facts li::before {
  margin-right: 6px;
  color: var(--opc-secondary-blue);
  content: "·";
}

.opc-park-card__actions {
  display: flex;
  margin-top: auto;
  padding-top: 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.opc-park-card__views {
  color: #7a8597;
  font-size: 12px;
}

.opc-park-card__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
  color: var(--opc-secondary-blue);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.opc-park-card__link img {
  width: 16px;
  height: 16px;
}

.opc-park-empty {
  margin: 28px 0 0;
  padding: 40px 24px;
  border: 1px solid var(--opc-secondary-border);
  color: #566178;
  background: #fff;
  text-align: center;
}

.opc-park-empty button {
  margin-top: 12px;
}

.opc-secondary-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.opc-secondary-benefit {
  position: relative;
  min-width: 0;
  padding-left: 64px;
}

.opc-secondary-benefit img {
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 48px;
}

.opc-secondary-benefit h3 {
  margin: 0;
  color: #000;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
}

.opc-secondary-benefit p {
  margin: 8px 0 0;
  color: #666;
  font-size: 14px;
  line-height: 24px;
}

.opc-secondary-cta {
  color: #fff;
  background: #163766;
}

.opc-secondary-cta__inner {
  display: flex;
  width: 100%;
  max-width: var(--opc-secondary-container);
  min-height: 184px;
  margin: 0 auto;
  padding: 42px 10px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.opc-secondary-cta h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 500;
  line-height: 38px;
}

.opc-secondary-cta p {
  max-width: 720px;
  margin: 8px 0 0;
  color: #cfddf2;
  font-size: 14px;
  line-height: 24px;
}

.opc-secondary-cta .opc-secondary-action {
  flex: 0 0 auto;
  border-color: #fff;
  color: #0f315f;
  background: #fff;
}

.opc-secondary-cta .opc-secondary-action:hover,
.opc-secondary-cta .opc-secondary-action:focus-visible {
  color: #fff;
  background: transparent;
}

.opc-secondary-footer {
  padding: 28px 16px 34px;
  border-top: 1px solid var(--opc-secondary-border);
  color: #7c8798;
  background: #fff;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
}

.opc-secondary-footer a {
  color: #4b6da8;
  text-underline-offset: 3px;
}

.opc-secondary-footer a:focus-visible {
  outline: 2px solid #0052d9;
  outline-offset: 2px;
}

.opc-park-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 40px;
}

.opc-park-story {
  padding: 28px;
  border: 1px solid var(--opc-secondary-border);
  background: #fff;
}

.opc-park-story h2,
.opc-park-story h3 {
  margin: 0;
  color: #293957;
  font-weight: 500;
}

.opc-park-story h2 {
  font-size: 26px;
  line-height: 38px;
}

.opc-park-story h3 {
  margin-top: 26px;
  font-size: 18px;
  line-height: 28px;
}

.opc-park-story p {
  margin: 12px 0 0;
  color: var(--opc-secondary-body);
  font-size: 14px;
  line-height: 26px;
}

.opc-park-story ul {
  display: grid;
  margin: 14px 0 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.opc-park-story li {
  position: relative;
  padding-left: 18px;
  color: #45546b;
  font-size: 14px;
  line-height: 24px;
}

.opc-park-story li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--opc-secondary-blue);
  content: "";
}

.opc-park-fact-panel {
  align-self: start;
  padding: 24px;
  border: 1px solid var(--opc-secondary-border);
  background: var(--opc-secondary-soft);
}

.opc-park-fact-panel h2 {
  margin: 0 0 18px;
  color: #293957;
  font-size: 18px;
  font-weight: 500;
}

.opc-park-fact-panel dl {
  margin: 0;
}

.opc-park-fact-panel dl div {
  display: grid;
  padding: 13px 0;
  border-top: 1px solid #dfe4ec;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
}

.opc-park-fact-panel dt,
.opc-park-fact-panel dd {
  margin: 0;
  font-size: 13px;
  line-height: 22px;
}

.opc-park-fact-panel dt {
  color: #7c8798;
}

.opc-park-fact-panel dd {
  color: #35445c;
}

.opc-park-activity-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.opc-park-activity {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--opc-secondary-border);
  background: #fff;
  box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}

.opc-park-activity time {
  color: var(--opc-secondary-blue);
  font-size: 12px;
}

.opc-park-activity h3 {
  margin: 12px 0 8px;
  color: #293957;
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.opc-park-activity p {
  margin: 0;
  color: var(--opc-secondary-body);
  font-size: 13px;
  line-height: 22px;
}

.opc-application-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 40px;
}

.opc-application-steps {
  align-self: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.opc-application-steps li {
  display: grid;
  position: relative;
  min-height: 84px;
  padding: 0 0 26px 46px;
  grid-template-rows: auto auto;
}

.opc-application-steps li::before {
  position: absolute;
  top: 30px;
  bottom: 0;
  left: 15px;
  border-left: 1px dashed #b9c3d1;
  content: "";
}

.opc-application-steps li:last-child::before {
  display: none;
}

.opc-application-steps span {
  display: inline-flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border: 1px solid #bac4d2;
  border-radius: 50%;
  color: #667085;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
}

.opc-application-steps strong {
  color: #35445c;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
}

.opc-application-steps small {
  margin-top: 3px;
  color: #7c8798;
  font-size: 12px;
  line-height: 20px;
}

.opc-application-steps li[aria-current="step"] span,
.opc-application-steps li[data-complete="true"] span {
  border-color: var(--opc-secondary-blue);
  color: #fff;
  background: var(--opc-secondary-blue);
}

.opc-application-steps li[aria-current="step"] strong {
  color: var(--opc-secondary-blue);
}

.opc-application-panel {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--opc-secondary-border);
  background: #fff;
  box-shadow: 0 2px 4px rgba(3, 27, 78, 0.06);
}

.opc-application-panel__head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--opc-secondary-border);
}

.opc-application-panel__head h2 {
  margin: 0;
  color: #293957;
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
}

.opc-application-panel__head p {
  margin: 6px 0 0;
  color: var(--opc-secondary-body);
  font-size: 13px;
  line-height: 22px;
}

.opc-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.opc-form-field {
  min-width: 0;
}

.opc-form-field--full {
  grid-column: 1 / -1;
}

.opc-form-field label,
.opc-form-field legend {
  display: block;
  margin-bottom: 8px;
  color: #344258;
  font-size: 13px;
  font-weight: 500;
  line-height: 20px;
}

.opc-form-field input,
.opc-form-field select,
.opc-form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #cfd6e0;
  border-radius: 2px;
  outline: 0;
  color: #16181a;
  background: #fff;
  font-size: 14px;
  line-height: 22px;
}

.opc-form-field textarea {
  min-height: 118px;
  resize: vertical;
}

.opc-form-field input:focus,
.opc-form-field select:focus,
.opc-form-field textarea:focus {
  border-color: var(--opc-secondary-blue);
  box-shadow: 0 0 0 2px rgba(0, 82, 217, 0.12);
}

.opc-form-field small {
  display: block;
  margin-top: 7px;
  color: #7c8798;
  font-size: 12px;
  line-height: 20px;
}

.opc-form-checks {
  display: grid;
  gap: 10px;
}

.opc-form-checks label {
  display: flex;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #dce2ea;
  color: #45546b;
  background: #fff;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
}

.opc-form-checks input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--opc-secondary-blue);
}

.opc-form-actions {
  display: flex;
  margin-top: 28px;
  padding-top: 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--opc-secondary-border);
}

.opc-form-actions__group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.opc-form-button,
.opc-form-button--secondary {
  min-width: 112px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--opc-secondary-blue);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 500;
}

.opc-form-button {
  color: #fff;
  background: var(--opc-secondary-blue);
}

.opc-form-button--secondary {
  color: var(--opc-secondary-blue);
  background: #fff;
}

.opc-form-button:hover,
.opc-form-button:focus-visible {
  border-color: var(--opc-secondary-blue-hover);
  background: var(--opc-secondary-blue-hover);
}

.opc-form-button--secondary:hover,
.opc-form-button--secondary:focus-visible {
  color: #fff;
  background: var(--opc-secondary-blue);
}

.opc-application-notice {
  margin: 0;
  color: #7c8798;
  font-size: 12px;
  line-height: 20px;
}

.opc-application-error {
  margin: 14px 0 0;
  padding: 10px 12px;
  border: 1px solid #e54545;
  color: #a92727;
  background: #fbe0e0;
  font-size: 13px;
  line-height: 22px;
}

.opc-form-consent {
  margin-top: 20px;
}

.opc-application-success {
  min-height: 430px;
  padding: 54px 40px;
  border: 1px solid #c5e8d4;
  background: #f7fcf9;
  text-align: center;
}

.opc-application-success > img {
  width: 56px;
  height: 56px;
}

.opc-application-success h2 {
  margin: 18px 0 10px;
  color: #173d29;
  font-size: 30px;
  font-weight: 500;
  line-height: 42px;
}

.opc-application-success p {
  max-width: 640px;
  margin: 0 auto;
  color: #52655a;
  font-size: 14px;
  line-height: 26px;
}

.opc-application-success__next {
  display: grid;
  max-width: 660px;
  margin: 28px auto 0;
  padding: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  border: 1px solid #d8e7de;
  background: #fff;
  text-align: left;
}

.opc-application-success__next strong,
.opc-application-success__next small {
  display: block;
}

.opc-application-success__next strong {
  color: #294737;
  font-size: 13px;
}

.opc-application-success__next small {
  margin-top: 5px;
  color: #708077;
  font-size: 12px;
  line-height: 20px;
}

.opc-application-success__actions {
  display: flex;
  margin-top: 28px;
  justify-content: center;
  gap: 12px;
}

:where(a, button, input, select, textarea):focus-visible {
  outline: 2px solid var(--opc-secondary-blue);
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .opc-secondary-header__inner {
    gap: 16px;
  }

  .opc-secondary-nav a {
    padding: 0 9px;
  }

  .opc-secondary-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    gap: 36px;
  }

  .opc-park-grid,
  .opc-park-activity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .opc-secondary-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 100px;
  }

  .opc-secondary-header {
    height: 56px;
  }

  .opc-secondary-header__inner {
    padding: 0 16px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .opc-secondary-menu {
    display: inline-flex;
  }

  .opc-secondary-header__action {
    display: none;
  }

  .opc-secondary-nav {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    left: 0;
    height: auto;
    padding: 8px 16px 16px;
    border-bottom: 1px solid var(--opc-secondary-border);
    background: #fff;
    box-shadow: 0 8px 24px rgba(3, 27, 78, 0.08);
  }

  .opc-secondary-header[data-menu-open="true"] .opc-secondary-nav {
    display: grid;
  }

  .opc-secondary-nav a {
    min-height: 48px;
    padding: 0 4px;
    border-bottom: 1px solid #edf0f4;
  }

  .opc-secondary-nav a[aria-current="page"]::after {
    top: 10px;
    right: auto;
    bottom: 10px;
    left: -8px;
    width: 3px;
    height: auto;
  }

  .opc-secondary-hero__inner {
    min-height: 0;
    padding: 34px 16px 40px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .opc-secondary-hero h1 {
    font-size: 32px;
    line-height: 42px;
  }

  .opc-secondary-hero__lead {
    font-size: 14px;
    line-height: 24px;
  }

  .opc-secondary-hero__media {
    height: 248px;
  }

  .opc-secondary-section-nav {
    top: 56px;
  }

  .opc-secondary-section-nav__inner {
    height: 44px;
    padding: 0 16px;
    gap: 24px;
  }

  .opc-secondary-page .tcwf-section {
    padding: 45px 0 50px;
  }

  .opc-secondary-page .tcwf-section__inner {
    padding: 0 16px;
  }

  .opc-secondary-page .tcwf-section__header {
    margin-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .opc-secondary-page .tcwf-section__title {
    font-size: 24px;
    line-height: 32px;
  }

  .opc-park-detail-grid,
  .opc-application-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .opc-application-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .opc-application-steps li {
    min-height: 0;
    padding: 42px 10px 0 0;
  }

  .opc-application-steps li::before {
    top: 15px;
    right: 0;
    bottom: auto;
    left: 30px;
    border-top: 1px dashed #b9c3d1;
    border-left: 0;
  }
}

@media (max-width: 620px) {
  .opc-secondary-brand strong {
    font-size: 15px;
  }

  .opc-secondary-hero__inner {
    padding-top: 26px;
  }

  .opc-secondary-breadcrumb {
    min-height: 40px;
  }

  .opc-secondary-hero h1 {
    margin-top: 8px;
    font-size: 28px;
    line-height: 38px;
  }

  .opc-secondary-hero__actions,
  .opc-application-success__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .opc-secondary-action,
  .opc-secondary-action--outline {
    width: 100%;
  }

  .opc-secondary-hero__media {
    height: 224px;
  }

  .opc-secondary-hero__media dl {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 12px;
  }

  .opc-secondary-page .tcwf-section {
    padding: 32px 0;
  }

  .opc-park-search {
    padding: 18px;
  }

  .opc-park-search__main {
    grid-template-columns: minmax(0, 1fr) 88px;
  }

  .opc-park-search__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .opc-park-search__filters button {
    flex: 0 0 auto;
    padding: 0 13px;
  }

  .opc-park-result-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .opc-park-grid,
  .opc-secondary-benefits,
  .opc-park-activity-list {
    grid-template-columns: 1fr;
  }

  .opc-secondary-benefits {
    gap: 28px;
  }

  .opc-secondary-cta__inner {
    min-height: 0;
    padding: 32px 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .opc-secondary-cta .opc-secondary-action {
    width: 100%;
  }

  .opc-park-story,
  .opc-park-fact-panel,
  .opc-application-panel {
    padding: 20px;
  }

  .opc-form-grid {
    grid-template-columns: 1fr;
  }

  .opc-form-field--full {
    grid-column: auto;
  }

  .opc-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .opc-form-actions__group {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .opc-form-actions__group > :only-child {
    grid-column: 1 / -1;
  }

  .opc-form-button,
  .opc-form-button--secondary {
    width: 100%;
  }

  .opc-application-success {
    min-height: 0;
    padding: 38px 20px;
  }

  .opc-application-success__next {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
