body.aw-site {
	--aw-navy: #062b49;
	--aw-navy-deep: #031b2f;
	--aw-blue: #087db7;
	--aw-blue-bright: #00a2df;
	--aw-orange: #cc4d08;
	--aw-yellow: #e5f438;
	--aw-ink: #102331;
	--aw-muted: #5d6c76;
	--aw-cloud: #f2f7f9;
	--aw-line: #d8e3e8;
	--aw-white: #ffffff;
	--aw-shadow: 0 20px 60px rgba(6, 43, 73, 0.12);
	--aw-shadow-small: 0 10px 30px rgba(6, 43, 73, 0.1);
	--aw-radius: 22px;
	--aw-container: 1180px;
}

html:has(> body.aw-site) {
	scroll-behavior: smooth;
	scroll-padding-top: 96px;
}

body.aw-site,
body.aw-site *,
body.aw-site *::before,
body.aw-site *::after {
	box-sizing: border-box;
}

body.aw-site {
	margin: 0;
	background: var(--aw-white) !important;
	color: var(--aw-ink);
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
	font-size: 16px;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

body.aw-site img {
	max-width: 100%;
	height: auto;
}

body.aw-site a {
	color: var(--aw-blue);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.2em;
}

body.aw-site h1,
body.aw-site h2,
body.aw-site h3,
body.aw-site h4,
body.aw-site p {
	overflow-wrap: anywhere;
}

.aw-container {
	width: min(calc(100% - 40px), var(--aw-container));
	margin-inline: auto;
}

.aw-skip-link {
	position: fixed;
	top: 8px;
	left: 8px;
	z-index: 9999;
	padding: 10px 16px;
	background: var(--aw-white);
	color: var(--aw-navy);
	font-weight: 800;
	transform: translateY(-150%);
}

.aw-skip-link:focus {
	transform: translateY(0);
}

.aw-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: rgba(255, 255, 255, 0.94);
	border-bottom: 1px solid rgba(6, 43, 73, 0.08);
	backdrop-filter: blur(14px);
}

.admin-bar .aw-header {
	top: 32px;
}

.aw-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 82px;
	gap: 24px;
}

.aw-brand {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 10px;
	color: var(--aw-navy) !important;
	text-decoration: none !important;
}

.aw-brand::before {
	display: block;
	width: 7px;
	height: 30px;
	background: var(--aw-orange);
	content: "";
	transform: skewX(-15deg);
}

.aw-brand__logo {
	display: block;
	width: 138px;
	height: 62px;
	object-fit: contain;
}

.aw-brand__name {
	display: block;
	font-size: 21px;
	font-weight: 950;
	letter-spacing: -0.03em;
	white-space: nowrap;
}

.aw-nav__list {
	display: flex;
	align-items: center;
	gap: clamp(12px, 1.5vw, 24px);
	margin: 0;
	padding: 0;
	list-style: none;
}

.aw-nav__list > li {
	margin: 0;
}

.aw-nav__list > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 44px;
	color: var(--aw-ink) !important;
	font-size: 14px;
	font-weight: 800;
	text-decoration: none !important;
	white-space: nowrap;
}

.aw-nav__list > li:not(:last-child) > a::after {
	position: absolute;
	right: 0;
	bottom: 4px;
	left: 0;
	height: 3px;
	background: var(--aw-orange);
	content: "";
	transform: scaleX(0);
	transform-origin: right;
	transition: transform 180ms ease;
}

.aw-nav__list > li:not(:last-child) > a:hover::after,
.aw-nav__list > li.current-menu-item:not(:last-child) > a::after {
	transform: scaleX(1);
	transform-origin: left;
}

.aw-nav__list > li:last-child > a,
.aw-nav__cta > a {
	padding: 10px 17px;
	border-radius: 999px;
	background: var(--aw-orange);
	box-shadow: 0 8px 20px rgba(243, 107, 33, 0.22);
	color: var(--aw-white) !important;
}

.aw-menu-toggle {
	display: none;
	align-items: center;
	gap: 10px;
	min-width: 44px;
	min-height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--aw-navy);
	font: inherit;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.08em;
}

.aw-menu-toggle__icon {
	display: grid;
	gap: 5px;
	width: 26px;
}

.aw-menu-toggle__icon i {
	display: block;
	height: 2px;
	background: currentColor;
	transition: transform 180ms ease, opacity 180ms ease;
}

.aw-menu-backdrop {
	display: none;
}

.aw-menu-open .aw-menu-toggle__icon i:first-child {
	transform: translateY(7px) rotate(45deg);
}

.aw-menu-open .aw-menu-toggle__icon i:nth-child(2) {
	opacity: 0;
}

.aw-menu-open .aw-menu-toggle__icon i:last-child {
	transform: translateY(-7px) rotate(-45deg);
}

.aw-eyebrow {
	margin: 0 0 10px;
	color: var(--aw-blue);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.18em;
	line-height: 1.4;
	text-transform: uppercase;
}

.aw-eyebrow--light {
	color: var(--aw-yellow);
}

.aw-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 13px 24px;
	border: 2px solid transparent;
	border-radius: 999px;
	font-weight: 900;
	line-height: 1.3;
	text-decoration: none !important;
	transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease;
}

.aw-button:hover {
	transform: translateY(-2px);
}

.aw-button--orange {
	background: var(--aw-orange);
	box-shadow: 0 12px 30px rgba(243, 107, 33, 0.28);
	color: var(--aw-white) !important;
}

.aw-button--white {
	background: var(--aw-white);
	color: var(--aw-navy) !important;
}

.aw-button--outline {
	border-color: currentColor;
	background: transparent;
	color: var(--aw-navy) !important;
}

.aw-button--text {
	min-height: auto;
	padding: 0;
	border-radius: 0;
	color: var(--aw-blue) !important;
}

.aw-section {
	position: relative;
	padding: clamp(72px, 8vw, 116px) 0;
}

.aw-section--soft {
	background: var(--aw-cloud);
}

.aw-section--navy {
	overflow: hidden;
	background: var(--aw-navy);
	color: var(--aw-white);
}

.aw-section--compact {
	padding: clamp(52px, 6vw, 78px) 0;
}

.aw-section-heading {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: end;
	gap: 32px;
	margin-bottom: 42px;
}

.aw-section-heading__copy {
	max-width: 720px;
}

