/*
 * Cremelle main stylesheet.
 * Design tokens live on :root so Customizer colors can override them.
 */

:root {
	--br-accent: #6b4226;
	--br-accent-dark: #4f2f18;
	--br-bg: #f8f2e7;
	--br-band: #ead9c2;
	--br-blush: #f1e5d2;
	--br-heading: #2f2115;
	--br-text: #544639;
	--br-muted: #97846f;
	--br-line: #e0cfb4;
	--br-white: #fffbf3;

	--br-font-serif: "Bree Serif", Georgia, serif;
	--br-font-script: "Pacifico", "Brush Script MT", cursive;
	--br-font-body: "Quicksand", "Helvetica Neue", Arial, sans-serif;

	--br-container: 1200px;
	--br-radius: 14px;
	--br-shadow: 0 18px 45px -22px rgba(79, 47, 24, 0.25);
	--br-transition: 0.25s ease;
}

/* ---------- Reset-ish base ---------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	/* clip (not hidden) contains .alignfull's 100vw without making body a scroll container, so buyer-added position:sticky and anchor scrolling keep working */
	overflow-x: clip;
	background: var(--br-bg);
	color: var(--br-text);
	font-family: var(--br-font-body);
	font-size: 16.5px;
	font-weight: 500;
	letter-spacing: normal;
	line-height: 1.75;
	-webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5, h6 {
	font-family: var(--br-font-serif);
	color: var(--br-heading);
	font-weight: 400;
	line-height: 1.22;
	margin: 0 0 0.6em;
}

p {
	margin: 0 0 1.2em;
}

a {
	color: var(--br-accent);
	text-decoration: none;
	transition: color var(--br-transition);
}

a:hover {
	color: var(--br-accent-dark);
}

.br-container {
	max-width: var(--br-container);
	margin-inline: auto;
	padding-inline: 24px;
}

::selection {
	background: var(--br-band);
	color: var(--br-heading);
}

/* ---------- Accessibility helpers ---------- */

.screen-reader-text {
	border: 0;
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	background: var(--br-heading);
	color: #fff;
	padding: 10px 18px;
	z-index: 999;
}

.skip-link:focus {
	left: 0;
	color: #fff;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--br-accent);
	outline-offset: 2px;
}

/* ---------- Type helpers ---------- */

/* Pacifico lowercase eyebrow — the chalkboard-sign voice. */
.br-eyebrow {
	display: inline-block;
	font-family: var(--br-font-script);
	font-size: 20px;
	letter-spacing: 0.01em;
	text-transform: lowercase;
	color: var(--br-accent);
	margin-bottom: 12px;
}

.br-script-accent {
	display: block;
	font-family: var(--br-font-script);
	font-size: clamp(22px, 2.6vw, 28px);
	letter-spacing: 0.01em;
	text-transform: lowercase;
	color: var(--br-accent);
	line-height: 1.5;
	margin-bottom: 10px;
}

.br-section-heading {
	text-align: center;
	margin-bottom: 56px;
}

.br-section-heading__title {
	font-size: clamp(28px, 3.6vw, 40px);
	margin: 0;
}

/* Divider: a thin outline ring nudged off-center — the coffee-cup stain. */
.br-section-heading__rule {
	display: block;
	width: 18px;
	height: 18px;
	margin: 18px auto 0;
	background: transparent;
	border: 2px solid var(--br-accent);
	border-radius: 50%;
	transform: translateX(14px) rotate(-8deg);
	opacity: 0.7;
}

/* ---------- Buttons: espresso capsule on a saucer ring ---------- */

.br-button {
	position: relative;
	display: inline-block;
	font-family: var(--br-font-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fffbf3;
	background: var(--br-accent);
	border: none;
	border-radius: 999px;
	padding: 13px 30px;
	cursor: pointer;
	transition: background var(--br-transition);
}

/* The saucer: a 2px ring floating 3px beyond the cup's edge. */
.br-button::before {
	content: "";
	position: absolute;
	inset: -5px;
	border: 2px solid var(--br-accent);
	border-radius: 999px;
	pointer-events: none;
	transition: transform var(--br-transition), opacity var(--br-transition);
}

/* On hover the ring tightens to the cup. */
.br-button:hover {
	background: var(--br-accent-dark);
	color: #fffbf3;
}

.br-button:hover::before {
	transform: scale(0.94);
	opacity: 0.85;
}

.br-button--ghost {
	background: transparent;
	color: var(--br-accent);
}

.br-button--ghost:hover {
	background: var(--br-accent);
	color: #fffbf3;
}

.br-textlink {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	border-bottom: 2px solid var(--br-accent);
	padding-bottom: 3px;
}

/* ---------- Icons ---------- */

.br-icon {
	width: 1.05em;
	height: 1.05em;
	vertical-align: -0.18em;
}

/* ---------- Header ---------- */

.site-header {
	background: var(--br-white);
	border-bottom: 1px solid var(--br-line);
}

.br-header-top {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	padding-block: 26px;
}

.br-header-top__cta {
	justify-self: end;
}

.br-branding {
	text-align: center;
}

.br-logo-text {
	margin: 0;
	font-family: var(--br-font-script);
	font-weight: 400;
	font-size: clamp(30px, 4vw, 44px);
	letter-spacing: 0.01em;
	line-height: 1.4;
}

.br-logo-text a {
	color: var(--br-heading);
}

.custom-logo-link img {
	max-height: 90px;
	width: auto;
	margin-inline: auto;
}

.br-social {
	list-style: none;
	display: flex;
	gap: 6px;
	margin: 0;
	padding: 0;
}

.br-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	color: var(--br-heading);
	transition: background var(--br-transition), color var(--br-transition);
}

