:root {
	--navy: #0a2540;
	--cream: #f8f1e3;
	--red: #c8102e;
	--white: #ffffff;
	--muted: rgba(10, 37, 64, 0.70);
	--line: rgba(10, 37, 64, 0.10);
	--shadow-lg: 0 20px 40px -12px rgba(10, 37, 64, 0.15);
	--shadow-xl: 25px 25px 50px -12px rgba(200, 16, 46, 0.15);
	--radius: 24px;
	--radius-sm: 16px;
	--container: 1440px;
	--gutter: 2rem;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: var(--navy);
	background: var(--cream);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

img { max-width: 100%; height: auto; display: block; }

button { font-family: inherit; cursor: pointer; }

.title-font { font-family: 'Playfair Display', Georgia, serif; }

/* ==== Buttons ==== */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	border-radius: 9999px;
	font-size: 1rem;
	font-weight: 500;
	line-height: 1;
	transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
	border: 2px solid transparent;
	white-space: nowrap;
}
.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover { background: var(--red); }
.btn--light { background: var(--white); color: var(--navy); padding: 1.1rem 2.4rem; font-size: 1.15rem; }
.btn--light:hover { transform: scale(1.04); }
.btn--ghost { border-color: var(--white); color: var(--white); padding: 1.1rem 2.4rem; font-size: 1.15rem; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.1); }

/* ==== Site Header ==== */
.site-header {
	position: sticky;
	top: 0;
	z-index: 50;
	background: var(--white);
	border-bottom: 1px solid var(--line);
}
.site-header__inner {
	max-width: var(--container);
	margin: 0 auto;
	padding: 1.15rem var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
}
.site-brand {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	flex-shrink: 0;
}
.site-brand__mark {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	background: var(--red);
	color: var(--white);
	border-radius: var(--radius-sm);
	font-size: 1.35rem;
}
.site-brand__name {
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.85rem;
	letter-spacing: -0.01em;
}
.site-nav__list {
	display: flex;
	align-items: center;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 1.05rem;
	font-weight: 500;
}
.site-nav__item, .site-nav > ul > li { position: relative; }
.site-nav__link, .site-nav a {
	position: relative;
	display: inline-block;
	color: var(--navy);
	transition: color 0.3s ease, transform 0.3s ease;
}
.site-nav__link:hover, .site-nav a:hover {
	color: var(--red);
	transform: translateY(-2px);
}
.site-nav__badge {
	position: absolute;
	top: -0.5rem;
	right: -1.5rem;
	background: var(--red);
	color: var(--white);
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1;
	padding: 0.2rem 0.5rem;
	border-radius: 9999px;
}
.site-header__actions {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	flex-shrink: 0;
}
.site-header__cart {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.9rem;
	font-weight: 500;
}
.site-header__cart:hover { color: var(--red); }