.aw-section-heading h2 {
	margin: 0;
	color: var(--aw-navy);
	font-size: clamp(30px, 4vw, 52px);
	font-weight: 900;
	letter-spacing: -0.04em;
	line-height: 1.2;
}

.aw-section-heading p:last-child {
	margin: 14px 0 0;
	color: var(--aw-muted);
}

.aw-section--navy .aw-section-heading h2,
.aw-section--navy .aw-section-heading p:last-child {
	color: var(--aw-white);
}

.aw-hero {
	position: relative;
	isolation: isolate;
	min-height: min(820px, calc(100svh - 82px));
	overflow: hidden;
	background: var(--aw-navy-deep);
	color: var(--aw-white);
}

.aw-hero__media,
.aw-hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.aw-hero__video {
	object-fit: cover;
	object-position: center;
}

.aw-hero__shade {
	position: absolute;
	z-index: 1;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(3, 27, 47, 0.92) 0%, rgba(3, 27, 47, 0.58) 46%, rgba(3, 27, 47, 0.08) 78%),
		linear-gradient(0deg, rgba(3, 27, 47, 0.62) 0%, transparent 42%);
}

.aw-hero__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: min(820px, calc(100svh - 82px));
	padding: 92px 0 150px;
}

.aw-hero__copy {
	max-width: 720px;
}

.aw-hero__kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	color: var(--aw-yellow);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.aw-hero__kicker::before {
	width: 42px;
	height: 3px;
	background: currentColor;
	content: "";
}

.aw-hero h1 {
	margin: 0;
	color: var(--aw-white);
	font-size: clamp(40px, 6vw, 78px);
	font-weight: 950;
	letter-spacing: -0.055em;
	line-height: 1.08;
	text-shadow: 0 5px 28px rgba(0, 0, 0, 0.22);
}

.aw-hero__lead {
	max-width: 620px;
	margin: 24px 0 0;
	font-size: clamp(16px, 2vw, 20px);
	font-weight: 700;
	line-height: 1.8;
}

.aw-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 30px;
}

.aw-video-toggle {
	position: absolute;
	z-index: 3;
	right: max(20px, calc((100vw - var(--aw-container)) / 2));
	bottom: 118px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 80px;
	min-height: 42px;
	padding: 8px 14px;
	border: 1px solid rgba(255, 255, 255, 0.6);
	border-radius: 999px;
	background: rgba(3, 27, 47, 0.55);
	color: var(--aw-white);
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	backdrop-filter: blur(8px);
}

.aw-hero-facts {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;
	border-top: 1px solid rgba(255, 255, 255, 0.18);
	background: rgba(3, 27, 47, 0.78);
	backdrop-filter: blur(12px);
}

.aw-hero-facts__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
}

.aw-hero-fact {
	position: relative;
	padding: 22px 24px;
}

.aw-hero-fact + .aw-hero-fact {
	border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.aw-hero-fact__label {
	display: block;
	margin-bottom: 3px;
	color: var(--aw-yellow);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.aw-hero-fact__value {
	font-size: 15px;
	font-weight: 900;
}

.aw-info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}

.aw-info-card {
	position: relative;
	min-height: 194px;
	overflow: hidden;
	padding: 23px 25px 21px;
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
	background: var(--aw-white);
	box-shadow: var(--aw-shadow-small);
}

.aw-info-card::before {
	position: absolute;
	top: 0;
	right: 0;
	width: 56px;
	height: 7px;
	background: var(--aw-orange);
	content: "";
	transform: skewX(-30deg) translateX(10px);
}

.aw-info-card__number {
	display: block;
	margin-bottom: 14px;
	color: var(--aw-blue);
	font-size: 14px;
	font-weight: 950;
	letter-spacing: 0.12em;
}

.aw-info-card h3 {
	margin: 0 0 10px;
	color: var(--aw-navy);
	font-size: clamp(17px, 1.55vw, 22px);
	font-weight: 900;
	letter-spacing: -0.035em;
	line-height: 1.3;
	white-space: nowrap;
}

.aw-info-card p {
	margin: 0;
	color: var(--aw-muted);
	font-size: 15px;
	line-height: 1.7;
}

.aw-split {
	display: grid;
	grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
	align-items: center;
	gap: clamp(40px, 7vw, 90px);
}

.aw-about-intro {
	grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
	gap: clamp(36px, 5vw, 64px);
}

.aw-split--reverse {
	grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.aw-split__media {
	position: relative;
}

.aw-split__media::before {
	position: absolute;
	z-index: -1;
	top: -18px;
	right: -18px;
	width: 42%;
	height: 44%;
	background: var(--aw-yellow);
	content: "";
	clip-path: polygon(22% 0, 100% 0, 78% 100%, 0 100%);
}

.aw-split__media img {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	border-radius: 4px 34px 4px 34px;
	box-shadow: var(--aw-shadow);
	object-fit: cover;
}

.aw-split__media--logo {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	aspect-ratio: auto;
	background: transparent;
	box-shadow: none;
}

.aw-split__media--logo::before {
	display: none;
}

.aw-split__media--logo img,
.aw-split__media--logo .aw-about-intro__logo-image {
	display: block;
	width: min(100%, 500px);
	height: auto;
	max-width: 100%;
	max-height: none;
	border-radius: 0;
	box-shadow: none;
	opacity: 1;
	visibility: visible;
	object-fit: contain;
}

.aw-split__copy h2 {
	margin: 0;
	color: var(--aw-navy);
	font-size: clamp(34px, 4vw, 56px);
	font-weight: 950;
	letter-spacing: -0.05em;
	line-height: 1.2;
}

.aw-split__copy > p:not(.aw-eyebrow) {
	margin: 22px 0 0;
	color: var(--aw-muted);
	font-size: 17px;
}

.aw-split__copy .aw-button {
	margin-top: 28px;
}

.aw-values {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	counter-reset: values;
}

.aw-section--values {
	padding-block: clamp(56px, 6vw, 78px);
}

.aw-section--values .aw-section-heading {
	margin-bottom: 32px;
}

.aw-value {
	position: relative;
	padding: 24px 28px 26px;
	border-top: 4px solid var(--aw-blue-bright);
	background: rgba(255, 255, 255, 0.08);
	counter-increment: values;
}

.aw-value::before {
	display: block;
	margin-bottom: 20px;
	color: var(--aw-yellow);
	content: "0" counter(values);
	font-size: 19px;
	font-weight: 950;
	letter-spacing: 0.12em;
}

.aw-value h3 {
	margin: 0 0 10px;
	color: var(--aw-white);
	font-size: 25px;
	font-weight: 900;
}

.aw-value p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
}

.aw-team-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.aw-team-card {
	position: relative;
	min-height: 470px;
	overflow: hidden;
	border-radius: var(--aw-radius);
	background: var(--aw-navy);
	color: var(--aw-white);
}

.aw-team-card img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 500ms ease;
}

