/* ==========================================================================
   Gentle Glow — main styles
   Palette and shapes come from the logo and the printed cards:
   black, gold, a little lotus rose, arches and double-line frames.
   ========================================================================== */

/* Fonts (self-hosted: no requests to Google, which matters under the AVG) */
@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond-latin-wght-normal.woff2") format("woff2");
	font-weight: 300 700;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
	font-family: "Cormorant Garamond";
	src: url("../fonts/cormorant-garamond-latin-wght-italic.woff2") format("woff2");
	font-weight: 300 700;
	font-style: italic;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
	font-family: "Jost";
	src: url("../fonts/jost-latin-wght-normal.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}
@font-face {
	font-family: "Great Vibes";
	src: url("../fonts/great-vibes-latin-400-normal.woff2") format("woff2");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2212;
}

/* Tokens */
:root {
	--gg-black: #faf3e6;
	--gg-ink: #f3e9d6;
	--gg-ink-2: #efe2c9;
	--gg-line: #d9c49a;
	--gg-gold: #a3742c;
	--gg-gold-hi: #7d5a20;
	--gg-gold-mid: #8f6528;
	--gg-gold-deep: #6b4c1c;
	--gg-gold-border: #a3742c;
	--gg-rose: #b96a4f;
	--gg-text: #2c2013;
	--gg-text-hi: #1a1409;
	--gg-muted: #6b5a3f;
	--gg-danger: #a13f2c;

	--gg-gold-grad: linear-gradient(180deg, #7d5a20 0%, #8f6528 52%, #a3742c 100%);
	--gg-btn-grad: linear-gradient(180deg, #3a2a10 0%, #241a09 100%);
	--gg-btn-text: #faf3e6;

	--gg-serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
	--gg-sans: Jost, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
	--gg-script: "Great Vibes", "Snell Roundhand", cursive;

	--gg-radius: 2px;
	--gg-header-h: 7.5rem;

	color-scheme: light;
}

/* Dark scheme — toggled via data-theme="dark" on <html> (see theme.js) */
:root[data-theme="dark"] {
	--gg-black: #000;
	--gg-ink: #0d0906;
	--gg-ink-2: #17110b;
	--gg-line: #33270f;
	--gg-gold: #e9c888;
	--gg-gold-hi: #ffe4ac;
	--gg-gold-mid: #dcb063;
	--gg-gold-deep: #b98a3e;
	--gg-gold-border: #c9994a;
	--gg-rose: #e79e6e;
	--gg-text: #efe3cc;
	--gg-text-hi: #f8eed9;
	--gg-muted: #b8a98f;
	--gg-danger: #ee8f7d;

	--gg-gold-grad: linear-gradient(180deg, #fff0c9 0%, #e8c27a 52%, #bf9147 100%);
	--gg-btn-grad: linear-gradient(180deg, #f7dfa4 0%, #dcb063 100%);
	--gg-btn-text: #1b1206;

	color-scheme: dark;
}
:root[data-theme="dark"] select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23e9c888' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Reset-ish base */
*,
*::before,
*::after { box-sizing: border-box; }

html { font-size: 106.25%; -webkit-text-size-adjust: 100%; scroll-padding-top: 6rem; }

body {
	margin: 0;
	background: var(--gg-black);
	color: var(--gg-text);
	font: 400 1rem/1.65 var(--gg-sans);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}
.site-main { flex: 1 0 auto; }
html.nav-open { overflow: hidden; }

img, svg, video { max-width: 100%; height: auto; }
img { display: block; }
.gg-icon { width: 1.5rem; height: 1.5rem; flex: none; }

h1, h2, h3, h4, h5, h6 {
	font-family: var(--gg-serif);
	font-weight: 500;
	line-height: 1.1;
	letter-spacing: -0.005em;
	color: var(--gg-text-hi);
	margin: 0 0 0.6em;
	text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 4.6vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.45rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.3rem; }
p { margin: 0 0 1.1em; }

a { color: var(--gg-gold); text-underline-offset: 0.22em; text-decoration-thickness: 1px; }
a:hover { color: var(--gg-gold-hi); }

:focus-visible { outline: 2px solid var(--gg-gold-hi); outline-offset: 3px; border-radius: 1px; }

::selection { background: var(--gg-gold); color: var(--gg-btn-text); }

hr { border: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gg-gold-border), transparent); margin: 2.5rem 0; }

.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px; margin: -1px; padding: 0; border: 0;
	overflow: hidden; clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip-link:focus {
	clip: auto; clip-path: none; width: auto; height: auto; margin: 0;
	position: fixed; top: 0.75rem; left: 0.75rem; z-index: 1000;
	background: var(--gg-gold); color: #000; padding: 0.75rem 1.25rem; text-decoration: none;
}

.gg-container { width: min(100% - 2.5rem, 78rem); margin-inline: auto; }

/* Brand devices ---------------------------------------------------------- */

/* Double-line frame, as on the printed cards */
.framed {
	position: relative;
	border: 1px solid var(--gg-gold-border);
	background: linear-gradient(180deg, var(--gg-ink), var(--gg-black));
}
.framed::before {
	content: "";
	position: absolute; inset: 6px;
	border: 1px solid rgba(201, 153, 74, 0.35);
	pointer-events: none;
}

/* Line, heart, line */
.gg-ornament { display: flex; align-items: center; justify-content: center; gap: 0.9rem; color: var(--gg-gold); }
.gg-ornament i { height: 1px; width: clamp(3rem, 9vw, 6.5rem); background: linear-gradient(90deg, transparent, var(--gg-gold-border)); }
.gg-ornament i:last-child { transform: scaleX(-1); }
.gg-ornament .gg-icon { width: 1.05rem; height: 1.05rem; fill: rgba(233, 200, 136, 0.18); stroke-width: 1.5; }

/* Script line (the tagline from the logo family) */
.script-line {
	font-family: var(--gg-script);
	font-size: clamp(1.9rem, 3vw, 2.5rem);
	line-height: 1.25;
	margin: 0;
	color: var(--gg-gold);
	background: var(--gg-gold-grad);
	-webkit-background-clip: text; background-clip: text;
	-webkit-text-fill-color: transparent;
	padding-bottom: 0.15em;
}

/* Buttons ---------------------------------------------------------------- */
.button,
.wp-block-button__link,
.wp-element-button {
	display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
	min-height: 3rem;
	padding: 0.7rem 1.8rem;
	font: 500 0.95rem/1.2 var(--gg-sans);
	letter-spacing: 0.05em;
	text-decoration: none; text-align: center;
	border: 1px solid var(--gg-gold-border);
	border-radius: var(--gg-radius);
	background: transparent; color: var(--gg-gold);
	cursor: pointer;
	transition: background-color 0.2s, color 0.2s, box-shadow 0.25s, border-color 0.2s;
}
.button:hover,
.wp-block-button__link:hover,
.wp-element-button:hover { background: rgba(233, 200, 136, 0.12); color: var(--gg-gold-hi); border-color: var(--gg-gold-hi); }

.button--primary,
.wp-block-button__link:not(.has-background) {
	background: var(--gg-btn-grad); color: var(--gg-btn-text); border-color: var(--gg-gold);
}
.button--primary:hover,
.wp-block-button__link:not(.has-background):hover {
	background: linear-gradient(180deg, #ffeab8 0%, #e8bd6d 100%); color: #000;
	box-shadow: 0 0 28px rgba(233, 190, 110, 0.38);
}
.button--ghost { background: transparent; color: var(--gg-gold); }
.wp-block-button.is-style-outline .wp-block-button__link { background: transparent; color: var(--gg-gold); }

/* Forms ------------------------------------------------------------------ */
input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"],
input[type="search"], input[type="number"], input[type="date"], textarea, select {
	width: 100%;
	min-height: 3rem;
	padding: 0.7rem 1rem;
	background: var(--gg-ink);
	color: var(--gg-text-hi);
	border: 1px solid #45351a;
	border-radius: var(--gg-radius);
	font: inherit;
	transition: border-color 0.2s, box-shadow 0.2s;
}
textarea { min-height: 8rem; resize: vertical; }
select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5l5-5' fill='none' stroke='%23a3742c' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat; background-position: right 1rem center; background-size: 0.75rem;
	padding-right: 2.5rem;
}
input:focus, textarea:focus, select:focus {
	outline: none; border-color: var(--gg-gold);
	box-shadow: 0 0 0 3px rgba(233, 200, 136, 0.2);
}
::placeholder { color: #8d7f68; opacity: 1; }
input[type="checkbox"], input[type="radio"] { accent-color: var(--gg-gold); width: 1.1rem; height: 1.1rem; }
label { display: inline-block; }

/* Announcement bar ------------------------------------------------------- */
.announcement {
	background: var(--gg-ink-2);
	border-bottom: 1px solid var(--gg-line);
	text-align: center;
	font-size: 0.85rem; letter-spacing: 0.07em;
	color: var(--gg-gold);
}
.announcement p { margin: 0; padding: 0.5rem 1rem; }

/* Header ----------------------------------------------------------------- */
.site-header {
	position: sticky; top: 0; z-index: 50;
	background: color-mix(in srgb, var(--gg-black) 94%, transparent);
	-webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.site-header::after {
	content: "";
	position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
	background: linear-gradient(90deg, transparent, rgba(201, 153, 74, 0.85) 18%, rgba(201, 153, 74, 0.85) 82%, transparent);
}
.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar .site-header { top: 46px; } }

.site-header__inner {
	display: grid; grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr); align-items: center;
	padding-block: 0.4rem;
	position: relative;
}
.site-logo { line-height: 0; }
.site-logo .custom-logo-link { display: block; }
.site-logo img, .site-logo .custom-logo { height: 6.5rem; width: auto; transition: height 0.25s ease; }
.site-header.is-scrolled .site-logo img { height: 4rem; }

.primary-nav .menu, .primary-nav .sub-menu { list-style: none; margin: 0; padding: 0; }
.primary-nav .menu { display: flex; flex-wrap: wrap; gap: 0.25rem 2rem; }
.primary-nav .menu-item { position: relative; }
.primary-nav a {
	display: block; position: relative;
	padding: 0.6rem 0;
	color: var(--gg-text); text-decoration: none;
	font-size: 1rem; letter-spacing: 0.03em;
}
.primary-nav a::after {
	content: ""; position: absolute; left: 0; right: 0; bottom: 0.25rem; height: 1px;
	background: var(--gg-gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.primary-nav a:hover, .primary-nav .current-menu-item > a, .primary-nav .current-menu-ancestor > a { color: var(--gg-gold-hi); }
.primary-nav a:hover::after, .primary-nav .current-menu-item > a::after { transform: scaleX(1); }

.primary-nav .sub-menu {
	position: absolute; left: -1rem; top: 100%; min-width: 14rem; z-index: 5;
	background: var(--gg-black); border: 1px solid var(--gg-gold-border); padding: 0.5rem 1rem;
	opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.primary-nav .menu-item:hover > .sub-menu,
.primary-nav .menu-item:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.primary-nav .sub-menu a { padding: 0.5rem 0; white-space: nowrap; }

.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 0.1rem; }
.header-actions__btn {
	position: relative; display: grid; place-items: center;
	width: 2.75rem; height: 2.75rem; padding: 0;
	background: none; border: 0; color: var(--gg-text); cursor: pointer;
	transition: color 0.2s;
}
.header-actions__btn:hover, .header-actions__btn[aria-expanded="true"] { color: var(--gg-gold-hi); }
.gg-cart-count {
	position: absolute; top: 0.15rem; right: 0.05rem;
	min-width: 1.2rem; height: 1.2rem; padding: 0 0.3rem;
	display: grid; place-items: center;
	background: var(--gg-gold); color: #000; border-radius: 999px;
	font: 600 0.7rem/1 var(--gg-sans);
}
.gg-cart-count.is-empty { display: none; }

/* Light/dark toggle: two icons, only the relevant one shown */
.theme-toggle .gg-icon--moon { display: block; }
.theme-toggle .gg-icon--sun { display: none; }
:root[data-theme="dark"] .theme-toggle .gg-icon--moon { display: none; }
:root[data-theme="dark"] .theme-toggle .gg-icon--sun { display: block; }

.nav-toggle {
	display: none; width: 2.75rem; height: 2.75rem; padding: 0; place-items: center;
	background: none; border: 0; color: var(--gg-text); cursor: pointer;
}
.nav-toggle__close { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
.nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.search-panel { border-top: 1px solid var(--gg-line); background: var(--gg-black); padding: 1rem 0 1.25rem; }
.search-panel[hidden] { display: none; }
.search-form { display: flex; gap: 0.6rem; max-width: 40rem; margin-inline: auto; }
.search-form .search-field { flex: 1; }

@media (max-width: 1023px) {
	:root { --gg-header-h: 5.5rem; }
	.nav-toggle { display: grid; justify-self: start; }
	.site-logo img, .site-logo .custom-logo { height: 5rem; }
	.site-header.is-scrolled .site-logo img { height: 3.5rem; }
	.site-header__inner { position: static; }
	.header-actions__btn, .nav-toggle { width: 2.5rem; height: 2.5rem; }
	.primary-nav {
		position: absolute; left: 0; right: 0; top: 100%;
		background: var(--gg-black); border-top: 1px solid var(--gg-line); border-bottom: 1px solid var(--gg-gold-border);
		padding: 0.5rem 1.25rem 1.25rem;
		max-height: calc(100vh - 7rem); overflow-y: auto;
		display: none;
	}
	.primary-nav.is-open { display: block; }
	.primary-nav .menu { flex-direction: column; gap: 0; }
	.primary-nav a { padding: 0.9rem 0; font-family: var(--gg-serif); font-size: 1.5rem; border-bottom: 1px solid var(--gg-line); }
	.primary-nav a::after { display: none; }
	.primary-nav .sub-menu { position: static; opacity: 1; visibility: visible; transform: none; border: 0; padding: 0 0 0 1rem; min-width: 0; background: none; }
	.primary-nav .sub-menu a { font-size: 1.2rem; }
}

/* Hero ------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 5.5rem); }
.hero::before {
	content: ""; position: absolute; inset: 0; pointer-events: none;
	background: radial-gradient(52% 70% at 74% 48%, rgba(233, 166, 74, 0.17), transparent 72%);
}
.hero__inner {
	position: relative;
	display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: clamp(2rem, 6vw, 6rem); align-items: center;
}
.hero__title {
	font-size: clamp(2.7rem, 5.2vw, 4.6rem); line-height: 1.03; letter-spacing: -0.012em;
	margin: 0 0 1.4rem; max-width: 15ch;
	color: var(--gg-gold);
	background: var(--gg-gold-grad);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
	padding-bottom: 0.08em;
}
.hero__text { font-size: 1.22rem; line-height: 1.6; max-width: 30rem; color: var(--gg-muted); margin-bottom: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.1rem; }
.hero__script { margin-top: clamp(2rem, 4vw, 3.2rem); }

.hero-visual { justify-self: center; width: min(100%, 28rem); }
.hero-candle { display: block; width: 100%; height: auto; filter: drop-shadow(0 0 60px rgba(233, 160, 70, 0.2)); }
.hero-candle__flame { transform-box: fill-box; transform-origin: 50% 100%; animation: gg-flicker 3.4s ease-in-out infinite; }
.hero-candle__glow { animation: gg-breathe 3.4s ease-in-out infinite; }
@keyframes gg-flicker {
	0%, 100% { transform: scale(1, 1) skewX(0deg); }
	28% { transform: scale(0.965, 1.035) skewX(-1.4deg); }
	57% { transform: scale(1.02, 0.985) skewX(1.2deg); }
	80% { transform: scale(0.985, 1.02) skewX(-0.6deg); }
}
@keyframes gg-breathe { 0%, 100% { opacity: 0.86; } 50% { opacity: 1; } }

.hero-visual__photo {
	aspect-ratio: 5 / 6; overflow: hidden;
	border-radius: 999px 999px 0 0;
	border: 2px solid var(--gg-gold-border);
	box-shadow: 0 0 0 8px #000, 0 0 0 9px rgba(201, 153, 74, 0.55), 0 0 90px rgba(233, 160, 70, 0.18);
}
.hero-visual__photo img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 899px) {
	.hero__inner { grid-template-columns: 1fr; }
	.hero__title { max-width: 14ch; }
	.hero-visual { width: min(78%, 20rem); }
}

/* Sections ---------------------------------------------------------------- */
.section-head { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { margin-bottom: 0.7rem; }

.home-cats, .home-products { padding: clamp(2.5rem, 5vw, 4.5rem) 0; }

.cat-grid { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 2.5rem 2rem; }
.cat-grid li { flex: 0 1 16rem; min-width: 0; }
.cat-tile { display: block; text-align: center; color: var(--gg-text); text-decoration: none; }
.cat-tile__arch {
	position: relative; display: grid; place-items: center;
	aspect-ratio: 4 / 5; overflow: hidden;
	border: 1px solid var(--gg-gold-border);
	border-radius: 999px 999px 0 0;
	background: radial-gradient(70% 60% at 50% 46%, rgba(233, 166, 74, 0.2), #0b0805 78%);
	transition: box-shadow 0.35s, border-color 0.25s;
}
.cat-tile__arch::after {
	content: ""; position: absolute; inset: 6px; pointer-events: none;
	border: 1px solid rgba(201, 153, 74, 0.35); border-radius: 999px 999px 0 0;
}
.cat-tile__arch img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile__arch .gg-icon { width: 30%; height: auto; aspect-ratio: 1; color: var(--gg-gold); stroke-width: 0.9; transition: transform 0.35s; }
.cat-tile__name { display: block; margin-top: 1.1rem; font: 500 1.65rem/1.15 var(--gg-serif); color: var(--gg-text-hi); }
.cat-tile__count { display: block; margin-top: 0.15rem; font-size: 0.9rem; color: var(--gg-muted); }
.cat-tile:hover .cat-tile__arch { border-color: var(--gg-gold-hi); box-shadow: 0 0 46px rgba(233, 166, 74, 0.22); }
.cat-tile:hover .cat-tile__arch .gg-icon { transform: scale(1.06); }
.cat-tile:hover .cat-tile__name { color: var(--gg-gold-hi); }
@media (max-width: 719px) { .cat-grid li { flex-basis: calc(50% - 1rem); } .cat-tile__name { font-size: 1.35rem; } }

.home-products__more { text-align: center; margin: 3rem 0 0; }

.home-story { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3.5rem, 7vw, 6rem); }
.home-story__frame {
	display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	gap: clamp(2rem, 5vw, 5rem); align-items: center;
	padding: clamp(2rem, 5vw, 4.5rem);
	background: radial-gradient(60% 90% at 88% 50%, rgba(233, 166, 74, 0.12), transparent 70%), linear-gradient(180deg, var(--gg-ink), var(--gg-black));
}
.home-story__copy h2 { margin-bottom: 0.5rem; }
.home-story__line { font: italic 500 1.35rem/1.3 var(--gg-serif); color: var(--gg-gold); margin-bottom: 1.2rem; }
.home-story__copy > p:not(.home-story__line) { color: var(--gg-muted); max-width: 30rem; }
.home-story__copy .button { margin-top: 0.6rem; }

.feature-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; }
.feature-list li {
	display: flex; flex-direction: column; align-items: center; gap: 0.85rem;
	padding: 1.6rem 1rem; text-align: center;
	border-color: rgba(201, 153, 74, 0.35); border-style: solid; border-width: 0;
}
.feature-list li:nth-child(odd) { border-right-width: 1px; }
.feature-list li:nth-child(-n + 2) { border-bottom-width: 1px; }
.feature-list__icon {
	display: grid; place-items: center; width: 4.25rem; height: 4.25rem;
	border: 1px solid var(--gg-gold-border); border-radius: 50%; color: var(--gg-gold);
	box-shadow: 0 0 30px rgba(233, 166, 74, 0.12) inset;
}
.feature-list__icon .gg-icon { width: 2rem; height: 2rem; stroke-width: 1.2; }
.feature-list__label { font-size: 0.95rem; line-height: 1.35; color: var(--gg-text); }

@media (max-width: 899px) {
	.home-story__frame { grid-template-columns: 1fr; }
	.home-story__copy { order: -1; }
}
@media (max-width: 479px) {
	.feature-list__icon { width: 3.5rem; height: 3.5rem; }
	.feature-list li { padding: 1.2rem 0.5rem; }
}

/* Tagline band + footer -------------------------------------------------- */
.tagline-band {
	display: flex; align-items: center; justify-content: center; gap: clamp(0.75rem, 3vw, 1.75rem);
	padding: 0.85rem 1rem; color: var(--gg-btn-text);
	background: linear-gradient(90deg, #8a6a2e 0%, #e9c888 22%, #f9e2ac 50%, #e9c888 78%, #8a6a2e 100%);
	border-block: 1px solid #f3d99b;
}
.tagline-band p { margin: 0; font: 500 clamp(0.78rem, 2.2vw, 1rem)/1.2 var(--gg-sans); letter-spacing: 0.3em; text-transform: uppercase; text-align: center; }
.tagline-band .gg-icon { width: 1rem; height: 1rem; }

.site-footer { background: radial-gradient(70% 90% at 50% 0%, rgba(233, 166, 74, 0.07), transparent 70%), #000; }
.site-footer__grid {
	display: grid; grid-template-columns: 1.25fr 0.85fr 1fr 1.2fr; gap: 2.5rem clamp(2rem, 4vw, 4rem);
	padding-block: clamp(3rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem);
}
.site-footer__brand .custom-logo-link { display: inline-block; margin: -0.5rem 0 0.5rem -0.5rem; }
.site-footer__brand .custom-logo { width: 13.5rem; height: auto; }
.site-footer__brand .script-line { font-size: 1.85rem; max-width: 16rem; }
.site-footer__title { font: 600 1.45rem/1.2 var(--gg-serif); color: var(--gg-gold); margin: 0 0 1rem; }
.site-footer .menu, .contact-list { list-style: none; margin: 0; padding: 0; }
.site-footer .menu li { margin-bottom: 0.5rem; }
.site-footer .menu a, .contact-list a { color: var(--gg-text); text-decoration: none; }
.site-footer .menu a:hover, .contact-list a:hover { color: var(--gg-gold-hi); text-decoration: underline; }
.contact-list li { display: flex; align-items: flex-start; gap: 0.8rem; margin-bottom: 0.7rem; }
.contact-list .gg-icon { width: 1.25rem; height: 1.25rem; margin-top: 0.2rem; color: var(--gg-gold); }
.site-footer__legal { border-top: 1px solid var(--gg-line); padding-block: 1.2rem; font-size: 0.88rem; color: var(--gg-muted); }
.site-footer__legal p { margin: 0; display: flex; flex-wrap: wrap; gap: 0.3rem 1.5rem; justify-content: center; }

@media (max-width: 899px) {
	.site-footer__grid { grid-template-columns: 1fr 1fr; }
	.site-footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 519px) {
	.site-footer__grid { grid-template-columns: 1fr; }
}

/* Pages, posts ------------------------------------------------------------ */
.site-main > .gg-container { padding-bottom: clamp(3rem, 6vw, 5rem); }
.page-header { text-align: center; padding: clamp(2.2rem, 5vw, 4rem) 0 clamp(1.8rem, 3vw, 2.6rem); }
.page-title {
	font-size: clamp(2.4rem, 4.8vw, 3.8rem); margin: 0 0 0.8rem;
	color: var(--gg-gold);
	background: var(--gg-gold-grad);
	-webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
	padding-bottom: 0.06em;
}

.entry-content { font-size: 1.06rem; }
.entry-content > * + * { margin-top: 1.2em; }
.entry-content h2 { margin-top: 1.8em; }
.entry-content h3 { margin-top: 1.5em; }
.entry-content ul, .entry-content ol { padding-left: 1.3rem; }
.entry-content li::marker { color: var(--gg-gold); }
.entry-content blockquote {
	margin-inline: 0; padding: 0.4rem 0 0.4rem 1.5rem; border-left: 2px solid var(--gg-gold-border);
	font: italic 500 1.5rem/1.4 var(--gg-serif); color: var(--gg-text-hi);
}
.entry-content img { border: 1px solid var(--gg-gold-border); }
.entry-content table { width: 100%; border-collapse: collapse; }
.entry-content th, .entry-content td { padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--gg-line); text-align: left; }
.entry-content figcaption { font-size: 0.9rem; color: var(--gg-muted); text-align: center; margin-top: 0.5rem; }
.page-article__image { padding: 0.5rem; margin-bottom: 2.5rem; }

.post-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(min(100%, 21rem), 1fr)); gap: 2rem; }
.post-card { padding: 0.75rem; }
.post-card__image img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.post-card__body { padding: 1.25rem 0.75rem 0.75rem; }
.post-card__title { font-size: 1.6rem; margin-bottom: 0.3rem; }
.post-card__title a { color: inherit; text-decoration: none; }
.post-card__title a:hover { color: var(--gg-gold-hi); }
.post-card__meta { font-size: 0.88rem; color: var(--gg-muted); margin-bottom: 0.8rem; }
.post-card__excerpt p { margin: 0; color: var(--gg-muted); }

.nav-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; }
.page-numbers {
	display: grid; place-items: center; min-width: 2.75rem; height: 2.75rem; padding: 0 0.9rem;
	border: 1px solid var(--gg-line); color: var(--gg-text); text-decoration: none;
}
a.page-numbers:hover { border-color: var(--gg-gold-border); color: var(--gg-gold-hi); }
.page-numbers.current { background: var(--gg-btn-grad); color: var(--gg-btn-text); border-color: var(--gg-gold); }

.empty-state { text-align: center; padding-block: clamp(3rem, 8vw, 6rem); max-width: 36rem; margin-inline: auto; }
.empty-state .search-form { margin-block: 1.5rem; }

/* Motion preferences ------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
