/*
Theme Name: Adderstone Publishing
Author: Adderstone
Description: The Adderstone Publishing theme — a restrained literary-publisher design system with a centered logo navbar, serif Merriweather headings, Montserrat sans body copy, and a sage green/amber palette with editorial spacing.
Version: 1.1.8
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: operation-adderstone
*/

/* =========================================================
   0. DESIGN TOKENS
========================================================= */
:root {
	--primary: #2F3E2F;
	--white: #ffffff;
	--white-smoke: #f6f4f2;
	--secondary: #DFAB5A;
	--secondary-dark: #BE914D;
	--mint: #b4e1c5;
	--blush: #f4e1e3;

	--font-heading: "Merriweather", Georgia, serif;
	--font-body: "Montserrat", Arial, sans-serif;

	--container-width: 1220px;
	--nav-height: 144px;
}

/* =========================================================
   1. RESET
========================================================= */
*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	height: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	min-height: 100%;
	background-color: var(--white);
	color: var(--primary);
	font-family: var(--font-body);
	font-size: 18px;
	line-height: 1.7;
	padding-top: var(--nav-height);
}

img {
	max-width: 100%;
	display: inline-block;
	vertical-align: middle;
}

ul,
ol {
	margin-top: 0;
	margin-bottom: 20px;
}

figure {
	margin: 0 0 10px;
}

figcaption {
	opacity: 0.6;
	text-align: center;
	margin: 5px 0 40px;
	font-size: 14px;
	line-height: 1.3;
}

/* =========================================================
   2. TYPOGRAPHY
========================================================= */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-heading);
	font-weight: 400;
	margin-top: 20px;
	margin-bottom: 20px;
	color: var(--primary);
}

h1 {
	font-size: 56px;
	font-weight: 700;
	line-height: 1.2;
}

h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 10px;
}

h3 {
	font-size: 26px;
	font-weight: 700;
	line-height: 1.3;
	margin-top: 10px;
	margin-bottom: 10px;
}

h4 {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.4;
}

h5 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 0;
}

h6 {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

p {
	margin-top: 0;
	margin-bottom: 20px;
}

a {
	color: var(--primary);
	text-decoration: underline;
	text-decoration-color: var(--secondary);
	text-decoration-thickness: 1px;
}

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

strong { font-weight: 700; }
em { font-style: italic; }

blockquote {
	float: left;
	display: inline-block;
	border-left: 2px solid var(--secondary);
	margin: 25px 0 40px;
	padding: 10px 10px 10px 20px;
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	font-style: italic;
}

hr {
	border: none;
	border-top: 1px solid #e5e5e5;
	margin: 40px 0;
}

::selection {
	background-color: var(--secondary);
	color: var(--primary);
}

/* =========================================================
   3. LAYOUT / CONTAINER
========================================================= */
.container {
	width: 100%;
	max-width: var(--container-width);
	margin-left: auto;
	margin-right: auto;
	padding: 0 20px;
	position: relative;
}

.site-main {
	padding-top: 60px;
	padding-bottom: 60px;
}

.eyebrow {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--primary);
	padding-bottom: 4px;
	margin-bottom: 16px;
	text-decoration: none;
}

/* =========================================================
   4. BUTTONS
========================================================= */
.button,
.wp-block-button__link,
button[type="submit"],
input[type="submit"] {
	display: inline-block;
	background-color: var(--secondary);
	background-image: linear-gradient(
		115deg,
		var(--secondary) 0%,
		var(--secondary) 40%,
		#f7e4bd 50%,
		var(--secondary) 60%,
		var(--secondary) 100%
	);
	background-size: 240% 100%;
	background-position: 100% 50%;
	color: var(--primary);
	border: 1px solid var(--secondary);
	border-radius: 0;
	margin: 10px 10px 10px 0;
	padding: 14px 30px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: .5px;
	line-height: 1.4;
	text-decoration: none;
	cursor: pointer;
	transition: background-color .2s ease, color .2s ease;
	animation: gold-shimmer 3.5s ease-in-out infinite;
}

.button:hover,
.wp-block-button__link:hover,
button[type="submit"]:hover,
input[type="submit"]:hover {
	background-image: none;
	background-color: var(--secondary-dark);
	border-color: var(--secondary-dark);
	color: var(--primary);
	animation-play-state: paused;
}

