/* Abbey — small polish layered on top of theme.json */

:root {
	--abbey-shadow: 0 1px 2px rgba(33,26,18,.04), 0 12px 32px -18px rgba(33,26,18,.28);
	--abbey-shadow-lift: 0 2px 4px rgba(33,26,18,.06), 0 26px 48px -22px rgba(33,26,18,.4);
}

/* Faint paper grain on the page background */
body.wp-site-blocks,
.is-root-container {
	background-image:
		radial-gradient(circle at 20% 15%, rgba(199,154,69,.05) 0, transparent 38%),
		radial-gradient(circle at 85% 70%, rgba(30,90,85,.045) 0, transparent 42%);
	background-attachment: fixed;
}

/* Eyebrow / kicker label */
.abbey-eyebrow {
	text-transform: uppercase;
	letter-spacing: .18em;
	font-size: .8rem;
	font-weight: 700;
	color: var(--wp--preset--color--terracotta);
}

/* Cards (offering tiles, commission tiles) */
.abbey-card {
	background: var(--wp--preset--color--surface);
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 14px;
	box-shadow: var(--abbey-shadow);
	overflow: clip;
	transition: transform .25s ease, box-shadow .25s ease;
	height: 100%;
}
.abbey-card:hover {
	transform: translateY(-4px);
	box-shadow: var(--abbey-shadow-lift);
}
.abbey-card img { display: block; width: 100%; height: auto; }

/* Rounded media used inside content */
.abbey-rounded img,
figure.abbey-rounded img { border-radius: 14px; }

/* Navigation: quiet links, animated underline */
.wp-block-navigation a.wp-block-navigation-item__content {
	text-decoration: none;
	position: relative;
	padding-bottom: 2px;
}
.wp-block-navigation a.wp-block-navigation-item__content::after {
	content: "";
	position: absolute;
	left: 0; right: 100%; bottom: -2px;
	height: 2px;
	background: var(--wp--preset--color--terracotta);
	transition: right .25s ease;
}
.wp-block-navigation a.wp-block-navigation-item__content:hover::after { right: 0; }

/* Pill outline button variant (apply class is-style-outline already styled by core; this refines) */
.wp-block-button.is-style-outline .wp-block-button__link {
	border-width: 1.5px;
	border-color: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--contrast);
	background: transparent;
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wp--preset--color--contrast);
	color: var(--wp--preset--color--surface);
}

/* Section divider: hand-drawn feel via dotted rule */
.abbey-rule {
	border: none;
	border-top: 2px dotted var(--wp--preset--color--line);
	margin: 0;
}

/* Cover hero: keep type readable */
.wp-block-cover.abbey-hero { min-height: 78vh; }
.wp-block-cover.abbey-hero .wp-block-cover__inner-container { max-width: 760px; }

/* Quote marks for testimonials */
.abbey-testimonial p:first-of-type::before { content: "\201C"; }
.abbey-testimonial p:first-of-type::after  { content: "\201D"; }

/* Accessible focus ring */
a:focus-visible, button:focus-visible, .wp-block-button__link:focus-visible, .wp-element-button:focus-visible {
	outline: 3px solid var(--wp--preset--color--gold);
	outline-offset: 2px;
}

/* Footer tone */
.abbey-footer { background: var(--wp--preset--color--contrast); color: var(--wp--preset--color--base); }
.abbey-footer a { color: var(--wp--preset--color--base); }
.abbey-footer .abbey-eyebrow { color: var(--wp--preset--color--gold); }
