/**
 * Our Story 页面样式
 * 设计规范: about-us-page/00-page-layout.md + docs/design-tokens.md
 * 字体: Oswald (display) + Inter (body) · 主色 cyan #00E5FF
 */

.bjs-our-story {
	--os-bg: #000000;
	--os-bg-elevated: #0F0F0F;
	--os-bg-section: #0A0E14;
	--os-bg-input: #1A1F26;
	--os-text: #FFFFFF;
	--os-text-body: #E0E0E0;
	--os-text-secondary: #B0B0B0;
	--os-text-muted: #707070;
	--os-border: #1F1F1F;
	--os-cyan: #00E5FF;
	--os-cyan-dim: #00B8CC;
	--os-light-blue: #3AAFE8;
	--os-crimson: #C73E3E;
	--os-warm: #E8C56E;
	--os-font-display: 'Oswald', 'Barlow Condensed', 'Eurostile', sans-serif;
	--os-font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
	--os-toc-width: 240px;
	--os-content-max: 880px;

	background: var(--os-bg);
	color: var(--os-text);
	font-family: var(--os-font-body);
	line-height: 1.6;
}

.bjs-our-story img {
	max-width: 100%;
	height: auto;
	display: block;
}

.bjs-our-story a:not(.os-btn) {
	color: var(--os-cyan);
	text-decoration: none;
}
.bjs-our-story a:not(.os-btn):hover {
	color: #FFFFFF;
}
.bjs-our-story a:focus-visible,
.bjs-our-story button:focus-visible {
	outline: 2px solid var(--os-cyan);
	outline-offset: 2px;
}

/* ============ 布局：TOC + 内容 ============ */

.os-layout {
	display: grid;
	grid-template-columns: var(--os-toc-width) minmax(0, 1fr);
	gap: 48px;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 32px;
}

.os-content {
	max-width: var(--os-content-max);
	width: 100%;
}

.os-toc {
	display: block;
}
.os-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
	position: sticky;
	top: 120px;
}
.os-toc li {
	margin: 0 0 4px;
}
.os-toc a {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 10px 14px;
	border-left: 2px solid transparent;
	color: var(--os-text-secondary);
	font-size: 14px;
	font-weight: 500;
	transition: color 0.2s, border-color 0.2s;
}
.os-toc a i {
	font-size: 18px;
	color: var(--os-text-muted);
	transition: color 0.2s;
}
.os-toc a:hover {
	color: var(--os-text);
}
.os-toc a.is-active {
	color: var(--os-cyan);
	border-left-color: var(--os-cyan);
}
.os-toc a.is-active i {
	color: var(--os-cyan);
}

/* 移动端 chip bar（桌面隐藏） */
.os-chips {
	display: none;
}

/* ============ 通用 section 元素 ============ */

.os-section {
	padding: 96px 0;
	border-bottom: 1px solid var(--os-border);
	scroll-margin-top: 110px;
}
.os-section:last-child {
	border-bottom: none;
}

.os-part-label {
	padding: 56px 0 0;
	font-size: 12px;
	font-weight: 500;
	color: var(--os-text-muted);
	letter-spacing: 4px;
	text-transform: uppercase;
}

.os-title {
	font-family: var(--os-font-display);
	font-weight: 700;
	font-size: 48px;
	line-height: 1.1;
	color: var(--os-text);
	margin: 0 0 8px;
}

.os-accent-underline {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--os-cyan);
	margin: 16px 0 32px;
}

.os-sub {
	font-size: 20px;
	line-height: 1.5;
	color: var(--os-text-secondary);
	max-width: 720px;
	margin: 0 0 48px;
}

.os-body p,
.os-body-para {
	font-size: 17px;
	line-height: 1.7;
	color: var(--os-text-body);
	max-width: 720px;
	margin: 0 0 24px;
}
.os-body p strong {
	color: var(--os-text);
}

.os-h3 {
	font-family: var(--os-font-display);
	font-weight: 700;
	font-size: 32px;
	color: var(--os-text);
	margin: 80px 0 32px;
}

.os-body .os-callout,
.os-callout {
	font-family: var(--os-font-display);
	font-size: 30px;
	line-height: 1.3;
	color: var(--os-cyan);
	text-align: center;
	max-width: 720px;
	margin: 64px 0;
	padding: 32px 0;
	border-top: 1px solid var(--os-border);
	border-bottom: 1px solid var(--os-border);
}

.os-highlight-sting {
	color: var(--os-cyan);
	font-weight: 700;
}
.os-highlight-next {
	color: var(--os-text);
	font-weight: 700;
}