@keyframes gold-shimmer {
	0%   { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
	.button,
	.wp-block-button__link,
	button[type="submit"],
	input[type="submit"] {
		animation: none;
		background-position: 50% 50%;
	}
}

.button.button--outline {
	background-color: transparent;
	color: var(--primary);
	border-color: var(--primary);
}

.button.button--outline:hover {
	background-color: var(--primary);
	color: var(--white);
}

/* =========================================================
   5. NAVBAR / HEADER
========================================================= */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--nav-height);
	z-index: 1000;
	background-color: var(--white);
	border-bottom: 1px solid #e5e5e5;
}

.site-header__row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	height: 100px;
}

.site-branding {
	grid-column: 2;
	justify-self: center;
	max-width: 380px;
	max-height: 100%;
	padding: 6px 0;
}

.site-branding__link {
	display: flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: inherit;
}

.site-branding__mark {
	position: relative;
	display: block;
	line-height: 0;
	flex-shrink: 0;
	background-color: var(--primary);
	padding: 6px;
	border-radius: 6px;
}

.site-branding__mark img.custom-logo {
	display: block;
	max-height: 44px;
	max-width: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
}

.site-branding__mark::after {
	content: "";
	position: absolute;
	inset: 6px;
	background-image: url("../../uploads/2026/08/Adderstone-A-logo-gold-green-background.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: opacity .2s ease;
	pointer-events: none;
}

.site-branding__mark:hover::after {
	opacity: 1;
}

@media screen and (max-width: 780px) {
	.site-branding__mark::after {
		animation: logo-crossfade 6s ease-in-out infinite;
	}
}

@keyframes logo-crossfade {
	0%, 40%  { opacity: 0; }
	50%, 90% { opacity: 1; }
	100%     { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
	.site-branding__mark::after {
		animation: none;
	}
}

.site-wordmark {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	line-height: 1.2;
}

.site-wordmark__mark-wrap {
	position: relative;
	display: block;
}

.site-wordmark-image {
	display: block;
	max-height: 52px;
	width: auto;
	max-width: 280px;
	object-fit: contain;
	image-rendering: -webkit-optimize-contrast;
}

.site-wordmark__publishing {
	position: absolute;
	left: 81%;
	top: calc(100% - 12px);
	transform: translateX(-50%);
	height: 27px;
	width: auto;
	object-fit: contain;
	opacity: .85;
	pointer-events: none;
}

.site-wordmark__est {
	display: block;
	font-family: var(--font-body);
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--secondary-dark);
	margin-top: 4px;
}

.main-navigation {
	display: flex;
	align-items: center;
	justify-content: center;
	height: calc(var(--nav-height) - 100px);
}

.main-navigation ul {
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	color: var(--primary);
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 16px;
	transition: color .2s ease;
}

.main-navigation a:hover {
	box-shadow: inset 0 -2px 0 var(--secondary);
}

.main-navigation .current-menu-item > a {
	box-shadow: inset 0 -2px 0 var(--secondary);
}

.menu-toggle,
.search-toggle {
	grid-column: 1;
	justify-self: start;
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 20px;
	color: var(--primary);
	font-family: var(--font-heading);
	font-size: 24px;
	line-height: 1;
}

.search-toggle {
	grid-column: 3;
	justify-self: end;
	display: none;
}

.header-social {
	position: absolute;
	top: 100px;
	right: 20px;
	height: calc(var(--nav-height) - 100px);
	display: flex;
	align-items: center;
	gap: 8px;
	z-index: 10;
}

.header-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	text-decoration: none;
	color: var(--primary);
	opacity: .5;
	transition: opacity .2s ease;
}

.header-social a:hover {
	opacity: 1;
	color: #000;
}

.main-navigation__social {
	display: none;
}

.main-navigation .main-navigation__social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	padding: 0;
	opacity: .6;
}

.main-navigation .main-navigation__social a:hover,
.main-navigation .main-navigation__social a:active {
	opacity: 1;
	color: #000;
}

.header-search {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	transition: max-height .2s ease, opacity .2s ease;
}

.header-search.is-open {
	max-height: 80px;
	opacity: 1;
	padding-bottom: 16px;
}

.header-search .search-form {
	max-width: 420px;
	margin: 0 auto;
}

/* =========================================================
   6. HERO
========================================================= */
.hero {
	background-color: var(--white);
	color: var(--primary);
	padding: 90px 0 70px;
	position: relative;
}

.hero.hero--mint {
	background-color: var(--mint);
}