.aw-team-card:hover img {
	transform: scale(1.03);
}

.aw-team-card::after {
	position: absolute;
	inset: 0;
	background: linear-gradient(0deg, rgba(3, 27, 47, 0.94), rgba(3, 27, 47, 0.05) 68%);
	content: "";
}

.aw-team-card__content {
	position: absolute;
	z-index: 1;
	right: 0;
	bottom: 0;
	left: 0;
	padding: 32px;
}

.aw-team-card__label {
	color: var(--aw-yellow);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: 0.15em;
}

.aw-team-card h3 {
	margin: 5px 0 7px;
	color: var(--aw-white);
	font-size: 30px;
	font-weight: 950;
}

.aw-team-card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.84);
}

.aw-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.aw-step {
	position: relative;
	padding: 32px;
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
	background: var(--aw-white);
}

.aw-step__number {
	display: grid;
	width: 54px;
	height: 54px;
	margin-bottom: 28px;
	border-radius: 50%;
	background: var(--aw-navy);
	color: var(--aw-yellow);
	font-size: 18px;
	font-weight: 950;
	place-items: center;
}

.aw-step h3 {
	margin: 0 0 10px;
	color: var(--aw-navy);
	font-size: 20px;
	font-weight: 900;
}

.aw-step p,
.aw-step ul {
	margin: 0;
	color: var(--aw-muted);
	font-size: 14px;
}

.aw-news-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.aw-news-card {
	overflow: hidden;
	border: 1px solid var(--aw-line);
	border-radius: 18px;
	background: var(--aw-white);
	box-shadow: var(--aw-shadow-small);
}

.aw-news-card__image {
	display: block;
	overflow: hidden;
	background: #dce9ee;
}

.aw-news-card__image img {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	transition: transform 400ms ease;
}

.aw-news-card:hover .aw-news-card__image img {
	transform: scale(1.035);
}

.aw-news-card__body {
	padding: 24px;
}

.aw-news-card__meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--aw-muted);
	font-size: 12px;
	font-weight: 700;
}

.aw-tag {
	display: inline-flex;
	align-items: center;
	min-height: 25px;
	padding: 3px 10px;
	border-radius: 999px;
	background: #dff3fb;
	color: #075d86;
	font-size: 11px;
	font-weight: 900;
}

.aw-news-card h2,
.aw-news-card h3 {
	margin: 0;
	color: var(--aw-navy);
	font-size: 19px;
	font-weight: 900;
	line-height: 1.5;
}

.aw-news-card h2 a,
.aw-news-card h3 a {
	color: inherit !important;
	text-decoration: none !important;
}

.aw-news-card__excerpt {
	display: -webkit-box;
	margin: 12px 0 0;
	overflow: hidden;
	color: var(--aw-muted);
	font-size: 14px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.aw-faq-list {
	display: grid;
	gap: 12px;
	max-width: 940px;
	margin-inline: auto;
}

.aw-faq-item {
	border: 1px solid var(--aw-line);
	border-radius: 14px;
	background: var(--aw-white);
}

.aw-faq-item summary {
	position: relative;
	padding: 22px 60px 22px 24px;
	color: var(--aw-navy);
	cursor: pointer;
	font-weight: 900;
	list-style: none;
}

.aw-faq-item summary::-webkit-details-marker {
	display: none;
}

.aw-faq-item summary::after {
	position: absolute;
	top: 50%;
	right: 22px;
	display: grid;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--aw-cloud);
	color: var(--aw-blue);
	content: "+";
	font-size: 20px;
	transform: translateY(-50%);
	place-items: center;
}

.aw-faq-item[open] summary::after {
	content: "−";
}

.aw-faq-item__answer {
	padding: 0 24px 24px;
	color: var(--aw-muted);
}

.aw-faq-item__answer p {
	margin: 0;
}

.aw-final-box {
	position: relative;
	overflow: hidden;
	padding: clamp(36px, 6vw, 68px);
	border-radius: 30px;
	background: var(--aw-navy);
	color: var(--aw-white);
}

.aw-final-box::before {
	position: absolute;
	top: -60%;
	right: -6%;
	width: 340px;
	height: 340px;
	border: 46px solid rgba(229, 244, 56, 0.13);
	border-radius: 50%;
	content: "";
}

.aw-final-box__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
}

.aw-final-box h2 {
	margin: 0;
	color: var(--aw-white);
	font-size: clamp(28px, 4vw, 44px);
	font-weight: 950;
}

.aw-final-box p {
	margin: 10px 0 0;
	color: rgba(255, 255, 255, 0.78);
}

.aw-page-hero {
	position: relative;
	overflow: hidden;
	padding: clamp(74px, 9vw, 126px) 0 clamp(58px, 7vw, 96px);
	background:
		linear-gradient(115deg, rgba(0, 162, 223, 0.12), transparent 54%),
		var(--aw-navy);
	color: var(--aw-white);
}

.aw-page-hero::after {
	position: absolute;
	top: -90px;
	right: -80px;
	width: 380px;
	height: 260px;
	border: 52px solid rgba(229, 244, 56, 0.13);
	content: "";
	transform: rotate(-14deg);
}

.aw-page-hero__inner {
	position: relative;
	z-index: 1;
}

.aw-page-hero h1 {
	max-width: 900px;
	margin: 0;
	color: var(--aw-white);
	font-size: clamp(38px, 5vw, 68px);
	font-weight: 950;
	letter-spacing: -0.05em;
	line-height: 1.15;
}

.aw-page-hero__lead {
	max-width: 720px;
	margin: 20px 0 0;
	color: rgba(255, 255, 255, 0.78);
	font-size: clamp(15px, 2vw, 18px);
}

.aw-prose {
	max-width: 860px;
	margin-inline: auto;
}

.aw-prose > *:first-child {
	margin-top: 0;
}