.os-section-link {
	margin: 48px 0 0;
	font-size: 14px;
	color: var(--os-text-secondary);
}
.os-section-link a i {
	font-size: 12px;
	vertical-align: middle;
}

/* ============ 按钮 ============ */

.os-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 56px;
	padding: 0 32px;
	border-radius: 8px;
	font-family: var(--os-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.os-btn-primary {
	background: var(--os-cyan);
	color: var(--os-bg-section);
	border: none;
}
.os-btn-primary:hover {
	background: #FFFFFF;
	color: var(--os-bg-section);
}
.os-btn-ghost {
	background: transparent;
	color: var(--os-text);
	border: 1px solid rgba(255, 255, 255, 0.4);
}
.os-btn-ghost:hover {
	border-color: var(--os-cyan);
	color: var(--os-cyan);
}

/* ============ 01 Hero ============ */

.os-hero {
	position: relative;
	min-height: 75vh;
	display: flex;
	align-items: center;
	padding: 64px 0;
	border-bottom: none;
	overflow: hidden;
}
.os-hero-media {
	position: absolute;
	inset: 0;
}
.os-hero-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.os-hero-media::before {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(10, 14, 20, 0.45);
	z-index: 1;
}
.os-hero-media::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.6) 100%);
	z-index: 2;
}
.os-hero-inner {
	position: relative;
	z-index: 3;
	max-width: 600px;
	padding-left: 48px;
}
.os-hero h1 {
	font-family: var(--os-font-display);
	font-size: 80px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0;
	color: var(--os-text);
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
	margin: 0 0 16px;
}
.os-accent-line {
	display: block;
	width: 80px;
	height: 3px;
	background: var(--os-cyan);
	margin: 0 0 24px;
}
.os-hero-sub {
	font-size: 20px;
	line-height: 1.5;
	color: var(--os-text-body);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
	max-width: 640px;
	margin: 0 0 40px;
}
.os-hero-ctas {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}
.os-hero-scroll {
	position: absolute;
	bottom: 32px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--os-text-secondary);
	text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}
.os-hero-scroll i {
	animation: os-bounce 2s infinite;
}
@keyframes os-bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(8px); }
}

/* ============ 03 Promise：TikTok 截图墙 ============ */

.os-tk-bar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 12px 16px;
	background: var(--os-bg-elevated);
	border: 1px solid var(--os-border);
	border-radius: 8px;
	font-size: 14px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.os-tk-bar-left {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--os-text-secondary);
}
.os-tk-bar-left i {
	color: #FF0050;
	font-size: 20px;
}
.os-tk-bar-right {
	color: var(--os-text-muted);
	font-size: 13px;
}

.os-tk-stage {
	position: relative;
	aspect-ratio: 16 / 12;
	max-height: 60vh;
	margin: 0 auto;
	cursor: zoom-in;
}
.os-tk-stage img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: var(--os-bg-elevated);
	border: 1px solid var(--os-border);
	border-radius: 12px;
	opacity: 0;
	transform: scale(0.94);
	transition: opacity 0.4s, transform 0.4s;
}
.os-tk-stage img.is-active {
	opacity: 1;
	transform: scale(1);
}

.os-tk-nav {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	margin-top: 20px;
}
.os-tk-nav button {
	width: 40px;
	height: 40px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid var(--os-border);
	border-radius: 50%;
	color: var(--os-text-secondary);
	font-size: 18px;
	cursor: pointer;
	transition: border-color 0.2s, color 0.2s;
}
.os-tk-nav button:hover {
	border-color: var(--os-cyan);
	color: var(--os-cyan);
}
.os-tk-counter {
	font-size: 13px;
	color: var(--os-text-muted);
}

/* Lightbox */
.os-lightbox {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.92);
	padding: 24px;
	cursor: zoom-out;
}
.os-lightbox img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	border-radius: 8px;
}
.os-lightbox-close {
	position: absolute;
	top: 16px;
	right: 16px;
	width: 44px;
	height: 44px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
}

/* 独立站空状态 */
.os-empty-state {
	max-width: 600px;
	margin: 48px auto 0;
	padding: 32px;
	border: 1px dashed var(--os-border);
	border-radius: 8px;
	text-align: center;
}
.os-empty-state h3 {
	font-size: 18px;
	font-weight: 600;
	color: var(--os-text-secondary);
	margin: 0 0 8px;
}
.os-empty-state p {
	font-size: 15px;
	color: var(--os-text-muted);
	line-height: 1.6;
	margin: 0;
}