.br-social a:hover {
	background: var(--br-band);
	color: var(--br-accent-dark);
}

/* Nav */

.br-nav {
	border-top: 1px solid var(--br-line);
	background: var(--br-white);
}

.br-nav__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
}

.br-nav ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.br-nav li {
	position: relative;
}

.br-nav a {
	display: block;
	padding: 16px 18px;
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--br-heading);
}

.br-nav a:hover {
	color: var(--br-accent);
}

/* Dropdowns */

.br-nav ul ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 220px;
	background: var(--br-white);
	border: 1px solid var(--br-line);
	border-radius: 0 0 var(--br-radius) var(--br-radius);
	box-shadow: var(--br-shadow);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--br-transition), transform var(--br-transition), visibility var(--br-transition);
	z-index: 50;
	display: block;
}

.br-nav ul ul li {
	border-bottom: 1px solid var(--br-band);
}

.br-nav ul ul a {
	padding: 12px 18px;
	letter-spacing: 0.12em;
	text-transform: none;
	font-size: 14px;
}

.br-nav ul ul ul {
	top: 0;
	left: 100%;
}

.br-nav li:hover > ul,
.br-nav li:focus-within > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.br-search-toggle {
	background: none;
	border: none;
	color: var(--br-heading);
	cursor: pointer;
	padding: 10px;
	font-size: 16px;
}

.br-search-bar {
	border-top: 1px solid var(--br-line);
	padding-block: 18px;
	background: var(--br-band);
}

/* Mobile nav toggle */

.br-nav-toggle {
	display: none;
	background: none;
	border: 1px solid var(--br-line);
	border-radius: 8px;
	padding: 10px;
	cursor: pointer;
	justify-self: end;
}

.br-nav-toggle__bar {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--br-heading);
	margin: 4px 0;
	transition: transform var(--br-transition), opacity var(--br-transition);
}

.br-nav-toggle[aria-expanded="true"] .br-nav-toggle__bar:nth-child(1) {
	transform: translateY(6px) rotate(45deg);
}

.br-nav-toggle[aria-expanded="true"] .br-nav-toggle__bar:nth-child(2) {
	opacity: 0;
}

.br-nav-toggle[aria-expanded="true"] .br-nav-toggle__bar:nth-child(3) {
	transform: translateY(-6px) rotate(-45deg);
}

/* ---------- Front page: hero (full-bleed image, roaster's-stamp roundel) ---------- */

.br-hero {
	position: relative;
	display: grid;
	place-items: center;
	min-height: 660px;
	background: var(--br-band);
}

/* The roaster's stamp: a cream disc with a double solid ring inset. */
.br-hero__panel {
	position: relative;
	z-index: 2;
	width: min(460px, calc(100vw - 48px));
	aspect-ratio: 1;
	margin: 70px 24px;
	background: var(--br-white);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: clamp(36px, 8vw, 64px);
	box-shadow: 0 24px 50px -30px rgba(79, 47, 24, 0.5);
}

.br-hero__panel::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 2px solid var(--br-accent);
	border-radius: 50%;
	pointer-events: none;
}

.br-hero__panel::after {
	content: "";
	position: absolute;
	inset: 17px;
	border: 1px solid var(--br-accent);
	border-radius: 50%;
	opacity: 0.55;
	pointer-events: none;
}

.br-hero__title {
	font-size: clamp(28px, 4.2vw, 42px);
	font-weight: 400;
	margin: 0 0 24px;
}

.br-hero__media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.br-hero__media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(47, 33, 21, 0.18);
}