.aw-prose h2 {
	margin: 2.5em 0 0.8em;
	color: var(--aw-navy);
	font-size: clamp(27px, 3.4vw, 40px);
	font-weight: 950;
	line-height: 1.3;
}

.aw-prose h3 {
	margin: 2em 0 0.6em;
	color: var(--aw-navy);
	font-size: 23px;
	font-weight: 900;
}

.aw-prose p,
.aw-prose li {
	color: #354957;
}

.aw-prose img {
	border-radius: 16px;
}

.aw-stat-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 34px;
}

.aw-stat {
	padding: 28px 20px;
	border-radius: 16px;
	background: var(--aw-white);
	box-shadow: var(--aw-shadow-small);
	text-align: center;
}

.aw-stat strong {
	display: block;
	color: var(--aw-blue);
	font-size: clamp(28px, 4vw, 43px);
	font-weight: 950;
	line-height: 1.2;
}

.aw-stat span {
	display: block;
	margin-top: 8px;
	color: var(--aw-muted);
	font-size: 13px;
	font-weight: 800;
}

.aw-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.aw-content-card {
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
	background: var(--aw-white);
}

.aw-content-card h2,
.aw-content-card h3 {
	margin: 0 0 16px;
	color: var(--aw-navy);
	font-weight: 950;
}

.aw-content-card h2 {
	font-size: 27px;
}

.aw-content-card h3 {
	font-size: 21px;
}

.aw-content-card p:last-child,
.aw-content-card ul:last-child {
	margin-bottom: 0;
}

.aw-roster {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 24px;
}

.aw-roster__team {
	padding: 30px;
	border-radius: 18px;
	background: var(--aw-cloud);
}

.aw-roster__team h3 {
	margin: 0 0 16px;
	color: var(--aw-navy);
	font-size: 23px;
	font-weight: 950;
}

.aw-roster__team ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aw-captain-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.aw-captain-grid img {
	width: 100%;
	border-radius: 18px;
	box-shadow: var(--aw-shadow-small);
}