/* 6 承诺卡 */
.os-promise-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.os-promise-card {
	display: flex;
	flex-direction: column;
	background: var(--os-bg-elevated);
	border: 1px solid var(--os-border);
	border-radius: 16px;
	padding: 28px;
	transition: border-color 0.2s, box-shadow 0.2s;
}
.os-promise-card:hover {
	border-color: var(--os-cyan);
	box-shadow: 0 0 32px rgba(0, 229, 255, 0.1);
}
.os-promise-card > i {
	font-size: 32px;
	color: var(--os-cyan);
	margin-bottom: 16px;
}
.os-promise-card h4 {
	font-size: 20px;
	font-weight: 700;
	color: var(--os-text);
	margin: 0 0 12px;
}
.os-promise-card p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--os-text-body);
	margin: 0;
}
.os-card-note {
	display: block;
	margin-top: auto;
	padding-top: 12px;
	font-size: 12px;
	color: var(--os-text-muted);
}

/* ============ 04 Shipping ============ */

.os-map {
	margin: 0 0 48px;
}
.os-map img {
	width: 100%;
	border: 1px solid var(--os-border);
	border-radius: 12px;
	background: var(--os-bg-elevated);
}

.os-hubs {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 48px;
}
.os-hub-card {
	background: var(--os-bg-elevated);
	border: 1px solid rgba(0, 229, 255, 0.3);
	border-radius: 12px;
	padding: 32px;
}
.os-hub-flag {
	font-size: 32px;
	display: block;
	margin-bottom: 12px;
}
.os-hub-card h3 {
	font-family: var(--os-font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--os-text);
	margin: 0 0 8px;
}
.os-hub-time {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 18px;
	font-weight: 600;
	color: var(--os-cyan);
	margin: 0 0 12px;
}
.os-hub-desc {
	font-size: 14px;
	line-height: 1.6;
	color: var(--os-text-secondary);
	margin: 0;
}
.os-hub-desc strong {
	color: var(--os-text);
}

.os-ship-promises {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.os-ship-promise {
	border-left: 3px solid var(--os-cyan);
	padding-left: 24px;
}
.os-ship-promise h4 {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 16px;
	font-weight: 700;
	color: var(--os-text);
	margin: 0 0 8px;
}
.os-ship-promise h4 i {
	color: var(--os-cyan);
	font-size: 20px;
}
.os-ship-promise p {
	font-size: 14px;
	line-height: 1.6;
	color: var(--os-text-secondary);
	margin: 0;
}

/* ============ 05 People / QC ============ */

.os-lead {
	font-size: 17px;
	line-height: 1.7;
	color: var(--os-text-body);
	max-width: 720px;
	margin: 0 0 48px;
}

.os-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.os-step-card {
	background: var(--os-bg-elevated);
	border: 1px solid var(--os-border);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.2s;
}
.os-step-card:hover {
	border-color: var(--os-cyan);
}
.os-step-photo {
	position: relative;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}
.os-step-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.os-step-num {
	position: absolute;
	top: 12px;
	left: 12px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--os-cyan);
	color: var(--os-bg-section);
	border-radius: 50%;
	font-family: var(--os-font-display);
	font-size: 16px;
	font-weight: 700;
}
.os-step-card h3 {
	font-size: 14px;
	font-weight: 700;
	color: var(--os-text);
	letter-spacing: 2px;
	text-transform: uppercase;
	margin: 20px 20px 8px;
}
.os-step-card p {
	font-size: 14px;
	line-height: 1.5;
	color: var(--os-text-secondary);
	margin: 0 20px 20px;
}

.os-transition {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 64px 0 48px;
}
.os-transition::before,
.os-transition::after {
	content: '';
	flex: 1;
	border-top: 1px dashed rgba(0, 229, 255, 0.4);
}
.os-transition span {
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--os-text-muted);
	white-space: nowrap;
}

.os-test-photos {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 32px;
}
.os-test-photos img {
	width: 100%;
	border: 1px solid var(--os-border);
	border-radius: 12px;
}

/* ============ 06 Numbers ============ */

.os-numbers-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.os-number-card {
	background: var(--os-bg-elevated);
	border: 1px solid var(--os-border);
	border-radius: 16px;
	padding: 32px;
	transition: border-color 0.2s, transform 0.2s;
}
.os-number-card:hover {
	border-color: var(--os-cyan);
	transform: translateY(-2px);
}
.os-num {
	display: flex;
	align-items: baseline;
	gap: 8px;
	font-family: var(--os-font-display);
	font-size: 56px;
	font-weight: 700;
	line-height: 1;
	color: var(--os-cyan);
	margin-bottom: 16px;
}
.os-num i {
	font-size: 28px;
}
.os-number-card p {
	font-size: 15px;
	line-height: 1.6;
	color: var(--os-text-body);
	margin: 0;
}
.os-number-card p small {
	color: var(--os-text-muted);
	font-size: 12px;
}