.br-hero__media img,
.br-hero__placeholder {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.br-hero__placeholder {
	background:
		radial-gradient(ellipse at 70% 30%, #e2cba4 0%, transparent 55%),
		radial-gradient(ellipse at 30% 80%, #d3b17f 0%, transparent 50%),
		var(--br-band);
}

/* ---------- Front page: services ---------- */

.br-services {
	padding: 96px 0 80px;
}

.br-services__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
	align-items: start;
}

.br-service {
	text-align: center;
}

.br-service:nth-child(2) {
	margin-top: 48px;
}

.br-service__media {
	position: relative;
	margin-bottom: 46px;
}

.br-service__media img,
.br-service__placeholder {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: var(--br-radius);
}

.br-service__placeholder {
	background: linear-gradient(135deg, var(--br-band), var(--br-blush));
}

/* Coaster badge: espresso disc with an inner cream ring. */
.br-service__badge {
	position: absolute;
	left: 50%;
	bottom: -28px;
	transform: translateX(-50%);
	width: 56px;
	height: 56px;
	background: var(--br-accent);
	border-radius: 50%;
	color: #fffbf3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
}

.br-service__badge::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(255, 251, 243, 0.55);
	border-radius: 50%;
}

.br-service__title {
	font-size: 24px;
	margin-bottom: 10px;
}

.br-service__text {
	color: var(--br-muted);
	max-width: 320px;
	margin-inline: auto;
}

/* ---------- Front page: about ---------- */

.br-about {
	padding: 60px 0 90px;
}

.br-about__grid {
	display: grid;
	grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
	gap: 70px;
	align-items: center;
}

.br-about__media {
	position: relative;
	padding-left: 56px;
	padding-bottom: 40px;
}

.br-about__img-main,
.br-about__placeholder {
	width: 100%;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: var(--br-radius);
	box-shadow: var(--br-shadow);
}

.br-about__placeholder {
	background: linear-gradient(160deg, var(--br-blush), var(--br-band) 70%);
}

.br-about__inset {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 46%;
	border: 8px solid var(--br-white);
	border-radius: var(--br-radius);
	overflow: hidden;
	box-shadow: var(--br-shadow);
}

.br-about__inset img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 7px;
}

.br-about__title {
	font-size: clamp(30px, 3.6vw, 44px);
	margin-bottom: 18px;
}

.br-about__text {
	color: var(--br-muted);
	margin-bottom: 30px;
}

/* ---------- Front page: category tiles ---------- */

.br-cats {
	position: relative;
	padding: 90px 0;
	background:
		url("../images/floral.svg") no-repeat right -60px top -40px / 420px auto,
		var(--br-band);
}

.br-cats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 34px;
	align-items: start;
}

.br-cat-tile {
	position: relative;
	display: block;
	aspect-ratio: 1 / 1;
	background: linear-gradient(150deg, #d8c09a, #c0a071);
	background-size: cover;
	background-position: center;
	overflow: hidden;
	border-radius: var(--br-radius);
	box-shadow: var(--br-shadow);
}

.br-cat-tile--2 {
	margin-top: 44px;
}

.br-cat-tile--3 {
	margin-top: 88px;
}

.br-cat-tile::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(47, 33, 21, 0.45);
	opacity: 0.8;
	transition: opacity var(--br-transition);
}

.br-cat-tile:hover::before {
	opacity: 1;
}

/* Stamp ring label. */
.br-cat-tile__frame {
	position: absolute;
	inset: 14px;
	border: 1px solid rgba(255, 251, 243, 0.9);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 6px;
	text-align: center;
}

.br-cat-tile__name {
	font-family: var(--br-font-serif);
	font-size: 22px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #fff;
}

.br-cat-tile__count {
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 251, 243, 0.9);
}

/* ---------- Front page: note ---------- */

.br-note {
	padding: 90px 0;
	background: var(--br-bg);
}

.br-note__inner {
	max-width: 680px;
	text-align: center;
}

.br-note__avatar img {
	width: 88px;
	height: 88px;
	border-radius: 50%;
	object-fit: cover;
	margin: 0 auto 22px;
	box-shadow: var(--br-shadow);
}

.br-note__title {
	font-size: 28px;
	color: var(--br-accent);
	margin-bottom: 16px;
}

.br-note__text {
	font-style: italic;
	color: var(--br-muted);
}

.br-note__signature {
	display: block;
	font-family: var(--br-font-script);
	font-size: 34px;
	letter-spacing: 0.01em;
	color: var(--br-accent-dark);
	margin-top: 18px;
}

/* ---------- Front page: latest ---------- */

.br-latest {
	padding: 96px 0 100px;
}

/* ---------- Page hero (blog/archive title band) ---------- */

.br-page-hero {
	background:
		linear-gradient(rgba(47, 33, 21, 0.4), rgba(47, 33, 21, 0.4)),
		linear-gradient(140deg, #d8c09a, #b6935f);
	padding: 84px 0;
}

.br-page-hero__frame {
	max-width: 560px;
	margin-inline: auto;
	border: 1px solid rgba(255, 251, 243, 0.8);
	border-radius: var(--br-radius);
	padding: 26px 30px;
	text-align: center;
}

.br-page-hero__title {
	margin: 0;
	color: #fff;
	font-size: clamp(26px, 3.4vw, 38px);
	font-weight: 400;
}

.br-page-hero__desc {
	color: rgba(255, 251, 243, 0.92);
	margin-top: 10px;
	font-size: 15px;
}

/* ---------- Content area + sidebar ---------- */

.br-content-area {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 330px;
	gap: 56px;
	padding-block: 72px;
}

.br-no-sidebar .br-content-area {
	grid-template-columns: minmax(0, 1fr);
	max-width: 900px;
}

/* ---------- Post cards ---------- */

.br-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 44px 34px;
}