.hero.hero--blush {
	background-color: var(--blush);
}

.hero.hero--black {
	background-color: var(--primary);
	color: var(--white);
}

.hero.hero--black h1,
.hero.hero--black .eyebrow {
	color: var(--white);
}

.hero__inner {
	max-width: 780px;
}

.hero h1 {
	margin-top: 0;
	font-weight: 400;
}

.hero p.lead {
	font-size: 22px;
	line-height: 1.6;
	max-width: 640px;
}

.hero--photo {
	padding: 140px 0;
	overflow: hidden;
	color: var(--white);
}

.hero--photo .eyebrow {
	color: var(--secondary);
}

.hero--photo h1 {
	color: var(--white);
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	transform: scale(1);
	will-change: transform;
}

.hero__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(47, 62, 47, .55), rgba(47, 62, 47, .75));
}

.hero--photo .container {
	position: relative;
	z-index: 2;
}

/* =========================================================
   6a. COUNTDOWN BANNER
========================================================= */
.countdown-banner {
	background-color: var(--primary);
	padding: 70px 0;
	position: relative;
	overflow: hidden;
}

.countdown-banner--page {
	min-height: 70vh;
	display: flex;
	align-items: center;
}

.countdown-banner--page .container {
	width: 100%;
}

.countdown-banner__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.countdown-banner__bg {
	width: 130%;
	max-width: none;
	height: 100%;
	object-fit: cover;
	display: block;
	animation: banner-pan 34s ease-in-out infinite alternate;
}

@keyframes banner-pan {
	0%   { transform: translateX(-15%); }
	100% { transform: translateX(-2%); }
}

@media (prefers-reduced-motion: reduce) {
	.countdown-banner__bg {
		animation: none;
		transform: translateX(-8%);
	}
}

.countdown-banner__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(7, 8, 7, .55), rgba(7, 8, 7, .8));
}

.countdown-banner .container {
	position: relative;
	z-index: 2;
}

.countdown-banner .eyebrow {
	color: var(--secondary);
}

.countdown-banner__imprint {
	display: block;
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--white);
	opacity: .55;
	margin-bottom: 10px;
}

.countdown-banner__inner {
	display: grid;
	grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
	gap: 60px;
	align-items: center;
	text-align: left;
	padding: 60px 0;
}

.countdown-banner__cover {
	display: inline-block;
	justify-self: start;
	box-shadow:
		0 6px 12px rgba(255, 255, 255, .18),
		0 18px 30px rgba(255, 255, 255, .14),
		0 40px 80px rgba(255, 255, 255, .12);
	transition: transform .3s ease, box-shadow .3s ease;
}

.countdown-banner__cover:hover,
.countdown-banner__cover:focus-visible {
	transform: translateY(-10px) scale(1.03);
	box-shadow:
		0 10px 16px rgba(255, 255, 255, .22),
		0 26px 40px rgba(255, 255, 255, .18),
		0 55px 100px rgba(255, 255, 255, .16);
}

.countdown-banner__image {
	display: block;
	width: 100%;
	max-width: 340px;
	height: auto;
}

.countdown-banner__content {
	margin-top: 0;
}

.countdown-banner__pitch {
	font-family: var(--font-body);
	font-size: 17px;
	line-height: 1.6;
	color: var(--white);
	opacity: .8;
	max-width: 440px;
	margin: 12px 0 14px;
}

.countdown-banner__meta {
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: .5px;
	color: var(--secondary);
	opacity: .9;
	margin: 0 0 22px;
}

@media screen and (max-width: 900px) {
	.countdown-banner__inner {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.countdown-banner__cover {
		justify-self: center;
	}

	.countdown-banner__pitch {
		margin-left: auto;
		margin-right: auto;
	}
}

@media screen and (max-width: 780px) {
	.countdown-banner__image {
		max-width: 240px;
	}
}

/* =========================================================
   6b. FORTHCOMING SLIDER
========================================================= */
.forthcoming {
	background-color: var(--primary);
	color: var(--white);
	padding: 60px 0 70px;
	position: relative;
	overflow: hidden;
}

.forthcoming__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.forthcoming__layer {
	position: absolute;
	inset: -14% -10%;
	display: block;
}

.forthcoming__layer--back {
	opacity: .3;
	filter: blur(3px) saturate(1.15);
	animation: slither-back 16s ease-in-out infinite;
}

.forthcoming__layer--front {
	opacity: .5;
	animation: slither-front 9s ease-in-out infinite;
}

.forthcoming__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transform-origin: 50% 50%;
}

