/* ============================================================
   Loop Grid — garome_services cards
   Cardo (title) + Raleway (body) | dark theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cardo:ital,wght@0,400;0,700;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
	--garome-bg:      #0d0d0d;
	--garome-accent:  #E24623;
	--garome-text:    #f5f0e8;
	--garome-muted:   rgba(245, 240, 232, 0.65);
	--garome-border:  rgba(245, 240, 232, 0.10);
}

/* ---- Card ---- */
.garome-service-card {
	background-color: var(--garome-bg);
	border: 1px solid var(--garome-border);
	padding: 2rem 1.75rem 1.75rem;
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: border-color 0.25s ease;
}

.garome-service-card:hover {
	border-color: var(--garome-accent);
}

.garome-service-card__inner {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
}

/* ---- Title ---- */
.garome-service-card__title {
	font-family: 'Cardo', Georgia, serif;
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-weight: 700;
	color: var(--garome-text);
	margin: 0;
	line-height: 1.2;
}

.garome-service-card__title a {
	color: inherit;
	text-decoration: none;
}

.garome-service-card__title a:hover {
	color: var(--garome-accent);
}

/* ---- Accroche ---- */
.garome-service-card__accroche {
	font-family: 'Raleway', sans-serif;
	font-size: 0.95rem;
	font-weight: 400;
	color: var(--garome-muted);
	margin: 0;
	line-height: 1.55;
	flex: 1;
}

/* ---- CTA ---- */
.garome-service-card__cta {
	font-family: 'Raleway', sans-serif;
	font-size: 0.85rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--garome-accent);
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin-top: auto;
	padding-top: 0.75rem;
	border-top: 1px solid var(--garome-border);
	transition: gap 0.2s ease, color 0.2s ease;
}

.garome-service-card__cta:hover {
	gap: 0.75rem;
	color: #ff5a35;
}