.aw-results {
	display: grid;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aw-results li {
	display: grid;
	grid-template-columns: 8px 1fr;
	gap: 14px;
	align-items: start;
	padding: 15px 18px;
	border-radius: 10px;
	background: var(--aw-cloud);
}

.aw-results li::before {
	width: 8px;
	height: 8px;
	margin-top: 0.55em;
	border-radius: 50%;
	background: var(--aw-orange);
	content: "";
}

.aw-song {
	padding: clamp(28px, 5vw, 50px);
	border-radius: var(--aw-radius);
	background: var(--aw-navy);
	color: var(--aw-white);
}

.aw-song h2 {
	margin: 0;
	color: var(--aw-white);
}

.aw-song audio {
	width: 100%;
	margin-top: 24px;
}

.aw-song details {
	margin-top: 24px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.aw-song summary {
	padding: 20px 0 0;
	cursor: pointer;
	font-weight: 900;
}

.aw-song__lyrics {
	columns: 2;
	column-gap: 44px;
	margin-top: 24px;
	color: rgba(255, 255, 255, 0.78);
	white-space: pre-line;
}

.aw-data-table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}

.aw-data-table th,
.aw-data-table td {
	padding: 15px 16px;
	border-bottom: 1px solid var(--aw-line);
	text-align: left;
	vertical-align: top;
}

.aw-data-table th {
	width: 38%;
	color: var(--aw-navy);
	font-weight: 900;
}

.aw-check-list {
	display: grid;
	gap: 10px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.aw-check-list li {
	position: relative;
	padding-left: 30px;
}

.aw-check-list li::before {
	position: absolute;
	top: 0.2em;
	left: 0;
	display: grid;
	width: 21px;
	height: 21px;
	border-radius: 50%;
	background: var(--aw-blue);
	color: var(--aw-white);
	content: "✓";
	font-size: 12px;
	font-weight: 900;
	place-items: center;
}

.aw-notice {
	padding: 22px 24px;
	border-left: 5px solid var(--aw-orange);
	border-radius: 0 12px 12px 0;
	background: #fff4ed;
}

.aw-notice p {
	margin: 0;
}

.aw-contact-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
	align-items: start;
	gap: 40px;
}

.aw-contact-choice {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

.aw-contact-intro {
	max-width: 720px;
	margin: 0 auto 28px;
	text-align: center;
}

.aw-contact-intro h2 {
	margin: 0 0 8px;
	color: var(--aw-navy);
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 950;
}

.aw-contact-intro p:last-child {
	margin-bottom: 0;
	color: var(--aw-muted);
}

.aw-contact-choice button {
	display: grid;
	width: 100%;
	min-height: 174px;
	padding: 28px;
	border: 1px solid var(--aw-line);
	border-radius: 18px;
	background: var(--aw-white);
	box-shadow: var(--aw-shadow-small);
	color: var(--aw-navy) !important;
	cursor: pointer;
	font: inherit;
	text-align: left;
	text-decoration: none !important;
	transition: transform 150ms ease, border-color 150ms ease;
}

.aw-contact-choice button:hover,
.aw-contact-choice button:focus-visible,
.aw-contact-choice button.is-active {
	border-color: var(--aw-blue);
	transform: translateY(-2px);
}

.aw-contact-choice button.is-active {
	background: #eef9fd;
	box-shadow: inset 0 0 0 1px var(--aw-blue), var(--aw-shadow-small);
}

.aw-contact-choice span {
	color: var(--aw-blue);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.14em;
}

.aw-contact-choice strong {
	margin-top: 8px;
	font-size: 24px;
	font-weight: 950;
}

.aw-contact-choice small {
	align-self: end;
	margin-top: 14px;
	color: var(--aw-muted);
}

.aw-contact-form {
	padding: clamp(26px, 5vw, 50px);
	border-radius: var(--aw-radius);
	background: var(--aw-white);
	box-shadow: var(--aw-shadow);
}

.aw-contact-form--centered {
	max-width: 900px;
	margin-inline: auto;
}

.aw-contact-placeholder {
	display: grid;
	min-height: 280px;
	padding: 40px;
	border: 2px dashed #b7cfdb;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.72);
	text-align: center;
	place-content: center;
}

.aw-contact-placeholder[hidden] {
	display: none !important;
}

.aw-contact-placeholder strong {
	color: var(--aw-navy);
	font-size: 20px;
}

.aw-contact-placeholder p {
	margin: 8px 0 0;
	color: var(--aw-muted);
}

.aw-contact-form .contact-form {
	max-width: none;
	margin: 0;
	padding: 0;
	border-radius: 0;
	box-shadow: none;
	font-family: inherit;
}

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

.aw-field {
	margin-bottom: 22px;
}

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

.aw-honeypot {
	position: absolute !important;
	left: -10000px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}

.aw-field label,
.aw-field__label {
	display: block;
	margin-bottom: 8px;
	color: var(--aw-navy);
	font-size: 14px;
	font-weight: 900;
}

.aw-required {
	margin-left: 6px;
	color: #c23d00;
	font-size: 11px;
}

.aw-contact-form input[type="text"],
.aw-contact-form input[type="email"],
.aw-contact-form input[type="tel"],
.aw-contact-form select,
.aw-contact-form textarea {
	width: 100%;
	min-height: 52px;
	padding: 12px 14px;
	border: 1px solid #aebfc8;
	border-radius: 8px;
	background: var(--aw-white);
	color: var(--aw-ink);
	font: inherit;
	font-size: 16px;
}

.aw-contact-form textarea {
	min-height: 150px;
	resize: vertical;
}

.aw-contact-form input:focus,
.aw-contact-form select:focus,
.aw-contact-form textarea:focus {
	border-color: var(--aw-blue);
	outline: 3px solid rgba(8, 125, 183, 0.18);
}

.aw-contact-form input[type="submit"] {
	display: inline-flex;
	width: auto;
	min-width: 240px;
	min-height: 56px;
	padding: 13px 28px;
	border: 0;
	border-radius: 999px;
	background: var(--aw-orange);
	box-shadow: 0 12px 30px rgba(243, 107, 33, 0.25);
	color: var(--aw-white);
	cursor: pointer;
	font: inherit;
	font-weight: 900;
}

.aw-contact-form .wpcf7-spinner {
	vertical-align: middle;
}

.aw-contact-form .wpcf7-not-valid-tip {
	margin-top: 5px;
	font-size: 13px;
	font-weight: 700;
}

.aw-contact-form .wpcf7-response-output {
	margin: 24px 0 0 !important;
	padding: 14px 16px !important;
	border-radius: 8px;
}

.aw-contact-side {
	position: sticky;
	top: 116px;
	display: grid;
	gap: 14px;
}

.aw-contact-side__card {
	padding: 24px;
	border-radius: 16px;
	background: var(--aw-navy);
	color: var(--aw-white);
}

.aw-contact-side__card h2 {
	margin: 0 0 12px;
	color: var(--aw-white);
	font-size: 18px;
	font-weight: 900;
}

.aw-contact-side__card p {
	margin: 0;
	color: rgba(255, 255, 255, 0.76);
	font-size: 14px;
}

.aw-contact-side__card a {
	color: var(--aw-yellow) !important;
	font-weight: 900;
}

.aw-info-list {
	display: grid;
	gap: 0;
}

.aw-info-list p {
	display: grid;
	grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
	gap: 18px;
	margin: 0;
	padding: 14px 0;
	border-bottom: 1px solid var(--aw-line);
}

.aw-info-list p:last-child {
	border-bottom: 0;
}

.aw-info-list strong {
	color: var(--aw-navy);
}

.aw-info-list--fees span {
	color: var(--aw-blue);
	font-size: 18px;
	font-weight: 900;
	text-align: right;
}

.aw-achievement-years {
	display: grid;
	gap: 22px;
}

.aw-achievement-year {
	padding: 26px 28px;
	border: 1px solid var(--aw-line);
	border-radius: 18px;
	background: var(--aw-white);
	box-shadow: 0 14px 38px rgba(8, 42, 66, 0.06);
}

.aw-achievement-year h3 {
	display: flex;
	gap: 12px;
	align-items: center;
	margin: 0 0 14px;
	color: var(--aw-navy);
	font-size: 18px;
	font-weight: 900;
}

.aw-achievement-year h3 span {
	color: var(--aw-blue);
	font-size: 27px;
	font-weight: 950;
}

.aw-achievement-year .aw-results {
	margin: 0;
}

.aw-achievement-year .aw-results li {
	position: relative;
	display: block;
	padding-left: 18px;
}

.aw-achievement-year .aw-results li::before {
	position: absolute;
	top: 0.72em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #8fb2c2;
	content: "";
}

.aw-achievement-year .aw-results li.is-champion::before {
	background: var(--aw-orange);
	box-shadow: 0 0 0 4px rgba(245, 132, 31, 0.14);
}

.aw-achievement-year .aw-results strong {
	margin-right: 7px;
	color: var(--aw-blue);
}

.aw-achievement-year .aw-results .is-champion strong {
	color: #d65d00;
}

.aw-faq-group {
	margin: 52px 0 18px;
}

.aw-faq-group:first-child {
	margin-top: 0;
}

.aw-faq-group h2 {
	margin: 0;
	color: var(--aw-navy);
	font-size: clamp(24px, 4vw, 34px);
	font-weight: 950;
}

.aw-thanks-hero {
	overflow: hidden;
	padding: 92px 0 84px;
	background:
		radial-gradient(circle at 85% 20%, rgba(70, 178, 226, 0.32), transparent 28%),
		linear-gradient(135deg, #052b46, #075d86);
	color: var(--aw-white);
}

.aw-thanks-hero__inner {
	max-width: 820px;
	text-align: center;
}

.aw-thanks-check {
	display: grid;
	width: 78px;
	height: 78px;
	margin: 0 auto 24px;
	border: 2px solid rgba(255, 255, 255, 0.62);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.12);
	font-size: 39px;
	font-weight: 900;
	place-items: center;
}

.aw-thanks-hero h1 {
	margin: 8px 0 18px;
	font-size: clamp(34px, 6vw, 58px);
	font-weight: 950;
	letter-spacing: -0.035em;
	line-height: 1.25;
}

.aw-thanks-hero__inner > p:last-child {
	max-width: 680px;
	margin: 0 auto;
	color: rgba(255, 255, 255, 0.86);
	font-size: 18px;
}

.aw-thanks-content {
	max-width: 920px;
}

.aw-thanks-steps {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin-bottom: 24px;
}

.aw-thanks-steps article {
	padding: 28px;
	border-radius: 18px;
	background: var(--aw-white);
	box-shadow: 0 14px 38px rgba(8, 42, 66, 0.07);
}

.aw-thanks-steps span {
	color: var(--aw-blue);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.14em;
}

.aw-thanks-steps h2 {
	margin: 10px 0;
	color: var(--aw-navy);
	font-size: 21px;
	font-weight: 950;
}

.aw-thanks-steps p {
	margin: 0;
	color: #405766;
}

.aw-thanks-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	justify-content: center;
	margin-top: 32px;
}

.aw-filter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 0 0 32px;
	padding: 0;
	list-style: none;
}