.br-card-grid--three {
	grid-template-columns: repeat(3, 1fr);
}

/* Coaster card: 14px radius, double-ring inset border, no shadow. */
.br-card {
	position: relative;
	background: var(--br-white);
	border: 1px solid var(--br-line);
	border-radius: var(--br-radius);
}

/* Inner ring of the coaster, 4px inside the edge. */
.br-card::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(107, 66, 38, 0.28);
	border-radius: 10px;
	pointer-events: none;
	z-index: 1;
}

.br-card__media {
	position: relative;
	overflow: hidden;
	border-radius: 13px 13px 0 0;
}

.br-card__media img {
	width: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.br-card:hover .br-card__media img {
	transform: scale(1.035);
}

.br-card__body {
	padding: 22px 26px 26px;
}

.br-card__title {
	font-size: 22px;
	margin-bottom: 12px;
}

.br-card__title a {
	color: var(--br-heading);
}

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

.br-card__excerpt {
	color: var(--br-muted);
	font-size: 15px;
}

.br-card__excerpt p {
	margin-bottom: 18px;
}

.br-card__more {
	font-size: 11px;
	padding: 8px 20px;
}

/* Coaster date badge: rounded square, espresso fill, inner ring */

.br-date-badge {
	position: absolute;
	left: 14px;
	bottom: 14px;
	width: 56px;
	height: 56px;
	background: var(--br-accent);
	border-radius: 12px;
	color: #fffbf3;
	transform: none;
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: center;
	justify-content: center;
	padding: 0;
	z-index: 2;
}

.br-date-badge::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(255, 251, 243, 0.55);
	border-radius: 8px;
}

.br-date-badge__day,
.br-date-badge__month {
	transform: none;
	position: static;
	color: #fffbf3;
	line-height: 1;
}

.br-date-badge__day {
	font-family: var(--br-font-serif);
	font-size: 19px;
	margin: 0;
}

.br-date-badge__month {
	font-weight: 600;
	font-size: 9px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 251, 243, 0.85);
}

/* Format badge */

.br-format-badge {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(47, 33, 21, 0.65);
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(2px);
}

/* Entry meta */

.br-entry-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 18px;
	font-size: 12.5px;
	letter-spacing: 0.06em;
	color: var(--br-muted);
	margin-bottom: 14px;
}

.br-entry-meta a {
	color: var(--br-muted);
}

.br-entry-meta a:hover {
	color: var(--br-accent);
}

.br-entry-meta .br-icon {
	color: var(--br-accent);
	margin-right: 4px;
}

/* ---------- Single post ---------- */

.br-single__header {
	text-align: center;
	margin-bottom: 34px;
}

.br-single__cats a {
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: 0.26em;
	text-transform: uppercase;
	margin: 0 6px;
}

.br-single__title {
	font-size: clamp(30px, 4vw, 46px);
	margin: 10px 0 16px;
}

.br-single__header .br-entry-meta {
	justify-content: center;
}

.br-single__media {
	position: relative;
	margin-bottom: 40px;
}

.br-single__media img {
	border-radius: var(--br-radius);
}

.br-single__media .br-date-badge {
	bottom: 14px;
}

.entry-content {
	font-size: 17px;
}

.entry-content h2,
.entry-content h3 {
	margin-top: 1.6em;
}

.entry-content blockquote {
	border: none;
	position: relative;
	margin: 2.2em 0;
	padding: 30px 40px;
	background: var(--br-band);
	border-radius: var(--br-radius);
	font-family: var(--br-font-serif);
	font-size: 20px;
	font-style: normal;
	color: var(--br-heading);
}

.entry-content blockquote::before {
	content: "”";
	position: absolute;
	top: -22px;
	left: 20px;
	font-family: var(--br-font-serif);
	font-size: 90px;
	color: var(--br-accent);
	opacity: 0.4;
}

.entry-content blockquote p {
	margin-bottom: 0;
}