@keyframes slither-back {
	0%   { transform: scale(1.1) translateX(0) translateY(0) skewX(0deg) skewY(0deg); }
	50%  { transform: scale(1.16) translateX(-2.4%) translateY(1.4%) skewX(-4deg) skewY(1.6deg); }
	100% { transform: scale(1.1) translateX(0) translateY(0) skewX(0deg) skewY(0deg); }
}

@keyframes slither-front {
	0%   { transform: translateX(0) translateY(0) skewX(0deg) skewY(0deg); }
	25%  { transform: translateX(1.6%) translateY(-0.8%) skewX(3.2deg) skewY(-1.2deg); }
	50%  { transform: translateX(0) translateY(0.6%) skewX(0deg) skewY(0deg); }
	75%  { transform: translateX(-1.6%) translateY(-0.5%) skewX(-3.2deg) skewY(1.2deg); }
	100% { transform: translateX(0) translateY(0) skewX(0deg) skewY(0deg); }
}

@media (prefers-reduced-motion: reduce) {
	.forthcoming__layer--back,
	.forthcoming__layer--front {
		animation: none;
	}
}

.forthcoming__overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(47, 62, 47, .82), rgba(47, 62, 47, .92));
}

.forthcoming .container {
	position: relative;
	z-index: 2;
}

.forthcoming__header {
	max-width: 640px;
	margin: 0 auto 30px;
	text-align: center;
}

.forthcoming__header h2 {
	color: var(--white);
	margin-bottom: 6px;
}

.forthcoming__header p {
	margin: 0;
	opacity: .75;
}

.forthcoming-slider {
	display: flex;
	gap: 24px;
	overflow-x: auto;
	padding: 4px 4px 12px;
	margin: 0 -4px;
	list-style: none;
	scroll-snap-type: x proximity;
	scrollbar-width: none;
	justify-content: center;
}

@media screen and (max-width: 780px) {
	.forthcoming-slider {
		justify-content: center;
	}
}

.forthcoming-slider::-webkit-scrollbar {
	display: none;
}

.forthcoming-slide {
	flex: 0 0 auto;
	width: 200px;
	scroll-snap-align: start;
}

.forthcoming-slide__link {
	display: block;
	color: var(--white);
	text-decoration: none;
}

.forthcoming-slide__cover {
	display: block;
	aspect-ratio: 2 / 3;
	margin-bottom: 14px;
	overflow: hidden;
	box-shadow: 0 20px 30px rgba(0, 0, 0, .25);
}

.forthcoming-slide__cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.forthcoming-slide__cover--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 16px;
	background-image: repeating-linear-gradient(
		135deg,
		rgba(255, 255, 255, .06),
		rgba(255, 255, 255, .06) 10px,
		transparent 10px,
		transparent 20px
	);
	background-color: rgba(255, 255, 255, .08);
	border: 1px solid rgba(255, 255, 255, .2);
}

.forthcoming-slide__cover-label {
	font-family: var(--font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: .6;
}

.badge--forthcoming {
	display: inline-block;
	background-color: var(--secondary);
	background-image: linear-gradient(
		115deg,
		var(--secondary) 0%,
		var(--secondary) 40%,
		#f7e4bd 50%,
		var(--secondary) 60%,
		var(--secondary) 100%
	);
	background-size: 240% 100%;
	animation: gold-shimmer 3.5s ease-in-out infinite;
	color: var(--primary);
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 4px 10px;
	margin-bottom: 8px;
}

@media (prefers-reduced-motion: reduce) {
	.badge--forthcoming {
		animation: none;
		background-position: 50% 50%;
	}
}

.forthcoming-slide__title {
	display: block;
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 700;
	line-height: 1.35;
}

.forthcoming-slide__genre {
	display: block;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: .5px;
	text-transform: uppercase;
	opacity: .6;
	margin-top: 4px;
}

[data-reveal] {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity .6s var(--ease-reveal, ease), transform .6s var(--ease-reveal, ease);
	transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

[data-reveal].is-visible {
	opacity: 1;
	transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
	[data-reveal] {
		opacity: 1;
		transform: none;
		transition: none;
	}
}

/* =========================================================
   7. CARDS / POST GRID
========================================================= */
.shelf {
	padding-top: 40px;
	border-top: 1px solid #e5e5e5;
}

.shelf:first-child {
	border-top: none;
}

.shelf__header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 20px;
}

.shelf__header h2 {
	margin: 0;
}

.shelf__view-all {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--primary);
	text-decoration: none;
	white-space: nowrap;
}

