/* ==========================================================================
   Siam District — About page
   ========================================================================== */

.about-hero {
	position: relative;
	height: 480px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.about-hero__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.about-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.55) 100%);
}

.about-hero__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding: 0 24px;
	text-align: center;
}

.about-hero__title {
	font-family: var(--sd-font-heading);
	font-size: 48px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--sd-color-white);
	text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
	margin: 0 0 14px;
}

.about-hero__tagline {
	font-family: var(--sd-font-body);
	font-size: 17px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}

/* ---- Story ---- */

.about-story {
	background: var(--sd-color-white);
	padding: 64px 0;
}

.about-story__container {
	max-width: 680px;
	margin: 0 auto;
	padding: 0 24px;
}

.about-story__text {
	margin: 0 0 22px;
}

.about-story__text p {
	font-family: var(--sd-font-body);
	font-size: 17px;
	line-height: 1.75;
	color: var(--sd-color-body-text);
	margin: 0;
}

.about-story__text:last-of-type {
	margin-bottom: 40px;
}

.about-points {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	list-style: none;
	margin: 0;
	padding: 24px 0 0;
	border-top: 1px solid var(--sd-color-border);
}

.about-points__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 18px;
	background: var(--sd-color-page-bg);
	border-radius: 999px;
	font-family: var(--sd-font-button);
	font-size: 13px;
	font-weight: 600;
	color: var(--sd-color-body-text);
}

.about-points__icon {
	width: 18px;
	height: 18px;
	color: var(--sd-color-brand);
	flex-shrink: 0;
}

/* ---- Gallery ----
   Justified row: each item's flex-grow equals its own image's aspect
   ratio, and the container's aspect-ratio is the sum of all three —
   together that makes each item's box aspect ratio land exactly on its
   image's real aspect ratio at any width, so object-fit: cover has
   nothing to crop away. Update all three if the photos change:
   fighter-shop-chang-jersey.jpeg is 800x1400 (0.571), fighter-high-kick.jpeg
   is 1206x804 (1.5), lifestyle-night-market.jpeg is 1003x1655 (0.606) —
   sum is 2.677. */

.about-gallery {
	display: flex;
	gap: 4px;
	background: var(--sd-color-white);
	aspect-ratio: 2.677;
}

.about-gallery__item {
	flex-basis: 0%;
	overflow: hidden;
}

.about-gallery__item--tall {
	flex-grow: 0.571;
}

.about-gallery__item--wide {
	flex-grow: 1.5;
}

.about-gallery__item--portrait {
	flex-grow: 0.606;
}

.about-gallery__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Mobile keeps the same proportional row as desktop rather than
   stacking each photo full-width — stacking made the tall shop photo
   balloon to ~650px+ on a phone (Marden flagged this, 20 Aug). The row
   already scales down cleanly on its own: height = width / 2.677, so at
   a 375px-wide phone that's a ~140px-tall strip, no separate override
   needed beyond a smaller gap. */

@media (max-width: 699.98px) {
	.about-gallery {
		gap: 2px;
	}
}

/* ---- CTA ---- */

.about-cta {
	background: var(--sd-color-brand);
	padding: 56px 0;
	text-align: center;
}

.about-cta__container {
	max-width: 480px;
	margin: 0 auto;
	padding: 0 24px;
}

.about-cta__title {
	font-family: var(--sd-font-heading);
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--sd-color-white);
	margin: 0 0 12px;
}

.about-cta__text {
	font-family: var(--sd-font-body);
	font-size: 14px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.85);
	margin: 0 0 24px;
}

.about-cta__btn {
	display: inline-block;
	height: 52px;
	line-height: 52px;
	padding: 0 40px;
	background: var(--sd-color-white);
	color: var(--sd-color-brand);
	border-radius: var(--sd-radius);
	font-family: var(--sd-font-button);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	transition: background-color 0.15s ease, color 0.15s ease;
}

.about-cta__btn:hover,
.about-cta__btn:focus-visible {
	background: var(--sd-color-body-text);
	color: var(--sd-color-white);
}

@media (max-width: 599.98px) {
	.about-hero {
		height: 360px;
	}

	.about-hero__title {
		font-size: 30px;
	}

	.about-hero__tagline {
		font-size: 15px;
	}

	.about-story {
		padding: 44px 0;
	}

	.about-story__text {
		font-size: 15px;
	}
}