.entry-content img {
	border-radius: var(--br-radius);
	box-shadow: var(--br-shadow);
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text,
.wp-element-caption {
	font-size: 13px;
	color: var(--br-muted);
	text-align: center;
	margin-top: 8px;
}

.alignwide {
	margin-inline: -40px;
	max-width: calc(100% + 80px);
}

.alignfull {
	margin-inline: calc(50% - 50vw);
	max-width: 100vw;
}

/* Tags + author box */

.br-single__tags {
	margin: 34px 0;
}

.br-single__tags a {
	display: inline-block;
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	border: 1px solid var(--br-line);
	border-radius: 999px;
	padding: 6px 16px;
	margin: 0 8px 8px 0;
	color: var(--br-muted);
}

.br-single__tags a:hover {
	border-color: var(--br-accent);
	color: var(--br-accent);
}

.br-author-box {
	display: flex;
	gap: 26px;
	align-items: center;
	background: var(--br-band);
	border-radius: var(--br-radius);
	padding: 30px;
	margin-top: 26px;
}

.br-author-box__avatar img {
	border-radius: 50%;
}

.br-author-box__name {
	margin: 2px 0 6px;
	font-size: 22px;
}

.br-author-box__bio {
	margin: 0;
	color: var(--br-muted);
	font-size: 15px;
}

/* Prev/next */

.br-post-nav {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	border-top: 1px solid var(--br-line);
	border-bottom: 1px solid var(--br-line);
	padding: 22px 0;
	margin: 44px 0;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

/* ---------- Comments ---------- */

.comments-area {
	margin-top: 30px;
}

.comments-title,
.comment-reply-title {
	font-size: 26px;
	text-align: center;
}

.comment-list {
	list-style: none;
	padding: 0;
}

.comment-list .comment-body {
	border: 1px solid var(--br-line);
	border-radius: var(--br-radius);
	background: var(--br-white);
	padding: 24px;
	margin-bottom: 22px;
}

.comment-list .children {
	list-style: none;
	padding-left: 40px;
}

.comment-author .avatar {
	border-radius: 50%;
	float: left;
	margin-right: 14px;
}

.comment-metadata {
	font-size: 12px;
	color: var(--br-muted);
}

.comment-metadata a {
	color: var(--br-muted);
}

.reply a {
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.comment-form label {
	display: block;
	font-weight: 600;
	font-size: 12.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	margin-bottom: 6px;
	color: var(--br-heading);
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%;
	border: 1px solid var(--br-line);
	border-radius: 10px;
	background: var(--br-white);
	padding: 12px 14px;
	font-family: var(--br-font-body);
	font-size: 15px;
	color: var(--br-text);
	margin-bottom: 16px;
}

.comment-form .submit {
	position: relative;
	display: inline-block;
	font-family: var(--br-font-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #fffbf3;
	background: var(--br-accent);
	border: 1px solid var(--br-accent);
	border-radius: 999px;
	padding: 13px 30px;
	cursor: pointer;
	transition: background var(--br-transition);
}

.comment-form .submit:hover {
	background: var(--br-accent-dark);
	border-color: var(--br-accent-dark);
}

/* ---------- Search form ---------- */

.br-searchform {
	display: flex;
	border: 1px solid var(--br-line);
	border-radius: 999px;
	overflow: hidden;
	background: var(--br-white);
	max-width: 460px;
}

.br-searchform__field {
	flex: 1;
	border: none;
	background: transparent;
	padding: 12px 18px;
	font-family: var(--br-font-body);
	font-size: 15px;
	color: var(--br-text);
}

.br-searchform__field:focus {
	outline: none;
}

.br-searchform__submit {
	border: none;
	background: var(--br-accent);
	color: #fffbf3;
	padding: 0 18px;
	cursor: pointer;
	transition: background var(--br-transition);
}

.br-searchform__submit:hover {
	background: var(--br-accent-dark);
}

/* ---------- Widgets ---------- */

.widget {
	background: var(--br-white);
	border: 1px solid var(--br-line);
	border-radius: var(--br-radius);
	padding: 28px;
	margin-bottom: 34px;
}

.widget-title {
	font-size: 19px;
	margin-bottom: 22px;
	position: relative;
	padding-left: 26px;
}

/* Cup-stain ring bullet. */
.widget-title::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -7px;
	width: 14px;
	height: 14px;
	border: 2px solid var(--br-accent);
	border-radius: 50%;
	background: transparent;
}

.widget ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.widget ul li {
	padding: 8px 0;
	border-bottom: 1px solid var(--br-band);
	font-size: 15px;
}

.widget ul li:last-child {
	border-bottom: none;
}

.widget ul li a {
	color: var(--br-text);
}

.widget ul li a:hover {
	color: var(--br-accent);
}

/* About widget */

.br-about-widget {
	text-align: center;
}

.br-about-widget__image img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	border-radius: var(--br-radius);
	margin-bottom: 18px;
}

.br-about-widget__name {
	font-size: 21px;
	margin-bottom: 2px;
}

.br-about-widget__role {
	display: block;
	font-weight: 600;
	font-size: 11.5px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--br-accent);
	margin-bottom: 12px;
}

.br-about-widget__bio {
	color: var(--br-muted);
	font-size: 14.5px;
}

/* Mini posts widget */

.br-mini-posts .br-mini-post {
	display: flex;
	gap: 14px;
	align-items: center;
	padding: 10px 0;
}

.br-mini-post__thumb img {
	width: 68px;
	height: 68px;
	object-fit: cover;
	border-radius: 10px;
}

.br-mini-post__title {
	display: block;
	font-family: var(--br-font-serif);
	font-size: 15.5px;
	line-height: 1.35;
	color: var(--br-heading);
}

.br-mini-post__title:hover {
	color: var(--br-accent);
}

.br-mini-post__date {
	font-size: 12px;
	color: var(--br-muted);
}

/* Photo grid widget */

.br-photo-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.br-photo-grid img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 10px;
	transition: opacity var(--br-transition);
}

.br-photo-grid img:hover {
	opacity: 0.8;
}

.br-photo-grid__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--br-heading);
}