/* ============ 07 Vision ============ */

.os-saber-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin: 48px 0;
}
.os-saber-card {
	background: var(--os-bg-elevated);
	border: 1px solid var(--os-border);
	border-radius: 12px;
	overflow: hidden;
	transition: border-color 0.2s;
}
.os-saber-card:hover {
	border-color: var(--os-cyan);
}
.os-saber-card > img {
	aspect-ratio: 1;
	width: 100%;
	object-fit: cover;
	background: var(--os-bg-input);
}
.os-saber-body {
	padding: 20px 24px 24px;
}
.os-saber-sku {
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 2px;
	color: var(--os-cyan);
}
.os-saber-body h3 {
	font-family: var(--os-font-display);
	font-size: 20px;
	font-weight: 700;
	color: var(--os-text);
	margin: 4px 0 8px;
}
.os-saber-body h3 small {
	font-size: 14px;
	font-weight: 500;
	color: var(--os-text-secondary);
}
.os-saber-desc {
	font-size: 14px;
	line-height: 1.5;
	color: var(--os-text-secondary);
	margin: 0 0 12px;
}
.os-faction {
	display: inline-block;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.25);
}
.os-faction-light {
	background: var(--os-light-blue);
	box-shadow: 0 0 10px rgba(58, 175, 232, 0.7);
}
.os-faction-dark {
	background: var(--os-crimson);
	box-shadow: 0 0 10px rgba(199, 62, 62, 0.7);
}
.os-faction-neutral {
	background: var(--os-warm);
	box-shadow: 0 0 10px rgba(232, 197, 110, 0.7);
}
.os-vision-closer p {
	margin-bottom: 8px;
}

/* ============ 08 CTA + Contact ============ */

.os-cta {
	background: var(--os-bg-section);
	border-radius: 16px;
	padding: 96px 48px;
	border-bottom: none;
}
.os-cta > * {
	max-width: var(--os-content-max);
	margin-left: auto;
	margin-right: auto;
}
.os-cta-title {
	text-align: center;
	margin-bottom: 48px;
}

.os-shop-row {
	display: flex;
	justify-content: center;
	gap: 16px;
	flex-wrap: wrap;
	padding-bottom: 64px;
	margin-bottom: 64px;
	border-bottom: 1px dashed var(--os-border);
}

.os-talk-row {
	max-width: 600px;
}
.os-talk-row .os-h3 {
	text-align: center;
	margin: 0 0 16px;
}
.os-talk-lead {
	font-size: 17px;
	line-height: 1.6;
	color: var(--os-text-secondary);
	text-align: center;
	margin: 0 0 32px;
}
.os-talk-fallback {
	text-align: center;
}
.os-privacy {
	font-size: 13px;
	line-height: 1.5;
	color: var(--os-text-muted);
	text-align: center;
	margin-top: 24px;
}
.os-privacy a {
	color: var(--os-text-muted);
	text-decoration: underline;
}
.os-privacy a:hover {
	color: var(--os-cyan);
}