.shelf__view-all:hover {
	color: var(--secondary-dark);
}

.post-grid {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -1%;
	padding: 24px 0 16px;
}

.card {
	width: 31.3%;
	margin: 0 1% 30px;
	padding: 20px 20px 24px;
	border: 1px solid #e5e5e5;
	color: var(--primary);
	text-decoration: none;
	display: block;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.card:hover {
	border-color: var(--secondary);
	box-shadow: 0 12px 24px rgba(47, 62, 47, .08);
}

.card__thumb {
	display: block;
	margin-bottom: 16px;
	overflow: hidden;
}

.card__thumb img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.card h3.card__title {
	font-size: 24px;
	letter-spacing: 0;
	text-transform: none;
	font-weight: 700;
	margin: 0 0 10px;
}

.card__excerpt {
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.5;
	color: var(--primary);
}

.card__meta {
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--primary);
	margin-top: 12px;
}

/* =========================================================
   8. CTA / JOIN BOX
========================================================= */
.cta-box {
	display: flex;
	align-items: center;
	gap: 30px;
	background-color: var(--white);
	color: var(--primary);
	border: 1px solid var(--primary);
	padding: 30px;
	margin: 20px 0;
	text-decoration: none;
	transition: border-color .2s ease, box-shadow .2s ease;
}

.cta-box:hover {
	border-color: var(--secondary);
	box-shadow: 0 12px 24px rgba(47, 62, 47, .08);
}

.cta-box img {
	width: 220px;
	flex-shrink: 0;
}

/* =========================================================
   8b. CONTACT PAGE
========================================================= */
.contact-triage {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
	margin: 30px 0 50px;
}

.contact-triage__item {
	display: block;
	border: 1px solid #e5e5e5;
	padding: 24px;
	text-decoration: none;
	color: var(--primary);
	transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-triage__item:hover {
	border-color: var(--secondary);
	box-shadow: 0 12px 24px rgba(47, 62, 47, .08);
}

.contact-triage__item h3 {
	margin: 0 0 6px;
	font-size: 18px;
}

.contact-triage__item p {
	margin: 0 0 10px;
	font-family: var(--font-body);
	font-size: 15px;
	opacity: .75;
}

.contact-triage__email {
	display: inline-block;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	color: var(--secondary-dark);
	text-decoration: underline;
}

.contact-form-wrap {
	max-width: 640px;
	margin-bottom: 50px;
}

.contact-form-wrap > p {
	opacity: .75;
	margin-bottom: 26px;
}

.contact-form__row {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

.contact-form__field {
	margin-bottom: 20px;
}

.contact-form__field label {
	display: block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.contact-form__result {
	margin: 14px 0 0;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--primary);
}

.contact-form__result.is-error {
	color: #b3261e;
}

@media screen and (max-width: 780px) {
	.contact-triage {
		grid-template-columns: 1fr;
	}

	.contact-form__row {
		grid-template-columns: 1fr;
	}
}

/* =========================================================
   9. TABLES / FORMS
========================================================= */
table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 30px;
	font-family: var(--font-body);
}

th, td {
	text-align: left;
	padding: 12px 14px;
	border-bottom: 1px solid #ddd;
}

th {
	font-family: var(--font-heading);
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #000;
	border-radius: 0;
	font-family: var(--font-body);
	font-size: 16px;
	background-color: var(--white);
}

input:focus,
textarea:focus,
select:focus {
	outline: 2px solid var(--primary);
	outline-offset: 1px;
}

.search-form {
	display: flex;
	gap: 10px;
}

/* =========================================================
   10. WIDGETS / SIDEBAR
========================================================= */
.widget {
	margin-bottom: 40px;
}

.widget-title {
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 2px solid var(--secondary);
	padding-bottom: 10px;
	margin-bottom: 16px;
}

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

.widget li {
	border-bottom: 1px solid #eee;
	padding: 10px 0;
}

.content-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 320px);
	gap: 50px;
	align-items: start;
}

.content-layout.no-sidebar {
	grid-template-columns: 1fr;
}