/* ---------- Pagination ---------- */

.pagination,
.navigation.pagination {
	margin-top: 56px;
}

.nav-links {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8px;
}

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding-inline: 12px;
	border: 1px solid var(--br-line);
	border-radius: 999px;
	color: var(--br-heading);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.1em;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
	background: var(--br-accent);
	border-color: var(--br-accent);
	color: #fffbf3;
}

/* ---------- 404 / none ---------- */

.br-none {
	text-align: center;
	padding: 60px 20px;
}

.br-none .br-searchform {
	margin: 26px auto;
}

.br-404__code {
	font-size: clamp(90px, 14vw, 160px);
	line-height: 1;
	color: var(--br-blush);
	-webkit-text-stroke: 1px var(--br-accent);
	margin-bottom: 0;
}

.br-none .br-button {
	margin-top: 10px;
}

/* ---------- Footer ---------- */

.site-footer {
	background: var(--br-heading);
	color: #cbbca9;
	margin-top: 40px;
}

.br-front + .site-footer,
.br-fullwidth + .site-footer {
	margin-top: 0;
}

.br-footer-widgets {
	padding: 70px 0 50px;
}

.br-footer-widgets__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 50px;
}

.site-footer .widget {
	background: transparent;
	border: none;
	padding: 0;
	margin-bottom: 30px;
}

.site-footer .widget-title {
	color: #fffbf3;
	font-size: 20px;
}

.site-footer .widget ul li {
	border-color: rgba(255, 251, 243, 0.1);
}

.site-footer .widget a {
	color: #cbbca9;
}

.site-footer .widget a:hover {
	color: #fffbf3;
}

.site-footer .br-photo-grid__link {
	color: #fffbf3;
}

.site-footer .br-social a {
	color: #cbbca9;
}

.site-footer .br-social a:hover {
	background: rgba(255, 251, 243, 0.1);
	color: #fffbf3;
}

.br-footer-bottom {
	border-top: 1px solid rgba(255, 251, 243, 0.12);
	padding: 22px 0;
}

.br-footer-bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	flex-wrap: wrap;
}

.br-footer-credit {
	margin: 0;
	font-size: 13.5px;
}

/* Back to top */

.br-to-top {
	position: fixed;
	right: 26px;
	bottom: 26px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: none;
	background: var(--br-accent);
	color: #fffbf3;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity var(--br-transition), transform var(--br-transition), visibility var(--br-transition);
	z-index: 90;
	box-shadow: var(--br-shadow);
}

.br-to-top.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* ---------- WooCommerce light touch ---------- */

.br-woo {
	padding-block: 60px;
}

.br-woo ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--br-font-serif);
	font-size: 19px;
}

.br-woo .button,
.woocommerce .br-woo a.button {
	background: var(--br-accent);
	color: #fffbf3;
	border-radius: 999px;
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px) {
	.br-card-grid--three {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 960px) {
	.br-content-area {
		grid-template-columns: minmax(0, 1fr);
	}

	.br-hero {
		min-height: 540px;
	}

	.br-hero__panel {
		margin: 60px 24px;
	}

	.br-services__grid,
	.br-cats__grid {
		grid-template-columns: 1fr;
		max-width: 460px;
		margin-inline: auto;
	}

	.br-service:nth-child(2),
	.br-cat-tile--2,
	.br-cat-tile--3 {
		margin-top: 0;
	}

	.br-about__grid {
		grid-template-columns: 1fr;
		gap: 46px;
	}

	.br-footer-widgets__grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.br-header-top {
		grid-template-columns: auto 1fr auto;
		padding-block: 18px;
	}

	.br-header-top__social {
		display: none;
	}

	.br-header-top__cta {
		display: none;
	}

	.br-branding {
		text-align: left;
	}

	.br-nav-toggle {
		display: block;
	}

	.br-nav {
		display: none;
	}

	.br-nav.is-open {
		display: block;
	}

	.br-nav__inner {
		flex-direction: column;
		align-items: stretch;
	}

	.br-nav ul {
		flex-direction: column;
	}

	.br-nav a {
		padding: 13px 6px;
		border-bottom: 1px solid var(--br-band);
	}

	.br-nav ul ul {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		border: none;
		box-shadow: none;
		background: var(--br-band);
		min-width: 0;
	}

	.br-card-grid,
	.br-card-grid--three {
		grid-template-columns: 1fr;
	}

	.br-author-box {
		flex-direction: column;
		text-align: center;
	}

	.br-post-nav {
		flex-direction: column;
		text-align: center;
	}

	.alignwide {
		margin-inline: 0;
		max-width: 100%;
	}
}

/* ---------- WordPress core classes ---------- */

.sticky .br-card__title::after {
	content: "★";
	color: var(--br-accent);
	font-size: 0.6em;
	vertical-align: super;
	margin-left: 6px;
}

.gallery-caption {
	font-size: 13px;
	color: var(--br-muted);
	text-align: center;
}

.bypostauthor > .comment-body {
	border-left: 2px solid var(--br-accent);
}

.alignleft {
	float: left;
	margin: 0.5em 1.5em 1em 0;
}

.alignright {
	float: right;
	margin: 0.5em 0 1em 1.5em;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after {
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

/* ===== Premium sections (v1.1.0) ===== */

/* ---------- Numbered service cards ---------- */

.br-service {
	position: relative;
}

.br-service__num {
	/* Sits in the flow above the title. It used to be absolutely positioned
	   inside a card that was not a positioning context, so it anchored to the
	   section and was painted behind the photograph. */
	display: block;
	font-family: var(--br-font-script);
	font-size: 20px;
	letter-spacing: 0.02em;
	line-height: 1.4;
	color: var(--br-accent);
	margin-bottom: 12px;
}

/* ---------- Portfolio ---------- */

.br-portfolio {
	padding: 96px 0;
}

.br-portfolio__grid {
	/* CSS columns, not CSS grid. A 3-column grid of 2 tall + 4 short tiles needs
	   8 cells but offers 9, so one interior cell is always left empty. Columns
	   pack 3, 4 or 6 tiles with no hole. */
	columns: 3;
	column-gap: 22px;
	margin-bottom: -22px;
}

.br-portfolio__tile {
	position: relative;
	margin: 0 0 22px;
	break-inside: avoid;
	overflow: hidden;
	border-radius: var(--br-radius);
	background: linear-gradient(150deg, var(--br-band), var(--br-blush));
}

/* Coaster ring over each tile. */
.br-portfolio__tile::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(255, 251, 243, 0.6);
	border-radius: 10px;
	pointer-events: none;
	z-index: 1;
}

.br-portfolio__media {
	display: block;
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
}

.br-portfolio__tile--tall .br-portfolio__media {
	aspect-ratio: 3 / 4;
}
.br-portfolio__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--br-transition);
}