.aw-sitemap-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
}

.aw-sitemap-group {
	padding: clamp(26px, 4vw, 42px);
	border: 1px solid var(--aw-line);
	border-radius: var(--aw-radius);
	background: var(--aw-white);
	box-shadow: var(--aw-shadow-small);
}

.aw-sitemap-group h2 {
	margin: 0 0 22px;
	color: var(--aw-navy);
	font-size: 27px;
	font-weight: 950;
}

.aw-sitemap-group ul {
	display: grid;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aw-sitemap-group li + li {
	border-top: 1px solid var(--aw-line);
}

.aw-sitemap-group a {
	display: grid;
	gap: 2px;
	padding: 15px 0;
	color: var(--aw-navy) !important;
	text-decoration: none !important;
}

.aw-sitemap-group a::after {
	grid-column: 2;
	grid-row: 1 / 3;
	align-self: center;
	color: var(--aw-orange);
	content: "→";
	font-weight: 900;
}

.aw-sitemap-group strong {
	font-weight: 900;
}

.aw-sitemap-group span {
	color: var(--aw-muted);
	font-size: 13px;
}

.aw-policy {
	max-width: 920px;
}

.aw-policy > section {
	padding: 42px 0;
	border-bottom: 1px solid var(--aw-line);
}

.aw-policy > section:last-child {
	border-bottom: 0;
}

.aw-policy h2 {
	margin: 0 0 20px;
	color: var(--aw-navy);
	font-size: clamp(25px, 3.4vw, 34px);
	font-weight: 950;
	line-height: 1.35;
}

.aw-policy p,
.aw-policy li,
.aw-policy dd {
	color: #354957;
}

.aw-policy li + li {
	margin-top: 7px;
}

.aw-policy dl {
	margin: 0;
	border-top: 1px solid var(--aw-line);
}

.aw-policy dl div {
	display: grid;
	grid-template-columns: 150px 1fr;
	gap: 20px;
	padding: 13px 0;
	border-bottom: 1px solid var(--aw-line);
}

.aw-policy dt {
	color: var(--aw-navy);
	font-weight: 900;
}

.aw-policy dd {
	margin: 0;
}

.aw-filter-list a {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 8px 15px;
	border: 1px solid var(--aw-line);
	border-radius: 999px;
	background: var(--aw-white);
	color: var(--aw-navy) !important;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none !important;
}

.aw-pagination {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin-top: 44px;
}

.aw-pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
}

.aw-pagination .page-numbers {
	display: grid;
	flex: 0 0 42px;
	width: 42px;
	min-width: 42px;
	height: 42px;
	padding: 0 9px;
	border: 1px solid var(--aw-line);
	border-radius: 50%;
	color: var(--aw-navy) !important;
	font-weight: 900;
	text-decoration: none !important;
	place-items: center;
}

.aw-pagination .current {
	border-color: var(--aw-navy);
	background: var(--aw-navy);
	color: var(--aw-white) !important;
}

.aw-article {
	max-width: 880px;
	margin-inline: auto;
}

.aw-article__header {
	margin-bottom: 34px;
}

.aw-article__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-bottom: 15px;
	color: var(--aw-muted);
	font-size: 13px;
}

.aw-article__title {
	margin: 0;
	color: var(--aw-navy);
	font-size: clamp(34px, 5vw, 58px);
	font-weight: 950;
	letter-spacing: -0.04em;
	line-height: 1.25;
}

.aw-article__featured {
	margin: 0 0 42px;
}

.aw-article__featured img {
	display: block;
	width: 100%;
	max-height: 620px;
	border-radius: var(--aw-radius);
	object-fit: cover;
}

.aw-article__summary {
	margin: 0 0 30px;
	padding: 24px 26px;
	border-left: 5px solid var(--aw-blue);
	border-radius: 0 16px 16px 0;
	background: var(--aw-white);
	box-shadow: 0 12px 34px rgba(8, 42, 66, 0.08);
	color: #304552;
	font-size: 17px;
	font-weight: 700;
}

.aw-article--report .aw-article__summary {
	border-left-color: var(--aw-orange);
	background: #fffaf5;
}

.aw-article--report .aw-article__summary-label {
	color: #c5570b;
}

.aw-article__summary p {
	margin: 0;
}

.aw-article__summary-label {
	margin-bottom: 7px !important;
	color: var(--aw-blue);
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.12em;
}

.aw-result {
	position: relative;
	overflow: hidden;
	margin: 0 0 34px;
	padding: 28px 30px;
	border-radius: 18px;
	background: var(--aw-navy);
	color: var(--aw-white);
}

.aw-result::after {
	position: absolute;
	top: -34px;
	right: -20px;
	width: 140px;
	height: 140px;
	border: 28px solid rgba(255, 255, 255, 0.06);
	border-radius: 50%;
	content: "";
}

.aw-result__label {
	margin: 0 0 5px;
	color: #7fd4ff;
	font-size: 12px;
	font-weight: 950;
	letter-spacing: 0.18em;
}

.aw-result h2 {
	margin: 0 0 8px;
	color: var(--aw-white);
	font-size: 22px;
	font-weight: 950;
}

.aw-result p:last-child {
	position: relative;
	z-index: 1;
	margin: 0;
	font-size: clamp(18px, 3vw, 24px);
	font-weight: 900;
	line-height: 1.55;
}

.aw-article__body-heading {
	display: flex;
	gap: 16px;
	align-items: baseline;
	margin: 44px 0 18px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--aw-line);
}

.aw-article__body-heading span {
	color: var(--aw-blue);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.16em;
}

.aw-article--report .aw-article__body-heading span {
	color: #c5570b;
}

.aw-article__body-heading h2 {
	margin: 0;
	color: var(--aw-navy);
	font-size: clamp(25px, 4vw, 34px);
	font-weight: 950;
}