/* WPForms Lite 深色适配 */
.bjs-our-story .os-cta .wpforms-container {
	margin: 0;
}
.bjs-our-story .os-cta .wpforms-container .wpforms-field-label {
	display: block;
	font-size: 13px;
	font-weight: 500;
	color: var(--os-text-secondary);
	margin-bottom: 6px;
}
.bjs-our-story .os-cta .wpforms-container .wpforms-field input[type="text"],
.bjs-our-story .os-cta .wpforms-container .wpforms-field input[type="email"],
.bjs-our-story .os-cta .wpforms-container .wpforms-field textarea {
	width: 100%;
	max-width: 100%;
	padding: 14px 16px;
	background: var(--os-bg-input);
	border: 1px solid var(--os-border);
	border-radius: 8px;
	color: var(--os-text);
	font-family: var(--os-font-body);
	font-size: 15px;
	line-height: 1.4;
	transition: border-color 0.2s, background 0.2s;
}
.bjs-our-story .os-cta .wpforms-container .wpforms-field input[type="text"]:focus,
.bjs-our-story .os-cta .wpforms-container .wpforms-field input[type="email"]:focus,
.bjs-our-story .os-cta .wpforms-container .wpforms-field textarea:focus {
	outline: none;
	border-color: var(--os-cyan);
	background: var(--os-bg-input);
	box-shadow: none;
}
.bjs-our-story .os-cta .wpforms-container .wpforms-field {
	margin-bottom: 16px;
}
.bjs-our-story .os-cta .wpforms-container .wpforms-submit-container {
	text-align: center;
	margin-top: 24px;
}
.bjs-our-story .os-cta .wpforms-container button.wpforms-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	height: 48px;
	padding: 0 40px;
	background: var(--os-cyan) !important;
	border: none;
	border-radius: 8px;
	color: var(--os-bg-section) !important;
	font-family: var(--os-font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s;
}
.bjs-our-story .os-cta .wpforms-container button.wpforms-submit:hover {
	background: #FFFFFF !important;
	color: var(--os-bg-section) !important;
}
.os-cta .wpforms-confirmation-container,
.os-cta .wpforms-confirmation-container-full {
	background: rgba(0, 229, 255, 0.08);
	border: 1px solid rgba(0, 229, 255, 0.4);
	border-radius: 8px;
	padding: 20px;
	text-align: center;
	color: var(--os-text-body);
}
.os-cta .wpforms-confirmation-container p,
.os-cta .wpforms-confirmation-container-full p {
	color: var(--os-text-body);
	margin: 0;
}
.os-cta .wpforms-error {
	font-size: 13px;
	color: #FF6B6B;
}

/* ============ 响应式 ============ */

@media (max-width: 1100px) {
	.os-layout {
		grid-template-columns: minmax(0, 1fr);
		gap: 0;
	}
	.os-toc {
		display: none;
	}
	.os-chips {
		display: flex;
		position: sticky;
		top: 0;
		z-index: 100;
		gap: 8px;
		padding: 10px 16px;
		margin: 0 -16px;
		background: rgba(0, 0, 0, 0.92);
		backdrop-filter: blur(8px);
		border-bottom: 1px solid var(--os-border);
		overflow-x: auto;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
	}
	.os-chips::-webkit-scrollbar {
		display: none;
	}
	.os-chips a {
		display: inline-flex;
		align-items: center;
		gap: 6px;
		height: 44px;
		padding: 0 14px;
		background: var(--os-bg-elevated);
		border: 1px solid var(--os-border);
		border-radius: 22px;
		font-size: 12px;
		color: var(--os-text-secondary);
		white-space: nowrap;
		flex-shrink: 0;
	}
	.os-chips a.is-active {
		color: var(--os-cyan);
		border-color: var(--os-cyan);
	}
	.os-content {
		max-width: 100%;
	}
	.os-hero-inner {
		padding-left: 0;
	}
	.os-section {
		padding: 64px 0;
		scroll-margin-top: 72px;
	}
	.os-title {
		font-size: 32px;
	}
	.os-h3 {
		font-size: 26px;
		margin: 56px 0 24px;
	}
	.os-sub {
		font-size: 17px;
		margin-bottom: 40px;
	}
	.os-hero h1 {
		font-size: 48px;
	}
	.os-hero-sub {
		font-size: 17px;
	}
	.os-callout {
		font-size: 22px;
		margin: 40px auto;
	}
	.os-promise-grid,
	.os-hubs,
	.os-ship-promises,
	.os-numbers-grid,
	.os-saber-grid {
		grid-template-columns: 1fr 1fr;
	}
	.os-steps {
		grid-template-columns: 1fr 1fr;
	}
	.os-num {
		font-size: 44px;
	}
}

@media (max-width: 640px) {
	.os-layout {
		padding: 0 16px;
	}
	.os-cta {
		padding: 64px 20px;
	}
	.os-title {
		font-size: 28px;
	}
	.os-body p,
	.os-body-para,
	.os-lead {
		font-size: 16px;
	}
	.os-hero {
		min-height: 75vh;
		align-items: flex-start;
		padding-top: 20vh;
	}
	.os-hero h1 {
		font-size: 42px;
	}
	.os-hero-ctas .os-btn {
		width: 100%;
		height: 52px;
	}
	.os-promise-grid,
	.os-hubs,
	.os-ship-promises,
	.os-numbers-grid,
	.os-saber-grid,
	.os-steps,
	.os-test-photos {
		grid-template-columns: 1fr;
	}
	.os-shop-row .os-btn {
		width: 100%;
		height: 52px;
	}
	.os-transition span {
		font-size: 11px;
		letter-spacing: 1px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.bjs-our-story * {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
	.os-hero-scroll i {
		animation: none;
	}
}