.br-portfolio__tile:hover .br-portfolio__media img {
	transform: scale(1.04);
}

.br-portfolio__actions {
	text-align: center;
	margin-top: 44px;
}

/* ---------- Reviews ---------- */

.br-reviews {
	padding: 96px 0;
	background: var(--br-band);
}

.br-reviews__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

/* Coaster review cards. */
.br-review {
	position: relative;
	background: var(--br-white);
	border: 1px solid var(--br-line);
	border-radius: var(--br-radius);
	padding: 38px 32px 34px;
	text-align: center;
}

.br-review::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(107, 66, 38, 0.28);
	border-radius: 10px;
	pointer-events: none;
}

.br-review__avatar {
	display: block;
	width: 72px;
	height: 72px;
	margin: 0 auto 16px;
	border-radius: 50%;
	overflow: hidden;
	border: 3px solid var(--br-band);
	box-shadow: var(--br-shadow);
}

.br-review__avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.br-review__quote {
	display: block;
	font-family: var(--br-font-serif);
	font-size: 60px;
	line-height: 0.6;
	color: var(--br-accent);
	opacity: 0.35;
}

.br-review__text {
	font-style: italic;
	color: var(--br-text);
	margin: 14px 0 20px;
}

.br-review__name {
	display: block;
	font-family: var(--br-font-serif);
	font-size: 19px;
	color: var(--br-heading);
}

.br-review__role {
	display: block;
	margin-top: 4px;
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--br-muted);
}

/* ---------- Pricing ---------- */

.br-pricing {
	padding: 96px 0;
}

.br-pricing__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	align-items: start;
}

/* Coaster plan cards. */
.br-plan {
	position: relative;
	background: var(--br-white);
	border: 1px solid var(--br-line);
	border-radius: var(--br-radius);
	padding: 44px 34px;
	text-align: center;
	transition: transform var(--br-transition);
}

.br-plan::after {
	content: "";
	position: absolute;
	inset: 4px;
	border: 1px solid rgba(107, 66, 38, 0.28);
	border-radius: 10px;
	pointer-events: none;
}

.br-plan--featured {
	border: 2px solid var(--br-accent);
	box-shadow: var(--br-shadow);
	transform: scale(1.04);
	z-index: 1;
}

.br-plan__name {
	font-size: 22px;
	margin-bottom: 8px;
}

.br-plan__amount {
	font-family: var(--br-font-serif);
	font-size: 40px;
	line-height: 1;
	color: var(--br-accent);
	margin-bottom: 26px;
}

.br-plan__features {
	list-style: none;
	margin: 0 0 30px;
	padding: 0;
	text-align: left;
}

.br-plan__features li {
	position: relative;
	padding: 9px 0 9px 26px;
	border-bottom: 1px solid var(--br-band);
	color: var(--br-text);
	font-size: 15px;
}

.br-plan__features li:last-child {
	border-bottom: none;
}

.br-plan__features li::before {
	content: "\2713";
	position: absolute;
	left: 2px;
	color: var(--br-accent);
	font-weight: 700;
}

/* ---------- CTA banner ---------- */

.br-cta-banner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 460px;
	overflow: hidden;
	text-align: center;
}