.aw-article__content {
	color: #304552;
	font-size: 17px;
	line-height: 1.9;
}

.aw-article--notice .aw-article__content {
	padding: clamp(22px, 4vw, 34px);
	border: 1px solid var(--aw-line);
	border-radius: 16px;
	background: var(--aw-white);
}

.aw-article--report .aw-article__content > p:first-child::first-letter {
	color: var(--aw-orange);
	font-size: 1.15em;
	font-weight: 900;
}

.aw-article__content h2,
.aw-article__content h3,
.aw-article__content h4 {
	color: var(--aw-navy);
	font-weight: 950;
}

.aw-article__content h2 {
	margin: 2.2em 0 0.8em;
	font-size: clamp(27px, 4vw, 38px);
}

.aw-article__content h3 {
	margin: 1.9em 0 0.7em;
	font-size: 24px;
}

.aw-article__content img {
	border-radius: 14px;
}

.aw-article__content a {
	font-weight: 700;
}

.aw-article__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: center;
	margin-top: 42px;
	padding-top: 24px;
	border-top: 1px solid var(--aw-line);
}

.aw-article__tags > span {
	margin-right: 4px;
	color: var(--aw-muted);
	font-size: 11px;
	font-weight: 950;
	letter-spacing: 0.14em;
}

.aw-article__tags a {
	padding: 7px 11px;
	border-radius: 999px;
	background: #e8f5fb;
	color: var(--aw-navy) !important;
	font-size: 13px;
	font-weight: 800;
	text-decoration: none !important;
}

.aw-article__tags a:hover {
	background: var(--aw-blue);
	color: var(--aw-white) !important;
}

.aw-post-nav {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px;
	margin-top: 60px;
	padding-top: 30px;
	border-top: 1px solid var(--aw-line);
}

.aw-post-nav a {
	display: block;
	padding: 18px;
	border: 1px solid var(--aw-line);
	border-radius: 12px;
	color: var(--aw-navy) !important;
	font-weight: 800;
	text-decoration: none !important;
}

.aw-footer-cta {
	padding: 54px 0;
	background: var(--aw-blue);
	color: var(--aw-white);
}

.aw-footer-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 36px;
}

.aw-footer-cta h2 {
	margin: 0;
	color: var(--aw-white);
	font-size: clamp(26px, 4vw, 42px);
	font-weight: 950;
}

.aw-footer-cta p:last-child {
	margin: 8px 0 0;
	color: rgba(255, 255, 255, 0.8);
}

.aw-footer {
	padding: 64px 0 26px;
	background: var(--aw-navy-deep);
	color: rgba(255, 255, 255, 0.72);
}

.aw-footer a {
	color: var(--aw-white) !important;
}

.aw-footer__grid {
	display: grid;
	grid-template-columns: 1.5fr 1fr 0.8fr;
	gap: 50px;
}

.aw-footer__wordmark {
	margin: 0;
	color: var(--aw-white);
	font-family: Impact, "Arial Black", sans-serif;
	font-size: 48px;
	font-style: italic;
	letter-spacing: -0.02em;
	line-height: 1;
}

.aw-footer__brand p:last-child {
	margin: 14px 0 0;
	font-weight: 800;
}

.aw-footer__heading {
	margin: 0 0 16px;
	color: var(--aw-yellow);
	font-size: 13px;
	font-weight: 900;
	letter-spacing: 0.16em;
}

.aw-footer__grid p {
	margin: 0 0 10px;
	font-size: 15px;
}

.aw-footer__nowrap {
	letter-spacing: -0.025em;
	white-space: nowrap;
}

.aw-footer__bottom {
	display: grid;
	justify-items: center;
	gap: 16px;
	margin-top: 50px;
	padding-top: 22px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	font-size: 13px;
	text-align: center;
}

.aw-footer__bottom p {
	margin: 0;
}

.aw-footer__nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px 20px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aw-footer__nav a {
	text-decoration: none !important;
}

@media (max-width: 1120px) {
	.aw-info-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.aw-header__inner {
		min-height: 74px;
	}

	.aw-brand__logo {
		width: 116px;
		height: 54px;
	}

	.aw-brand__name {
		font-size: 18px;
	}

	.aw-nav__list {
		gap: 11px;
	}

	.aw-nav__list > li > a {
		font-size: 12px;
	}

	.aw-nav__list > li:last-child > a {
		padding-inline: 13px;
	}
}