/* =========================================================
   11. FOOTER
========================================================= */
.site-footer {
	background-color: var(--white-smoke);
	padding: 60px 0 30px;
	position: relative;
	overflow: hidden;
}

.footer-columns {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 -1%;
}

.footer-column {
	width: 23%;
	margin: 0 1% 30px;
}

.footer-column .widget-title {
	border-bottom: 2px solid var(--primary);
}

.footer-column .textwidget {
	text-align: left;
}

.footer-social {
	display: flex;
	gap: 14px;
	margin-top: 10px;
}

.footer-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--primary);
	border-radius: 50%;
	text-decoration: none;
	font-family: var(--font-heading);
	font-size: 14px;
}

.footer-social a:hover {
	background-color: var(--secondary);
	border-color: var(--secondary);
	color: var(--primary);
}

.site-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	border-top: 1px solid #ddd;
	margin-top: 20px;
	padding-top: 20px;
	font-family: var(--font-body);
	font-size: 13px;
	letter-spacing: .3px;
	opacity: .75;
}

.site-info__credit {
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.site-info__credit-logo {
	position: relative;
	display: inline-block;
	width: 102px;
	aspect-ratio: 862 / 240;
	background-color: currentColor;
	-webkit-mask-image: url("../../uploads/2026/08/angloagencylogo.png");
	mask-image: url("../../uploads/2026/08/angloagencylogo.png");
	-webkit-mask-repeat: no-repeat;
	mask-repeat: no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	-webkit-mask-position: center;
	mask-position: center;
	vertical-align: middle;
}

.site-info__credit-logo::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("../../uploads/2026/08/angloagencylogo.png");
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	transition: opacity .2s ease;
}

.site-info__credit-logo:hover::after {
	opacity: 1;
}

/* =========================================================
   11b. NEWSLETTER SIGNUP MODAL
========================================================= */
.newsletter-inline {
	display: none;
	margin-top: 26px;
	padding-top: 22px;
	border-top: 1px solid #ddd;
}

.newsletter-inline h4 {
	font-family: var(--font-heading);
	font-size: 17px;
	font-weight: 700;
	margin: 0 0 6px;
}

.newsletter-inline p {
	font-family: var(--font-body);
	font-size: 14px;
	opacity: .75;
	margin: 0 0 16px;
}

.newsletter-form {
	display: flex;
	gap: 10px;
}

.newsletter-form input[type="email"] {
	flex: 1;
}

.newsletter-form__message {
	margin: 12px 0 0;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--primary);
}

.newsletter-form__message.is-error {
	color: #b3261e;
}

@media screen and (max-width: 480px) {
	.newsletter-form {
		flex-direction: column;
	}
}

/* =========================================================
   12. UTILITIES
========================================================= */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

.alignwide { max-width: 1400px; margin-left: auto; margin-right: auto; }
.alignfull { max-width: none; }
.text-center { text-align: center; }

/* =========================================================
   13. RESPONSIVE
========================================================= */
@media screen and (max-width: 900px) {
	.card { width: 48%; }
	.content-layout { grid-template-columns: 1fr; }
	.footer-column { width: 48%; }
}

@media screen and (max-width: 780px) {
	:root {
		--nav-height: 100px;
	}

	.main-navigation {
		position: fixed;
		top: var(--nav-height);
		left: 0;
		right: 0;
		background-color: var(--white);
		border-top: 1px solid #e5e5e5;
		border-bottom: 1px solid #e5e5e5;
		flex-direction: column;
		align-items: stretch;
		height: auto;
		box-shadow: 0 10px 20px rgba(47, 62, 47,.08);
		transform: translateY(calc(-100% - var(--nav-height) - 20px));
		transition: transform .25s ease;
	}

	.main-navigation.is-open {
		transform: translateY(0);
	}

	.main-navigation ul {
		flex-direction: column;
		align-items: stretch;
	}

	.main-navigation a {
		padding: 14px 16px;
		text-align: center;
	}

	.menu-toggle {
		display: block;
	}

	.header-social {
		display: none;
	}

	.main-navigation__social {
		display: flex;
		justify-content: center;
		gap: 20px;
		padding: 16px;
	}

	h1 { font-size: 40px; }
	h2 { font-size: 30px; }
	.hero h1 { font-size: 32px; }
	.hero { padding: 60px 0 40px; }
	.card { width: 100%; margin-left: 0; margin-right: 0; }
	.footer-column { width: 100%; }
	.cta-box { flex-direction: column; text-align: center; }

	.site-info__copyright { order: 1; }
	.site-info__credit { order: 2; }
}