.br-cta-banner__img,
.br-cta-banner__placeholder {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.br-cta-banner__placeholder {
	background: linear-gradient(150deg, var(--br-blush), var(--br-band));
}

/* Warm espresso overlay tuned for WCAG-AA white text over any image. */
.br-cta-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(rgba(47, 33, 21, 0.62), rgba(47, 33, 21, 0.78));
}

.br-cta-banner__content {
	position: relative;
	z-index: 1;
	max-width: 640px;
	padding: 60px 24px;
	color: #fff;
}

.br-cta-banner .br-eyebrow {
	color: var(--br-band);
}

.br-cta-banner__title {
	color: #fff;
	font-size: clamp(30px, 4vw, 48px);
	margin-bottom: 16px;
}

.br-cta-banner__text {
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 30px;
}

/* Cream cup on the dark banner. */
.br-cta-banner .br-button {
	background: var(--br-white);
	color: var(--br-accent-dark);
}

.br-cta-banner .br-button::before {
	border-color: var(--br-white);
}

.br-cta-banner .br-button:hover {
	background: var(--br-band);
	color: var(--br-accent-dark);
}

/* ---------- Instagram strip ---------- */

.br-insta {
	padding: 84px 0 0;
}

.br-insta__head {
	text-align: center;
	margin-bottom: 34px;
	padding-inline: 24px;
}

.br-insta__title {
	font-size: clamp(26px, 3.2vw, 36px);
	margin-bottom: 6px;
}

.br-insta__handle {
	display: inline-block;
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--br-accent);
}

.br-insta__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0;
}

.br-insta__tile {
	position: relative;
	display: block;
	overflow: hidden;
}

.br-insta__tile img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.br-insta__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(47, 33, 21, 0.5);
	color: #fff;
	opacity: 0;
	transition: opacity var(--br-transition);
}

.br-insta__overlay .br-icon {
	width: 26px;
	height: 26px;
}

.br-insta__tile:hover .br-insta__overlay,
.br-insta__tile:focus-visible .br-insta__overlay {
	opacity: 1;
}

/* ---------- Footer newsletter band ---------- */

.br-newsletter {
	background: var(--br-accent);
	color: #fffbf3;
	padding: 56px 0;
}

.br-newsletter__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 34px;
	flex-wrap: wrap;
}

.br-newsletter__intro {
	flex: 1 1 320px;
}

.br-newsletter__title {
	color: #fffbf3;
	font-size: 28px;
	margin-bottom: 6px;
}

.br-newsletter__text {
	margin: 0;
	color: rgba(255, 251, 243, 0.9);
}

.br-newsletter__form {
	display: flex;
	flex: 1 1 360px;
	gap: 12px;
	flex-wrap: wrap;
}

.br-newsletter__input {
	flex: 1 1 220px;
	border: 1px solid var(--br-white);
	border-radius: 999px;
	background: var(--br-white);
	padding: 13px 20px;
	font-family: var(--br-font-body);
	font-size: 15px;
	color: var(--br-text);
}

/* Cream cup on the espresso band. */
.br-newsletter .br-button {
	background: var(--br-white);
	color: var(--br-accent-dark);
}

.br-newsletter .br-button::before {
	border-color: var(--br-white);
}

.br-newsletter .br-button:hover {
	background: var(--br-band);
	color: var(--br-accent-dark);
}

/* ---------- Premium sections: responsive ---------- */

@media (max-width: 860px) {
	.br-portfolio__grid {
		/* Two columns of three tiles cannot balance a 3-tall / 3-short mix:
		   one column always takes two tall tiles and ends ~200px lower. Give
		   every tile the same ratio here so the columns stay flush. */
		columns: 2;
	}

	.br-portfolio__tile--tall .br-portfolio__media {
		aspect-ratio: 4 / 3;
	}

	.br-reviews__grid,
	.br-pricing__grid {
		grid-template-columns: 1fr;
		max-width: 440px;
		margin-inline: auto;
	}

	.br-plan--featured {
		transform: none;
	}

	.br-insta__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media (max-width: 700px) {
	.br-newsletter__inner {
		flex-direction: column;
		align-items: stretch;
		text-align: center;
	}

	.br-newsletter__form {
		justify-content: center;
	}
}

@media (max-width: 560px) {
	.br-portfolio__grid {
		columns: 1;
	}

	.br-portfolio__tile--tall .br-portfolio__media {
		aspect-ratio: 4 / 3;
	}
}

@media (max-width: 480px) {
	.br-insta__grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.br-hero__title {
		font-size: 24px;
		margin-bottom: 16px;
	}

	.br-hero .br-eyebrow {
		font-size: 17px;
		margin-bottom: 6px;
	}
}


/* ---------- Tap targets ---------- */

/* Capsule buttons already clear 44px; the card 'Read More' is a smaller
   capsule, so grow its padding until the touch area reaches the platform
   minimum while the label stays visually centered. */
.br-card__more {
	padding-top: 13px;
	padding-bottom: 13px;
}

/* ===== End premium sections ===== */