@media (max-width: 960px) {
	.aw-header {
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
	}

	.admin-bar .aw-header {
		top: 46px;
	}

	.aw-menu-toggle {
		position: relative;
		z-index: 1003;
		display: inline-flex;
		justify-content: center;
		cursor: pointer;
	}

	.aw-nav {
		position: fixed;
		z-index: 1002;
		top: 74px;
		right: 0;
		width: min(88vw, 390px);
		height: calc(100vh - 74px);
		height: calc(100dvh - 74px);
		padding: 28px 24px;
		overflow-y: auto;
		overscroll-behavior: contain;
		background: var(--aw-navy-deep);
		box-shadow: -20px 20px 60px rgba(3, 27, 47, 0.28);
		transform: translateX(110%);
		visibility: hidden;
		pointer-events: none;
		-webkit-overflow-scrolling: touch;
		transition: transform 220ms ease, visibility 0s linear 220ms;
	}

	.admin-bar .aw-nav {
		top: 120px;
		height: calc(100vh - 120px);
		height: calc(100dvh - 120px);
	}

	html.aw-menu-open,
	body.aw-menu-open {
		overflow: hidden;
		overscroll-behavior: none;
	}

	.aw-menu-open .aw-nav {
		transform: translateX(0);
		visibility: visible;
		pointer-events: auto;
		transition-delay: 0s;
	}

	.aw-menu-backdrop {
		position: fixed;
		z-index: 1001;
		top: 74px;
		right: 0;
		bottom: 0;
		left: 0;
		display: block;
		padding: 0;
		border: 0;
		background: rgba(3, 27, 47, 0.52);
		cursor: pointer;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		transition: opacity 180ms ease, visibility 0s linear 180ms;
	}

	.admin-bar .aw-menu-backdrop {
		top: 120px;
	}

	.aw-menu-open .aw-menu-backdrop {
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transition-delay: 0s;
	}

	.aw-nav__list {
		display: grid;
		gap: 0;
	}

	.aw-nav__list > li {
		border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	}

	.aw-nav__list > li > a {
		display: flex;
		width: 100%;
		min-height: 58px;
		color: var(--aw-white) !important;
		font-size: 15px;
		line-height: 1.45;
		white-space: normal;
	}

	.aw-nav__list > li:not(:last-child) > a::after {
		display: none;
	}

	.aw-nav__list > li:last-child {
		margin-top: 22px;
		border: 0;
	}

	.aw-nav__list > li:last-child > a {
		justify-content: center;
	}

	.aw-info-grid,
	.aw-stat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.aw-split,
	.aw-split--reverse {
		grid-template-columns: 1fr;
	}

	.aw-about-intro {
		grid-template-columns: minmax(0, 1fr);
		gap: 30px;
	}

	.aw-split--reverse .aw-split__media {
		order: -1;
	}

	.aw-values,
	.aw-steps,
	.aw-news-grid {
		grid-template-columns: 1fr;
	}

	.aw-news-grid {
		max-width: 680px;
		margin-inline: auto;
	}

	.aw-news-card {
		display: grid;
		grid-template-columns: 38% 1fr;
	}

	.aw-news-card__image img {
		height: 100%;
		aspect-ratio: auto;
	}

	.aw-contact-layout {
		grid-template-columns: 1fr;
	}

	.aw-contact-side {
		position: static;
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 782px) {
	.admin-bar .aw-header {
		top: 46px;
	}
}

@media (max-width: 720px) {
	.aw-container {
		width: min(calc(100% - 30px), var(--aw-container));
	}

	.aw-brand__logo {
		width: 106px;
		height: 50px;
	}

	.aw-menu-toggle__label {
		display: none;
	}

	.aw-hero {
		min-height: 0;
	}

	.aw-hero__media {
		position: relative;
		height: auto;
		aspect-ratio: 16 / 9;
		background: #000;
	}

	.aw-hero__video {
		object-fit: contain;
	}

	.aw-hero__shade {
		display: none;
	}

	.aw-hero__content {
		min-height: 0;
		padding: 42px 0 38px;
	}

	.aw-hero h1 {
		font-size: clamp(34px, 10.7vw, 51px);
	}

	.aw-hero__lead {
		margin-top: 18px;
		font-size: 15px;
	}

	.aw-hero__actions {
		display: grid;
		margin-top: 24px;
	}

	.aw-hero__actions .aw-button {
		width: 100%;
	}

	.aw-video-toggle {
		top: 14px;
		right: 14px;
		bottom: auto;
	}

	.aw-hero-facts {
		position: relative;
		background: #082f4d;
	}

	.aw-hero-facts__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.aw-hero-fact {
		padding: 18px 15px;
	}

	.aw-hero-fact + .aw-hero-fact {
		border-left: 0;
	}

	.aw-hero-fact:nth-child(even) {
		border-left: 1px solid rgba(255, 255, 255, 0.14);
	}

	.aw-hero-fact:nth-child(n + 3) {
		border-top: 1px solid rgba(255, 255, 255, 0.14);
	}

	.aw-hero-fact__value {
		font-size: 13px;
	}

	.aw-section-heading {
		display: block;
		margin-bottom: 30px;
	}

	.aw-section-heading > .aw-button {
		margin-top: 22px;
	}

	.aw-info-grid,
	.aw-card-grid,
	.aw-roster,
	.aw-captain-grid,
	.aw-team-grid,
	.aw-contact-choice,
	.aw-contact-side,
	.aw-sitemap-grid,
	.aw-stat-grid,
	.aw-thanks-steps {
		grid-template-columns: 1fr;
	}

	.aw-contact-placeholder {
		min-height: 220px;
		padding: 28px 18px;
	}

	.aw-info-list p {
		grid-template-columns: 1fr;
		gap: 3px;
	}

	.aw-info-list--fees span {
		text-align: left;
	}

	.aw-achievement-year {
		padding: 22px 20px;
	}

	.aw-achievement-year h3 {
		align-items: flex-start;
		flex-direction: column;
		gap: 0;
	}

	.aw-thanks-hero {
		padding: 70px 0 62px;
	}

	.aw-info-card {
		min-height: 0;
	}

	.aw-team-card {
		min-height: 390px;
	}

	.aw-final-box__inner,
	.aw-footer-cta__inner {
		display: grid;
	}

	.aw-final-box .aw-button,
	.aw-footer-cta .aw-button {
		width: 100%;
	}

	.aw-roster__team ul {
		grid-template-columns: 1fr;
	}

	.aw-song__lyrics {
		columns: 1;
	}

	.aw-form-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.aw-field--full {
		grid-column: auto;
	}

	.aw-contact-form input[type="submit"] {
		width: 100%;
	}

	.aw-news-card {
		display: block;
	}

	.aw-news-card__image img {
		height: auto;
		aspect-ratio: 16 / 10;
	}

	.aw-footer {
		padding: 34px 0 18px;
	}

	.aw-footer__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.aw-footer__wordmark {
		font-size: 38px;
	}

	.aw-footer__brand p:last-child {
		margin-top: 8px;
	}

	.aw-footer__heading {
		margin-bottom: 8px;
	}

	.aw-footer__grid p {
		margin-bottom: 6px;
		font-size: 14px;
		line-height: 1.6;
	}

	.aw-footer__nowrap {
		font-size: clamp(12px, 3.7vw, 14px);
	}

	.aw-footer__bottom {
		display: grid;
		gap: 12px;
		margin-top: 24px;
		padding-top: 16px;
		font-size: 12px;
	}

	.aw-footer__nav {
		gap: 7px 14px;
	}

	.aw-post-nav {
		grid-template-columns: 1fr;
	}

	.aw-policy dl div {
		grid-template-columns: 1fr;
		gap: 3px;
	}
}

@media (max-width: 600px) {
	.admin-bar .aw-header {
		top: 0;
	}

	.admin-bar .aw-nav {
		top: 74px;
		height: calc(100vh - 74px);
		height: calc(100dvh - 74px);
	}

	.admin-bar .aw-menu-backdrop {
		top: 74px;
	}
}

@media (prefers-reduced-motion: reduce) {
	html:has(> body.aw-site) {
		scroll-behavior: auto;
	}

	body.aw-site,
	body.aw-site *,
	body.aw-site *::before,
	body.aw-site *::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}
