/* =========================================================================
 * CCW About — luxury split about section (organic photo + gold arc | content).
 * Transparent, optional bg image + opacity.
 * ===================================================================== */

.ccw-about { position: relative; width: 100%; overflow: hidden; }
.ccw-about::before {
	content: "";
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 1;
	pointer-events: none;
	z-index: 0;
}

.ccw-about__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1fr;
	align-items: center;
	gap: clamp(28px, 4vw, 56px);
	padding-block: var(--ccw-space-8);
}
.ccw-about--img-left  .ccw-about__inner { grid-template-columns: var(--ccw-about-media-w, 44%) 1fr; }
.ccw-about--img-right .ccw-about__inner { grid-template-columns: 1fr var(--ccw-about-media-w, 44%); }
.ccw-about--img-right .ccw-about__media { order: 2; }

/* ---- Media + organic photo ------------------------------------------- */
.ccw-about__media { position: relative; display: flex; justify-content: center; }

/* Soft gold arc accent behind the photo. */
.ccw-about__media--arc::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 102%;
	aspect-ratio: 1 / 1;
	transform: translate(-50%, -48%);
	border-radius: 50%;
	border: 2px solid var(--ccw-gold);
	opacity: 0.7;
	z-index: 0;
	pointer-events: none;
}

.ccw-about__frame { position: relative; z-index: 1; width: 100%; max-width: 460px; box-shadow: var(--ccw-shadow-lg); }
.ccw-about__frame--rounded { border-radius: var(--ccw-radius-lg); }
.ccw-about__frame--circle  { border-radius: 50%; aspect-ratio: 1 / 1; }
.ccw-about__frame--arc     { border-radius: 52% 48% 48% 52% / 58% 56% 44% 42%; }

.ccw-about__img { width: 100%; height: auto; display: block; object-fit: cover; border-radius: inherit; }
.ccw-about__frame--circle .ccw-about__img { height: 100%; }

/* ---- Content ---------------------------------------------------------- */
.ccw-about__content { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

.ccw-about__eyebrow {
	font-family: var(--ccw-font-body);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--ccw-rose-deep);
}
.ccw-about__title { font-family: var(--ccw-font-display); font-size: var(--ccw-fs-h1); line-height: 1.15; color: var(--ccw-heading); margin: 0; }

.ccw-about__body { display: flex; flex-direction: column; gap: 14px; font-size: var(--ccw-fs-body); line-height: var(--ccw-lh-body); color: var(--ccw-text); }
.ccw-about__body p { margin: 0; }
.ccw-about__body strong { color: var(--ccw-heading); }

.ccw-about__quote {
	margin: 4px 0 0;
	padding: 6px 0 6px 20px;
	border-inline-start: 3px solid var(--ccw-gold);
	font-family: var(--ccw-font-script);
	font-size: clamp(1.4rem, 2.4vw, 1.9rem);
	line-height: 1.3;
	color: #B8862E;
}

.ccw-about__sign { display: flex; flex-direction: column; margin-top: 4px; }
.ccw-about__sign-name { font-family: var(--ccw-font-script); font-size: 1.9rem; line-height: 1; color: var(--ccw-heading); }
.ccw-about__sign-role { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ccw-text-muted); margin-top: 4px; }

.ccw-about__btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin-top: var(--ccw-space-1);
	padding: 13px 28px;
	font-family: var(--ccw-font-body);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #fff;
	background: var(--ccw-rose-deep);
	border-radius: var(--ccw-radius-pill);
	box-shadow: 0 8px 20px rgba(192, 57, 122, 0.28);
	transition: transform 0.25s var(--ccw-ease-out), box-shadow 0.25s ease, background 0.25s ease;
}
.ccw-about__btn:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 26px rgba(192, 57, 122, 0.4); }
.ccw-about__btn-icon { display: inline-flex; transition: transform 0.25s ease; }
.ccw-about__btn:hover .ccw-about__btn-icon { transform: translateX(4px); }
.ccw-about__btn-icon svg { width: 1em; height: 1em; fill: currentColor; }

/* ---- Responsive ------------------------------------------------------- */
@media (max-width: 1024px) {
	.ccw-about--img-left .ccw-about__inner,
	.ccw-about--img-right .ccw-about__inner { grid-template-columns: 1fr; justify-items: center; text-align: center; }
	.ccw-about__content { align-items: center; }
	.ccw-about__frame { max-width: 380px; }

	.ccw-about--m-text-first .ccw-about__content  { order: 0; }
	.ccw-about--m-text-first .ccw-about__media    { order: 1; }
	.ccw-about--m-image-first .ccw-about__content { order: 1; }
	.ccw-about--m-image-first .ccw-about__media   { order: 0; }
}