/* =========================================================
   14. SUBMISSIONS PAGE
========================================================= */
.submissions-hero {
	position: relative;
	min-height: 700px;
	overflow: hidden;
}

.submissions-hero__media {
	position: absolute;
	inset: 0;
}

.submissions-hero__zoom {
	position: absolute;
	inset: 0;
	overflow: hidden;
	transform-origin: 50% 100%;
}

.submissions-hero__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 0%;
	display: block;
}

.submissions-hero__scrim {
	position: absolute;
	inset: 0;
	background: linear-gradient(100deg, rgba(20, 15, 10, .6) 0%, rgba(20, 15, 10, .15) 35%, transparent 55%);
}

.submissions-hero__caption {
	position: absolute;
	left: 0;
	bottom: 0;
	padding: 60px;
}

.submissions-hero__title {
	margin: 0 0 28px;
	color: var(--white);
	font-family: "Playfair Display", var(--font-heading);
	font-weight: 400;
	font-size: clamp(48px, 7vw, 90px);
	line-height: 1.35;
}

.submissions-hero__title span {
	display: block;
}

.submissions-hero__content {
	position: absolute;
	top: 60px;
	right: 60px;
	bottom: 60px;
	width: 40%;
	min-width: 340px;
	max-width: 560px;
	background-color: #f8f0e1;
	box-shadow: 0 30px 60px rgba(20, 15, 10, .25);
	overflow-y: auto;
}

.submissions-hero__content-inner {
	padding: 50px;
}

.submissions-hero__content-inner p {
	margin: 0 0 20px;
}

.submissions-hero__content-inner p.lead {
	font-size: 19px;
}

.submissions-hero__content-inner ul {
	padding-left: 20px;
}

.submissions-hero__content-inner li {
	margin-bottom: 8px;
}

.submissions-hero__content-inner a {
	color: var(--primary);
}

.submissions-page-main {
	background-color: #f8f0e1;
}

.submissions-process {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px;
	padding: 60px 0 20px;
	text-align: center;
}

.submissions-process__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: rgba(223, 171, 90, .18);
	color: var(--secondary-dark);
	margin-bottom: 18px;
}

.submissions-process__icon svg {
	width: 28px;
	height: 28px;
}

.submissions-process h3 {
	margin: 0 0 8px;
	font-size: 20px;
}

.submissions-process p {
	margin: 0 auto;
	max-width: 260px;
	opacity: .75;
	font-size: 15px;
}

.submissions-form-section {
	max-width: 640px;
	margin: 0 auto 60px;
	padding-top: 60px;
	scroll-margin-top: var(--nav-height);
}

.submissions-form-section > p {
	opacity: .75;
	margin-bottom: 30px;
}

.adderstone-manuscript-label {
	display: block;
	font-family: var(--font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
	margin-bottom: 6px;
}

.file-upload {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-top: 10px;
}

.file-upload__button {
	display: inline-block;
	background-color: var(--white);
	color: var(--primary);
	border: 1px solid #000;
	border-radius: 0;
	padding: 10px 18px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
}

.file-upload__button:hover {
	background-color: #f2f2f2;
}

.file-upload__filename {
	font-size: 14px;
	opacity: .75;
}

.file-upload__input {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.file-upload__result {
	margin: 10px 0 0;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--primary);
}

.file-upload__result.is-error {
	color: #b3261e;
}

@media screen and (max-width: 900px) {
	.submissions-hero {
		min-height: 0;
	}

	.submissions-hero__media {
		position: relative;
		min-height: 420px;
	}

	.submissions-hero__caption {
		padding: 0 24px 40px;
	}

	.submissions-page-main {
		padding-top: 0;
	}

	.submissions-process {
		grid-template-columns: 1fr;
		gap: 30px;
		padding: 0 24px 0;
	}

	.submissions-hero__title {
		font-size: clamp(36px, 12vw, 56px);
	}

	.submissions-hero__content {
		position: static;
		width: auto;
		min-width: 0;
		max-width: none;
		padding-top: 24px;
		background-color: #f8f0e3;
		box-shadow: none;
		overflow-y: visible;
	}

	.submissions-hero__content-inner {
		padding: 40px 24px;
	}

	.submissions-form-section {
		padding: 40px 24px 0;
	}

	.submissions-contact {
		padding: 40px 24px;
	}
}