/* ==== Hero ==== */
.hero {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	padding: 6rem var(--gutter);
	background:
		linear-gradient(rgba(10, 37, 64, 0.65), rgba(10, 37, 64, 0.65)),
		url('../images/hero.jpg') center/cover no-repeat,
		var(--navy);
	color: var(--white);
	overflow: hidden;
}
.hero__inner {
	max-width: var(--container);
	width: 100%;
	margin: 0 auto;
}
.hero__title {
	max-width: 18ch;
	font-size: clamp(3rem, 7vw, 5.5rem);
	line-height: 0.95;
	letter-spacing: -0.035em;
	margin: 0 0 1.5rem;
}
.hero__subtitle {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	color: rgba(248, 241, 227, 0.9);
	margin: 0 0 2rem;
}
.hero__desc {
	max-width: 28ch;
	font-size: 1.25rem;
	color: rgba(248, 241, 227, 0.8);
	margin: 0 0 3rem;
	line-height: 1.5;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__mark {
	position: absolute;
	bottom: 3rem;
	right: 3rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.825rem;
	color: rgba(255, 255, 255, 0.7);
}
.hero__mark p { margin: 0; line-height: 1.5; }
.hero__mark-rule {
	display: inline-block;
	width: 1px;
	height: 3rem;
	background: rgba(255, 255, 255, 0.3);
}

/* ==== Entries (4 cards) ==== */
.entries { padding: 6rem var(--gutter); }
.entries__inner { max-width: var(--container); margin: 0 auto; }
.entries__title {
	font-size: clamp(2rem, 4vw, 2.75rem);
	text-align: center;
	letter-spacing: -0.02em;
	margin: 0 0 4rem;
}
.entries__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) { .entries__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1200px) { .entries__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.entry-card {
	position: relative;
	display: block;
	background: var(--white);
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
	color: var(--navy);
}
.entry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.entry-card__media {
	height: 18rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 5.5rem;
	transition: transform 0.4s ease;
}
.entry-card:hover .entry-card__media { transform: scale(1.1); }
.entry-card__body { padding: 2rem; }
.entry-card__meta {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.75rem;
}
.entry-card__tag {
	color: var(--red);
	font-size: 0.875rem;
	font-weight: 500;
}
.entry-card__arrow { font-size: 2rem; line-height: 1; }
.entry-card__title {
	font-size: 1.75rem;
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
}
.entry-card__desc { color: var(--muted); margin: 0; }

.entry-card--amber   { background: linear-gradient(135deg, #c2410c 0%, #0a2540 100%); color: var(--white); }
.entry-card--wine    { background: linear-gradient(135deg, #c8102e 0%, #0a2540 100%); color: var(--white); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.entry-card--violet  { background: linear-gradient(135deg, #6d28d9 0%, #0a2540 100%); color: var(--white); }
.entry-card--emerald { background: linear-gradient(135deg, #047857 0%, #0a2540 100%); color: var(--white); }
.entry-card--amber   .entry-card__media,
.entry-card--wine    .entry-card__media,
.entry-card--violet  .entry-card__media,
.entry-card--emerald .entry-card__media { background: transparent; }
.entry-card--amber   .entry-card__tag,
.entry-card--wine    .entry-card__tag,
.entry-card--violet  .entry-card__tag,
.entry-card--emerald .entry-card__tag { color: var(--cream); }
.entry-card--amber   .entry-card__desc,
.entry-card--wine    .entry-card__desc,
.entry-card--violet  .entry-card__desc,
.entry-card--emerald .entry-card__desc { color: rgba(255, 255, 255, 0.8); }
.entry-card__badge {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	background: var(--white);
	color: var(--red);
	font-size: 0.75rem;
	font-weight: 500;
	padding: 0.5rem 1rem;
	border-radius: var(--radius-sm);
	z-index: 1;
}

/* ==== News ==== */
.news { background: var(--white); padding: 5rem var(--gutter); }
.news__inner { max-width: var(--container); margin: 0 auto; }
.news__header {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-bottom: 3rem;
	gap: 2rem;
	flex-wrap: wrap;
}
.news__title { font-size: clamp(2rem, 4vw, 2.75rem); margin: 0; letter-spacing: -0.02em; }
.news__more {
	color: var(--red);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: gap 0.3s ease;
}
.news__more:hover { gap: 0.75rem; }
.news__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) { .news__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.news-card {
	display: block;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 2rem;
	transition: border-color 0.3s ease;
	color: inherit;
}
.news-card:hover { border-color: rgba(200, 16, 46, 0.3); }
.news-card__date {
	color: var(--red);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 0;
}
.news-card__title {
	font-size: 1.5rem;
	margin: 1rem 0;
	letter-spacing: -0.01em;
}
.news-card__excerpt {
	color: var(--muted);
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* ==== Generic page / post list ==== */
.site-main { min-height: 50vh; }
/* Note: scoped to article.page — bare .page would collide with the WordPress
 * body class that gets added to every singular-page view. */
article.page { padding: 4rem var(--gutter); }
.page__inner { max-width: 960px; margin: 0 auto; }
.page__header { margin-bottom: 2.5rem; }
.page__title { font-size: clamp(2rem, 4vw, 2.75rem); margin: 0; letter-spacing: -0.02em; }
.post-list { display: flex; flex-direction: column; gap: 3rem; }
.post-item__thumb { display: block; margin-bottom: 1rem; border-radius: var(--radius-sm); overflow: hidden; }
.post-item__date { color: var(--red); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin: 0; }
.post-item__title { font-size: 1.75rem; margin: 0.5rem 0 1rem; }
.post-item__title a:hover { color: var(--red); }
.post-item__excerpt { color: var(--muted); }

/* ==== Footer ==== */
.site-footer { background: var(--navy); color: var(--cream); padding: 4rem var(--gutter); }
.site-footer__inner {
	max-width: var(--container);
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 3rem;
}
@media (min-width: 900px) { .site-footer__inner { grid-template-columns: 2fr 1fr 1fr 2fr; } }
.site-footer__name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.85rem; margin: 0 0 1rem; }
.site-footer__tagline { font-size: 0.875rem; opacity: 0.7; line-height: 1.6; margin: 0; }
.site-footer__heading { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.5; margin: 0 0 1rem; }
.site-footer__nav, .site-footer__col p { margin: 0; padding: 0; list-style: none; }
.site-footer__nav { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.site-footer__nav a:hover { color: rgba(255, 255, 255, 0.8); }
.site-footer__col p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.site-footer__legal p { font-size: 0.75rem; opacity: 0.5; margin: 0; }
.site-footer__mission { margin-top: 2rem !important; }

/* ==== Shared section title ==== */
.section__title {
	font-size: clamp(1.75rem, 3.5vw, 2.5rem);
	letter-spacing: -0.02em;
	margin: 0 0 2.5rem;
}

/* ==== Lander (landing-page hero) ==== */
.lander {
	padding: 6rem var(--gutter) 4rem;
	background: var(--navy);
	color: var(--white);
}
.lander__inner { max-width: var(--container); margin: 0 auto; }
.lander__eyebrow {
	color: var(--red);
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.8rem;
	font-weight: 600;
	margin: 0 0 1.5rem;
}
.lander__title {
	font-size: clamp(2.5rem, 5.5vw, 4.5rem);
	line-height: 1;
	letter-spacing: -0.03em;
	margin: 0 0 2rem;
	max-width: 20ch;
}
.lander__desc {
	max-width: 56ch;
	font-size: 1.125rem;
	color: rgba(248, 241, 227, 0.85);
	line-height: 1.7;
	margin: 0;
}
.lander--recycle { background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%); }
.lander--artists { background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%); }
.lander--events  { background: var(--navy); }
.lander--about   { background: linear-gradient(180deg, var(--navy) 0%, #1a3a5c 100%); }

/* ==== Steps (donation flow) ==== */
.steps { padding: 5rem var(--gutter); background: var(--white); }
.steps__inner { max-width: var(--container); margin: 0 auto; }
.steps__list {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: none;
}
@media (min-width: 768px) { .steps__list { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .steps__list { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.step {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 2rem;
	position: relative;
}
.step__num {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	background: var(--red);
	color: var(--white);
	border-radius: 50%;
	font-family: 'Playfair Display', Georgia, serif;
	font-size: 1.5rem;
	margin-bottom: 1rem;
}
.step__title { font-size: 1.375rem; margin: 0 0 0.75rem; letter-spacing: -0.01em; }
.step__desc { margin: 0; color: var(--muted); line-height: 1.6; }

/* ==== Form block ==== */
.form-block { padding: 5rem var(--gutter); background: var(--cream); }
.form-block__inner { max-width: 760px; margin: 0 auto; }
.form-block__alert {
	padding: 1rem 1.25rem;
	border-radius: var(--radius-sm);
	margin-bottom: 2rem;
	font-size: 0.95rem;
}
.form-block__alert--ok  { background: #e8f5e9; color: #1b5e20; border: 1px solid #a5d6a7; }
.form-block__alert--err { background: #fdecea; color: #b71c1c; border: 1px solid #f5c6c2; }

.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .form__row--two { grid-template-columns: 1fr 1fr; } }
.form__field { display: flex; flex-direction: column; gap: 0.5rem; }
.form__label { font-size: 0.875rem; font-weight: 500; color: var(--navy); }
.form input,
.form textarea {
	font-family: inherit;
	font-size: 1rem;
	padding: 0.85rem 1rem;
	border: 1px solid var(--line);
	border-radius: var(--radius-sm);
	background: var(--white);
	color: var(--navy);
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	width: 100%;
}
.form input:focus,
.form textarea:focus {
	outline: none;
	border-color: var(--red);
	box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.15);
}
.form textarea { resize: vertical; }
.form .btn { align-self: flex-start; }

/* ==== Impact stats ==== */
.impact { padding: 5rem var(--gutter); background: var(--white); text-align: center; }
.impact__inner { max-width: var(--container); margin: 0 auto; }
.impact__desc { max-width: 48ch; margin: -1rem auto 3rem; color: var(--muted); }
.impact__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
	margin-bottom: 3rem;
}
@media (min-width: 768px) { .impact__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.impact__stat { padding: 2rem; }
.impact__num {
	font-size: clamp(2.5rem, 4vw, 3.5rem);
	color: var(--red);
	line-height: 1;
	margin: 0 0 0.5rem;
}
.impact__label { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* ==== Benefits (artists) ==== */
.benefits { padding: 5rem var(--gutter); background: var(--white); }
.benefits__inner { max-width: var(--container); margin: 0 auto; }
.benefits__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) { .benefits__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .benefits__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.benefit {
	background: var(--cream);
	border-radius: var(--radius);
	padding: 2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit__icon { font-size: 2.5rem; margin: 0 0 1rem; }
.benefit__title { font-size: 1.375rem; margin: 0 0 0.75rem; letter-spacing: -0.01em; }
.benefit__desc { margin: 0; color: var(--muted); line-height: 1.6; }

/* ==== Events ==== */
.events-block { padding: 5rem var(--gutter); background: var(--white); }
.events-block--past { background: var(--cream); }
.events-block__inner { max-width: var(--container); margin: 0 auto; }
.events__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) { .events__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .events__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.event-card {
	display: flex;
	flex-direction: column;
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	color: inherit;
}
.events-block--past .event-card { background: var(--white); }
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.event-card--past { opacity: 0.85; }
.event-card__thumb img { width: 100%; height: 12rem; object-fit: cover; }
.event-card__date {
	color: var(--red);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 1.5rem 1.5rem 0;
}
.event-card__title { font-size: 1.375rem; margin: 0.5rem 1.5rem 0.75rem; letter-spacing: -0.01em; }
.event-card__excerpt { color: var(--muted); margin: 0 1.5rem 1.5rem; line-height: 1.6; }
.events__empty { color: var(--muted); font-style: italic; }

/* ==== Mission (about) ==== */
.mission { padding: 5rem var(--gutter); background: var(--white); }
.mission__inner { max-width: var(--container); margin: 0 auto; }
.mission__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) { .mission__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.mission__pillar {
	text-align: center;
	padding: 2rem;
	background: var(--cream);
	border-radius: var(--radius);
}
.mission__icon { font-size: 3rem; margin: 0 0 1rem; }
.mission__title { font-size: 1.75rem; margin: 0 0 0.75rem; letter-spacing: -0.01em; }
.mission__pillar p:last-child { color: var(--muted); margin: 0; line-height: 1.6; }

/* ==== About body (rendered post content inside about template) ==== */
.about-body { padding: 4rem var(--gutter); background: var(--cream); }
.about-body__inner { max-width: 760px; margin: 0 auto; line-height: 1.75; }
.about-body__inner h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; letter-spacing: -0.01em; margin: 2rem 0 1rem; }
.about-body__inner p { color: var(--navy); }

/* ==== Partners ==== */
.partners { padding: 5rem var(--gutter); background: var(--cream); }
.partners__inner { max-width: var(--container); margin: 0 auto; text-align: center; }
.partners__desc { max-width: 48ch; margin: -1rem auto 3rem; color: var(--muted); }
.partners__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
}
@media (min-width: 768px) { .partners__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.partner-slot {
	background: var(--white);
	border-radius: var(--radius-sm);
	padding: 3rem 1rem;
	color: var(--muted);
	font-weight: 500;
}

/* ==== Contact ==== */
.contact { padding: 5rem var(--gutter); background: var(--navy); color: var(--cream); }
.contact__inner { max-width: var(--container); margin: 0 auto; }
.contact .section__title { color: var(--white); }
.contact__grid {
	display: grid;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
}
@media (min-width: 768px) { .contact__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.contact__label {
	color: var(--red);
	font-size: 0.75rem;
	text-transform: uppercase;
	letter-spacing: 0.15em;
	margin: 0 0 0.5rem;
	font-weight: 600;
}
.contact__grid p:not(.contact__label) { font-size: 1.05rem; margin: 0; opacity: 0.9; }
.contact__grid a:hover { color: var(--white); }

/* ==== Generic page content ==== */
.page__thumb { margin-bottom: 2rem; border-radius: var(--radius-sm); overflow: hidden; }
.page__content { font-size: 1.05rem; line-height: 1.8; color: var(--navy); }
.page__content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 2rem; margin: 2.5rem 0 1rem; letter-spacing: -0.01em; }
.page__content h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; margin: 2rem 0 0.75rem; letter-spacing: -0.01em; }
.page__content p { margin: 0 0 1.25rem; }
.page__content a { color: var(--red); border-bottom: 1px solid currentColor; }
.page__content img { border-radius: var(--radius-sm); margin: 1.5rem 0; }
.page__content blockquote { border-left: 4px solid var(--red); margin: 1.5rem 0; padding: 0.5rem 1.25rem; color: var(--muted); font-style: italic; }
.page__content ul, .page__content ol { padding-left: 1.5rem; margin: 0 0 1.25rem; }
.page__content li { margin-bottom: 0.5rem; }
.page__content code { background: var(--cream); padding: 0.15rem 0.4rem; border-radius: 4px; font-size: 0.95em; }
.page__comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--line); }

/* ==== WooCommerce shop ==== */
.shop { padding: 4rem var(--gutter); background: var(--cream); }
.shop__inner { max-width: var(--container); margin: 0 auto; }
.shop__empty { color: var(--muted); padding: 4rem 0; text-align: center; font-style: italic; }

.shop-tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 3rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--line);
}
.shop-tab {
	display: inline-block;
	padding: 0.6rem 1.25rem;
	border-radius: 9999px;
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--navy);
	font-size: 0.95rem;
	font-weight: 500;
	transition: all 0.25s ease;
}
.shop-tab:hover { border-color: var(--red); color: var(--red); }
.shop-tab.is-active {
	background: var(--navy);
	border-color: var(--navy);
	color: var(--white);
}
.shop-tab.is-active:hover { background: var(--red); border-color: var(--red); color: var(--white); }

/* Override WooCommerce default ul.products → CSS Grid */
.shop ul.products {
	display: grid !important;
	grid-template-columns: repeat(1, minmax(0, 1fr));
	gap: 2rem;
	padding: 0 !important;
	margin: 0 0 3rem !important;
	list-style: none !important;
}
@media (min-width: 640px)  { .shop ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1024px) { .shop ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.shop ul.products::before,
.shop ul.products::after { display: none !important; }

.product-card {
	background: var(--white) !important;
	border-radius: var(--radius) !important;
	overflow: hidden;
	box-shadow: var(--shadow-lg);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	display: flex !important;
	flex-direction: column;
	width: 100% !important;
	margin: 0 !important;
	padding: 0 !important;
	float: none !important;
	clear: none !important;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.product-card__link { display: block; color: inherit; flex-grow: 1; }
.product-card__thumb {
	position: relative;
	overflow: hidden;
	background: var(--cream);
}
.product-card__thumb img,
.product-card__img {
	width: 100%;
	height: 16rem;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.product-card:hover .product-card__img { transform: scale(1.04); }
.product-card__badge {
	position: absolute;
	top: 1rem;
	left: 1rem;
	background: var(--red);
	color: var(--white);
	font-size: 0.75rem;
	font-weight: 600;
	padding: 0.3rem 0.75rem;
	border-radius: 9999px;
	letter-spacing: 0.05em;
}
.product-card__body { padding: 1.5rem; }
.product-card__title {
	font-size: 1.25rem;
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
	line-height: 1.3;
}
.product-card__price {
	color: var(--red);
	font-weight: 600;
	font-size: 1.05rem;
	margin: 0;
}
.product-card__price del {
	color: var(--muted);
	font-weight: 400;
	margin-right: 0.5rem;
}
.product-card__price ins { text-decoration: none; }
.product-card__actions { padding: 0 1.5rem 1.5rem; }
.product-card__actions .button,
.product-card__actions .add_to_cart_button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	background: var(--navy) !important;
	color: var(--white) !important;
	padding: 0.7rem 1.25rem !important;
	border-radius: 9999px !important;
	font-size: 0.875rem !important;
	font-weight: 500 !important;
	text-decoration: none !important;
	border: none !important;
	transition: background 0.25s ease !important;
	width: 100%;
	text-align: center;
}
.product-card__actions .button:hover,
.product-card__actions .add_to_cart_button:hover {
	background: var(--red) !important;
}

/* WooCommerce pagination */
.woocommerce-pagination {
	text-align: center;
	margin-top: 1rem;
}
.woocommerce-pagination ul.page-numbers {
	display: inline-flex;
	gap: 0.4rem;
	padding: 0;
	margin: 0;
	list-style: none;
	border: none !important;
}
.woocommerce-pagination ul.page-numbers li { border: none !important; }
.woocommerce-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.9rem;
	border-radius: 9999px;
	background: var(--white);
	border: 1px solid var(--line);
	color: var(--navy);
	font-weight: 500;
	transition: all 0.2s ease;
}
.woocommerce-pagination .page-numbers:hover,
.woocommerce-pagination .page-numbers.current {
	background: var(--navy);
	color: var(--white);
	border-color: var(--navy);
}

/* WooCommerce result count / ordering above grid */
.woocommerce-result-count,
.woocommerce-ordering {
	color: var(--muted);
	font-size: 0.9rem;
	margin-bottom: 1rem;
}
.woocommerce-ordering select {
	padding: 0.5rem 0.75rem;
	border-radius: var(--radius-sm);
	border: 1px solid var(--line);
	font-family: inherit;
	background: var(--white);
}

/* ==== Responsive tweaks ==== */
@media (max-width: 960px) {
	.site-header__inner { flex-wrap: wrap; }
	.site-nav { order: 3; width: 100%; }
	.site-nav__list { flex-wrap: wrap; gap: 1rem 1.5rem; justify-content: center; }
	.hero__mark { display: none; }
}
@media (max-width: 600px) {
	.btn--light, .btn--ghost { width: 100%; justify-content: center; }
	.site-header__actions .btn { padding: 0.75rem 1.25rem; font-size: 0.875rem; }
	.site-header__cart span:last-child { display: none; }
}
