* { box-sizing: border-box; }

body {
	margin: 0;
	background-color: #1c1c1c;
	background-image: url("pattern_background.png"); /* black + green pot leaves */
	background-repeat: repeat;
	font-family: Arial, Helvetica, sans-serif;
	color: #fff;
}

/* Single centred column, like the real page (~728px wide). */
.page { width: 100%; }

.container {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
}

img { display: block; width: 100%; }

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- 1. HERO ------------------------------------------------------- */
.banner-hero { background: #000; }

.hero-grid {
	display: grid;
	grid-template-columns: 58% 42%;
	align-items: stretch;
}

.hero-grid .eyes {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-brand {
	background: #000;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 6px 16px;
}

.brand {
	margin: 0;
	font-family: "Arial Black", Arial, sans-serif;
	font-weight: 900;
	letter-spacing: 1px;
	font-size: 1.5rem;
	color: #e9e9e9;
}

.tagline {
	margin: 2px 0 0;
	font-style: italic;
	font-weight: bold;
	font-size: 0.95rem;
	color: #fff;
}

/* ---- 2. YELLOW SHOUT BAR ------------------------------------------- */
.banner-shout {
	background: #f3e500;
	color: #000;
	margin-top: 6px;
}

.shout-grid {
	display: grid;
	grid-template-columns: 56% 44%;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
}

.shout-logo {
	margin: 0;
	font-family: "Arial Black", Arial, sans-serif;
	font-weight: 900;
	font-size: 2.1rem;
	line-height: 1;
	letter-spacing: -1px;
	color: #000;
}

.shout-logo .my { font-size: 1.35rem; }

.shout-logo .icon {
	width: 0.85em;
	height: 0.85em;
	fill: #000;
	transform: rotate(-8deg);
	vertical-align: -0.1em;
	margin-left: 2px;
}

.shout-sub {
	margin: 3px 0 0;
	font-weight: bold;
	font-size: 0.95rem;
	color: #000;
}

.shout-nav { text-align: right; }

.nav-links {
	margin: 0 0 6px;
	font-size: 0.8rem;
	color: #000;
}

.shout-nav input {
	width: 90%;
	max-width: 240px;
	height: 22px;
	border: 1px solid #555;
	background: #fff;
}

.search-btn {
	display: inline-block;
	margin: 5px 0 0;
	padding: 3px 14px;
	background: #2a2a2a;
	color: #fff;
	font-size: 0.75rem;
	font-weight: bold;
	border-radius: 3px;
}

/* ---- 3. PROFILE ---------------------------------------------------- */
.banner-profile {
	margin-top: 6px;
	padding: 12px 16px;
	background: rgba(0, 0, 0, 0.78);
	border: 1px solid #8a8a8a;
}

.profile-grid {
	display: grid;
	grid-template-columns: 36% 64%;
	gap: 14px;
	align-items: start;
}

.pix-links {
	margin: 5px 0 0;
	font-size: 0.7rem;
	font-weight: bold;
	letter-spacing: 0.5px;
}

.capn {
	margin: 0 0 10px;
	overflow: hidden; /* contain the floated KRYSTAL SHIP */
	line-height: 1;
}

.capn .krystal {
	float: right;
	text-align: right;
	font-family: "Arial Black", Arial, sans-serif;
	font-weight: 900;
	font-size: 1.9rem;
	line-height: 0.95;
	letter-spacing: -1px;
}

.capn .cooks {
	font-family: "Brush Script MT", "Bradley Hand", "Comic Sans MS", cursive;
	font-size: 2.6rem;
	font-style: italic;
}

.stats {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.5;
}

/* ---- 4. COLLAGE ---------------------------------------------------- */
.collage { margin-top: 6px; }

/* main_pic_crop.png has a strip of bio text baked into its bottom edge;
   crop it off so it doesn't duplicate the real text below. Nudge this
   ratio if the image shows too much/too little. */
.collage-crop {
	width: 100%;
	aspect-ratio: 993 / 865;
	overflow: hidden;
}

.collage-crop img { width: 100%; }

/* ---- 5. INTERESTS / EDUCATION -------------------------------------- */
.bio { padding: 10px 16px; }

.bio p {
	margin: 0 0 16px;
	font-size: 1.05rem;
	line-height: 1.4;
}

.bio-head {
	font-family: "Arial Black", Arial, sans-serif;
	font-weight: 900;
	font-size: 1.3rem;
	letter-spacing: 0.5px;
}

.bio em {
	font-style: italic;
	font-weight: bold;
}

/* ---- 6. WASHING BITCHES -------------------------------------------- */
.washing {
	padding: 6px 16px 36px;
	text-align: center;
}

.washing-title {
	margin: 6px 0 16px;
	font-family: Impact, "Haettenschweiler", "Arial Narrow Bold", sans-serif;
	font-weight: normal;
	font-size: 3.4rem;
	line-height: 0.9;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.washing-title .w1 {
	color: #fff;
	display: inline-block;
	transform: rotate(-2deg);
}

.washing-title .w2 {
	background: #fff;
	color: #000;
	padding: 0 0.12em;
	display: inline-block;
	transform: rotate(1deg);
}

.tv-frame {
	max-width: 560px;
	margin: 0 auto;
	padding: 6px;
	background: #111;
	border: 4px solid #3a3a3a;
	box-shadow: 0 0 0 2px #5a5a5a;
}

/* ---- Responsive: stack the two-column rows on narrow screens ------- */
@media (max-width: 560px) {
	.shout-grid,
	.profile-grid {
		grid-template-columns: 1fr;
	}
	.shout-nav { text-align: left; }
	.washing-title { font-size: 2.4rem; }
}
