@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Manrope:wght@300;400;500;600&display=swap");

@font-face {
	font-family: "China";
	src: url("../webfonts/ChinaCyr.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "akony";
	src: url("../webfonts/akony-bold.otf") format("opentype");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "Hero";
	src: url("../webfonts/Hero.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "Xanmono";
	src: url("../webfonts/Xanmono.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}

/* Китайский чай — цвета и типографика */

:root {
	--ink: #1a1714;
	--ink-soft: #3d3830;
	--parchment: #f4efe6;
	--parchment-deep: #e8dfd0;
	--jade: #2d5a4a;
	--jade-dark: #1a3028;
	--jade-light: #4a7d6a;
	--gold: #b8956b;
	--gold-soft: #d4b896;
}

html {
	background: var(--ink);
}

html, body {
	min-height: 100vh;
}

body {
	display: flex;
	flex-direction: column;
}

#main {
	flex: 1 0 auto;
	margin-left: clamp(150px, 18vw, 212px) !important;
	position: relative;
}

body,
input,
textarea,
select,
button {
	font-family: "Manrope", "Source Sans Pro", sans-serif !important;
	color: var(--ink-soft) !important;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Cormorant Garamond", Georgia, serif !important;
	color: var(--ink) !important;
	font-weight: 400 !important;
}

strong, b {
	color: var(--ink) !important;
}

a {
	color: var(--jade) !important;
	border-bottom-color: rgba(45, 90, 74, 0.35) !important;
}

a:hover {
	color: var(--gold) !important;
	border-bottom-color: transparent !important;
}

::selection {
	background: var(--jade);
	color: var(--parchment);
}

/* — Типографика / читаемость — */

body {
	font-weight: 400 !important;
	font-kerning: normal;
	font-feature-settings: "kern" 1, "liga" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

p {
	max-width: 42em;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.8em;
}

#main > section header h2 {
	font-size: 2.4em !important;
	font-weight: 500 !important;
	letter-spacing: 0.02em;
	position: relative;
	display: inline-block;
}

#main > section header h2::after {
	content: "";
	display: block;
	width: 0;
	height: 2px;
	background: var(--gold);
	margin: 0.35em auto 0;
	transition: width 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

#main > section header {
	margin-bottom: 2.5em;
}

#main > section header + p {
	margin-top: -0.5em;
}

/* Sidebar */
#header {
	width: clamp(150px, 18vw, 212px) !important;
	background: #2a2623 !important;
	overflow: hidden !important;
	box-shadow: none !important;
	border-right: 1px solid var(--gold) !important;
}

#main {
	margin-left: clamp(150px, 18vw, 212px) !important;
}

@media screen and (max-width: 960px) {
	#header {
		transform: translateX(-100%) !important;
	}

	#main {
		margin-left: 0 !important;
	}

	body.header-visible #header {
		transform: translateX(0) !important;
	}

	body.header-visible #main,
	body.header-visible #headerToggle {
		transform: translateX(clamp(150px, 18vw, 212px)) !important;
	}
}

#logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-height: 0;
	text-align: center;
	gap: 0.6em;
	margin: 1.25em 0.75em !important;
}

#logo .scrolly {
	display: block;
	line-height: 0;
	border-bottom: none;
}

#logo .image.avatar48 {
	position: relative !important;
	left: auto !important;
	top: auto !important;
	border: none;
	width: clamp(72px, 9.6vw, 125px);
	height: clamp(72px, 9.6vw, 125px);
	flex-shrink: 0;
	background: transparent !important;
	border-radius: 50%;
	overflow: hidden;
}

#logo .image.avatar48 img {
	width: 100%;
	height: 100%;
	border-radius: 0;
	object-fit: contain;
	object-position: center;
	display: block;
	background: transparent;
}

#nav ul {
	display: flex;
	flex-direction: column;
	align-items: center;
}

#nav ul li a {
	font-size: inherit !important;
	display: flex !important;
	justify-content: center;
	border-bottom: none !important;
	position: relative;
}

#nav ul li a span {
	font-size: 0.64em !important;
	font-weight: 400 !important;
	font-family: "Manrope", sans-serif !important;
	letter-spacing: 0;
	padding-right: 0 !important;
	padding-left: 0 !important;
	display: flex !important;
	align-items: center;
	gap: 0.55em;
	white-space: nowrap;
	color: #fff !important;
	transition: color 0.25s ease;
}

#nav ul li a::after {
	content: '';
	position: absolute;
	inset: 2px 6px;
	border-radius: 2px;
	background: transparent;
	filter: blur(8px);
	z-index: -1;
	opacity: 0;
	transition: background 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

#nav ul li a:hover span {
	color: #fff !important;
	text-shadow: 0 0 6px var(--gold);
}

#nav ul li a:hover::after {
	background: var(--gold);
	filter: blur(12px);
	opacity: 0.22;
}

#nav ul li a.active span {
	color: var(--jade-light) !important;
	text-shadow: 0 0 8px var(--jade-light), 0 0 18px var(--jade-light);
}

#nav ul li a.active::after {
	background: var(--jade-light);
	filter: blur(8px);
	opacity: 0.28;
}

#nav ul li a span:before {
	color: var(--gold) !important;
	position: static !important;
	display: inline !important;
	width: auto !important;
	left: auto !important;
	margin-left: 0 !important;
	line-height: inherit !important;
	text-align: left !important;
}

#nav ul li a:hover span:before,
#nav ul li a.active span:before {
	color: var(--gold-soft) !important;
	text-shadow: 0 0 8px var(--gold-soft);
}


#header .icons a {
	width: auto !important;
	height: auto !important;
	line-height: 0;
}

#header .icons a img {
	vertical-align: middle;
	opacity: 0.45;
	transition: opacity 0.35s ease-in-out, filter 0.35s ease-in-out;
}

#header .icons a:hover img {
	opacity: 1;
	filter: drop-shadow(0 0 6px var(--gold));
}

#header .icons {
	margin-top: 1em !important;
}

#header .icons li {
	margin: 0 0.3em;
}

/* Buttons */
input[type="submit"],
input[type="reset"],
input[type="button"],
button,
.button {
	background-color: var(--jade) !important;
	border-radius: 2px !important;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 0.75em !important;
	font-weight: 600 !important;
	opacity: 0.85;
	box-shadow: 0 0 24px 5px var(--jade);
	transition: background-color 0.35s ease-in-out, box-shadow 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

input[type="submit"]::after,
input[type="reset"]::after,
input[type="button"]::after,
button::after,
.button::after {
	content: '';
	position: absolute;
	inset: -4px;
	border-radius: 4px;
	background: var(--jade);
	filter: blur(10px);
	z-index: -1;
	opacity: 0.45;
	transition: filter 0.35s ease-in-out, opacity 0.35s ease-in-out;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
button:hover,
.button:hover {
	background-color: var(--jade-light) !important;
	opacity: 1;
	box-shadow: 0 0 32px 7px var(--jade-light);
}

input[type="submit"]:hover::after,
input[type="reset"]:hover::after,
input[type="button"]:hover::after,
button:hover::after,
.button:hover::after {
	background: var(--jade-light);
	filter: blur(14px);
	opacity: 0.65;
}

input[type="submit"]:active,
button:active,
.button:active {
	background-color: var(--jade-dark) !important;
	box-shadow: 0 0 10px 2px var(--jade-dark);
}

input[type="submit"]:active::after,
button:active::after,
.button:active::after {
	background: var(--jade-dark);
	filter: blur(4px);
	opacity: 0.25;
}

/* Main sections */
#main > section.one:not(#top) {
	background-color: var(--jade-dark) !important;
}

/* Hero cover */
#top.hero-section {
	position: relative;
	overflow: hidden;
	padding: 0 !important;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ink) !important;
	background-image: none !important;
}

#top .hero-bg {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
}

#top .hero-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	will-change: transform;
	transform-origin: 60% 25%;
	animation: hero-ken-burns 40s ease-in-out infinite;
}

#top .hero-overlay {
	display: none;
}

#top .hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	min-height: 100vh;
	min-height: 100svh;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 2em;
	box-sizing: border-box;
}

#top .hero-content h2 {
	position: relative;
	color: #faf4eb !important;
	font-family: "Xanmono", sans-serif !important;
	text-align: center;
	line-height: 1.15;
	font-size: clamp(2.04em, 3.4vw, 3.4em) !important;
	font-weight: 900 !important;
	letter-spacing: 0.04em;
	text-shadow: 0 1px 3px rgba(26, 48, 40, 0.25);
}

#top .hero-content .hero-text {
	position: relative;
	z-index: 1;
	display: inline-block;
	animation: hero-heartbeat 2s ease-in-out 1.2s infinite;
}

#top .hero-content header {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding-left: clamp(80px, calc(18% + 8px), calc(30% + 20px));
	width: 100%;
	max-width: 52em;
	margin-top: -23vh;
	padding-bottom: 18vh;
	opacity: 0;
	transform: translateY(1.25em);
	animation: hero-content-in 0.8s ease 0.4s forwards;
}

#top .hero-content .hero-about-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-top: 0.5em;
	padding: 0.27em 0.8em 0.23em 0.8em;
	font-family: "Manrope", sans-serif !important;
	font-size: 0.64em !important;
	font-weight: 400;
	letter-spacing: 0;
	color: #fff !important;
	background: transparent;
	border: none;
	text-decoration: none;
	transition: color 0.25s ease, text-shadow 0.25s ease;
	position: relative;
	z-index: 1;
	animation: hero-heartbeat 2s ease-in-out 1.2s infinite;
}

#top .hero-content .hero-about-btn:hover {
	color: #fff !important;
	text-shadow: 0 0 6px var(--gold);
}

#top .hero-content .hero-about-btn::after {
	content: '';
	position: absolute;
	inset: 2px 6px;
	border-radius: 2px;
	background: transparent;
	filter: blur(8px);
	z-index: -1;
	opacity: 0;
	transition: background 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

#top .hero-content .hero-about-btn:hover::after {
	background: var(--gold);
	filter: blur(12px);
	opacity: 0.45;
}

#top .hero-content h2 small {
	display: block;
	font-size: 0.5em;
	font-weight: 600;
	letter-spacing: 0.04em;
	margin-top: 0.3em;
	opacity: 0.85;
}

#top .hero-footer {
	flex-shrink: 0;
	width: 100%;
	text-align: center;
	padding-bottom: 2.5em;
	opacity: 0;
	transform: translateY(1.25em);
	animation: hero-content-in 0.8s ease 0.6s forwards;
}

@keyframes hero-ken-burns {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.188);
	}
	100% {
		transform: scale(1);
	}
}

@keyframes hero-content-in {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes hero-heartbeat {
	0%   { transform: scale(1); }
	8%   { transform: scale(1.048); }
	16%  { transform: scale(1); }
	24%  { transform: scale(1.032); }
	32%  { transform: scale(1); }
	100% { transform: scale(1); }
}

@keyframes city-shimmer {
	0%   { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

@media (prefers-reduced-motion: reduce) {
	#top .hero-bg img {
		animation: none;
	}

	#top .hero-content header,
	#top .hero-content .hero-text,
	#top .hero-content h2,
	#top .hero-footer {
		opacity: 1;
		transform: none;
		animation: none;
		color: var(--jade-dark) !important;
		-webkit-text-fill-color: var(--jade-dark);
		background: none;
	}
}

#main > section.two {
	background-color: #fff !important;
}

#main > section.three {
	background-color: var(--parchment-deep) !important;
	font-size: 0.8em;
}

#about {
	padding-top: 0 !important;
}

#main > section.three p {
	max-width: none;
	margin-left: 0;
	margin-right: 0;
}

#about .container {
	width: 100%;
	max-width: none;
	padding: 0 clamp(1em, 3vw, 2em);
	margin: 0;
}

#main > section.four {
	background-color: var(--parchment) !important;
}

#main > section.dark a {
	color: var(--gold-soft) !important;
}

#main > section.dark strong {
	color: var(--parchment) !important;
}

#main > section.dark h2.alt strong {
	color: var(--gold-soft) !important;
}

/* Portfolio cards */
.item {
	box-shadow: 0 12px 40px rgba(26, 23, 20, 0.08) !important;
}

.item header {
	background: var(--parchment) !important;
}

.item header h3 {
	font-family: "Cormorant Garamond", Georgia, serif !important;
	font-size: 1.15em !important;
	color: var(--ink) !important;
}

/* About stats */
.tea-stats {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 2.5em;
	margin: 2.5em 0 0;
	padding: 2em 0 0;
	border-top: 1px solid rgba(26, 23, 20, 0.1);
}

.tea-stats li {
	text-align: center;
}

.tea-stats strong {
	display: block;
	font-family: "Cormorant Garamond", Georgia, serif !important;
	font-size: 2.5em !important;
	color: var(--jade) !important;
	line-height: 1;
	margin-bottom: 0.2em;
}

.tea-stats span {
	font-size: 0.72em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink-soft);
}

/* Contact form */
#contact input,
#contact textarea {
	background: #fff !important;
	border: 1px solid var(--parchment-deep) !important;
}

#contact input:focus,
#contact textarea:focus {
	border-color: var(--jade) !important;
}

/* Footer */
#footer {
	margin-left: 0 !important;
	padding: 1.234em 0 !important;
	padding-left: clamp(150px, 18vw, 212px) !important;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #2a2623 !important;
	color: rgba(244, 239, 230, 0.5) !important;
	box-shadow: none !important;
	border-top: none !important;
	font-size: 0.5em;
	line-height: 1.2;
	position: relative;
}

#footer::before {
	content: '';
	position: absolute;
	top: 0;
	left: clamp(150px, 18vw, 212px);
	right: 0;
	height: 1px;
	background: var(--gold);
}

#footer .copyright li {
	border-left-color: rgba(244, 239, 230, 0.15) !important;
}

/* Scroll-to-top button */
.scroll-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: rgba(26, 23, 20, 0.65);
	color: var(--parchment) !important;
	border: none !important;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none !important;
	z-index: 1000;
	opacity: 0.75;
	transition: opacity 0.3s, background 0.3s;
	font-size: 1em;
}

.scroll-to-top:hover {
	opacity: 1;
	background: var(--jade) !important;
	color: var(--parchment) !important;
}

@keyframes reveal-up {
	from {
		opacity: 0;
		transform: translateY(1.4em);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes reveal-line {
	from { width: 0; }
	to { width: 3em; }
}

#main > section.revealed header h2::after,
#main > section.reveal-animated header h2::after {
	width: 3em;
}

.reveal-on-scroll {
	opacity: 0;
	transform: translateY(1.4em);
	transition: opacity 0.8s cubic-bezier(0.22, 0.61, 0.36, 1),
	            transform 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal-on-scroll.revealed {
	opacity: 1;
	transform: translateY(0);
}

#main > section.revealed header h2::after {
	width: 3em;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.45s; }
.reveal-delay-5 { transition-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
	.reveal-on-scroll {
		opacity: 1;
		transform: none;
		transition: none;
	}

	#main > section header h2::after {
		width: 3em;
		transition: none;
	}
}

/* Mobile header panel */
@media screen and (max-width: 960px) {
	#main {
		position: relative;
		z-index: 1;
		background: transparent !important;
	}

	#headerToggle .toggle {
		background: transparent !important;
	}

	#headerToggle .toggle:before {
		color: var(--ink) !important;
		background: transparent !important;
		left: 0 !important;
		top: 0 !important;
		width: 100% !important;
		height: 100% !important;
		line-height: 2.25em !important;
		font-size: clamp(18px, 3vw, 24px) !important;
	}

	/* Hero */
	#top.hero-section {
		min-height: 100vh;
		min-height: 100svh;
		background: transparent !important;
	}

	body {
		background: #e8dfd0 !important;
	}

	#main {
		background: #fff !important;
	}

	#top .hero-overlay {
		display: none;
	}

	#top .hero-bg img {
		transform-origin: 55% 23%;
	}

	#top .hero-content {
		min-height: 100vh;
		min-height: 100svh;
	}

	#top .hero-content h2 {
		text-shadow: 0 1px 2px rgba(26, 48, 40, 0.2);
	}

	/* Секции — transparent, картинка сквозь */
	#main > section.two,
	#main > section.four,
	#main > section.one:not(#top) {
		background: transparent !important;
		background-image: none !important;
		box-shadow: none !important;
	}

	#main > section:not(#top) .container {
		background: rgba(255, 255, 255, 0.88);
		border-radius: 2px;
		padding: 1.5em 1.5em;
	}

	#main > section.three .container {
		background: transparent;
	}

	#about .container {
		background: transparent !important;
		padding: 0 clamp(1em, 3vw, 2em) !important;
	}

	#main > section.one:not(#top) .container {
		background: rgba(26, 48, 40, 0.88);
	}

	#main > section.dark:not(#top) .container {
		background: rgba(26, 23, 20, 0.85);
	}

	#footer {
		position: relative;
		z-index: 1;
	padding: 0.42em 0 !important;
		margin-left: 0 !important;
		background: #2a2623 !important;
	}

	#footer::before {
		left: 0;
	}

	.item header {
		background: rgba(244, 239, 230, 0.94) !important;
	}

	/* Stats: компактнее на планшете */
	.tea-stats {
		gap: 1.75em;
	}

	/* Scroll-to-top не закрывает контент */
	.scroll-to-top {
		bottom: 16px;
		right: 16px;
		width: 42px;
		height: 42px;
	}

	/* Типографика */
	#main > section header h2 {
		font-size: 2em !important;
	}

	p {
		max-width: 36em;
	}
}

/* Tablet portrait & narrow desktop (≤736px) */
@media screen and (max-width: 736px) {

	/* Hero */
	#top.hero-section {
		min-height: 100vh;
		min-height: 100svh;
		background: transparent !important;
	}

	#top .hero-overlay {
		display: none;
	}

	#top .hero-bg img {
		transform-origin: 50% 22%;
	}

	#top .hero-content h2 {
		text-shadow: 0 1px 2px rgba(26, 48, 40, 0.18);
	}

	#top .hero-content header {
		margin-top: -28vh;
	}

	#top .hero-content header h2 {
		letter-spacing: 0;
	}

	#top .hero-footer {
		padding-bottom: 2em;
	}

	/* Stats: меньший шрифт */
	.tea-stats {
		gap: 1.25em;
		padding-top: 1.5em;
		margin-top: 1.5em;
	}

	.tea-stats strong {
		font-size: 2em !important;
	}

	/* Scroll-to-top */
	.scroll-to-top {
		bottom: 12px;
		right: 12px;
		width: 38px;
		height: 38px;
		font-size: 0.85em;
	}

	/* Типографика */
	#main > section header h2 {
		font-size: 1.8em !important;
	}

	p {
		max-width: 100%;
		line-height: 1.75em;
	}
}

/* Phone (≤480px) */
@media screen and (max-width: 480px) {

	/* Hero */
	#top .hero-content header {
		margin-top: -34vh;
	}

	#top .hero-bg img {
		transform-origin: 50% 16%;
	}

	#top .hero-content h2 {
		text-shadow: 0 1px 1px rgba(26, 48, 40, 0.15);
	}

	/* Контейнер — минимальные отступы */
	.container {
		padding: 0 12px !important;
	}

	/* Stats в столбик */
	.tea-stats {
		gap: 0.6em;
	}

	.tea-stats strong {
		font-size: 1.4em !important;
	}

	.tea-stats span {
		font-size: 0.55em;
		letter-spacing: 0.06em;
	}

	/* Кнопка отправить — на всю ширину */
	#contact .col-12 input[type="submit"] {
		width: 100%;
		text-align: center;
	}

	/* Меньший отступ у секций */
	#main > section {
		padding: 2em 0 !important;
	}

	#about {
		padding-top: 0 !important;
	}

	/* Featured image не выходит за границы */
	.image.featured {
		margin: 0 0 1.5em 0;
	}
}

/* Tea list (Классификация) */
.tea-list {
	margin-top: 1.5em;
}

.tea-row {
	display: flex;
	align-items: center;
	gap: 1.5em;
	margin-bottom: 0.8em;
}

.tea-row .tea-card {
	flex-shrink: 0;
	width: 11em;
}

.tea-desc {
	flex: 1;
	font-size: 0.8em;
	color: var(--ink);
	line-height: 1.5;
	min-width: 0;
	text-align: left;
}

@media (max-width: 600px) {
	.tea-row {
		flex-direction: column;
		align-items: stretch;
		gap: 0.5em;
	}

	.tea-row .tea-card {
		width: 100%;
	}
}

.tea-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.9em 1em;
	font-family: "Xanmono", sans-serif !important;
	font-size: 0.75em;
	font-weight: 900;
	letter-spacing: 0.01em;
	text-align: center;
	text-decoration: none;
	border-radius: 0;
	color: #fff !important;
	text-shadow: 0 1px 3px rgba(26, 48, 40, 0.25);
	transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.25s ease;
	cursor: pointer;
	min-height: 3.5em;
}

.tea-card small {
	display: block;
	font-size: 0.55em;
	font-weight: 500;
	opacity: 0.7;
	margin-top: 0.3em;
	letter-spacing: 0.03em;
}

.tea-card-odd {
	background: rgba(42, 38, 35, 0.36);
}

.tea-card-odd:hover {
	transform: translateY(-2px);
	background: rgba(26, 48, 40, 0.8);
	color: var(--jade-light) !important;
	box-shadow: 0 0 22px 4px rgba(255, 255, 255, 0.5);
}

.tea-card-even {
	background: rgba(35, 30, 28, 0.32);
}

.tea-card-even:hover {
	transform: translateY(-2px);
	background: rgba(26, 48, 40, 0.8);
	color: var(--jade-light) !important;
	box-shadow: 0 0 22px 4px rgba(255, 255, 255, 0.5);
}

.tea-card-back {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 0.9em 1.6em;
	margin-top: 1.5em;
	font-family: "Xanmono", sans-serif !important;
	font-size: 0.8em;
	font-weight: 900;
	letter-spacing: 0.01em;
	text-decoration: none;
	border-radius: 0;
	color: #fff !important;
	text-shadow: 0 1px 3px rgba(26, 48, 40, 0.25);
	background: rgba(42, 38, 35, 0.36);
	transition: transform 0.25s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.25s ease;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.tea-card-back:hover {
	transform: translateY(-2px);
	background: rgba(26, 48, 40, 0.8);
	color: var(--jade-light) !important;
	box-shadow: 0 0 22px 4px rgba(255, 255, 255, 0.5);
}

@media screen and (max-width: 960px) {
	#main > section.three {
		background-color: var(--parchment-deep) !important;
		font-size: 0.8em !important;
		padding: 4em 0 !important;
	}

	#main > section.three .container {
		background: transparent !important;
		padding: 0 3em 0 3em !important;
	}

	#main > section.three p {
		max-width: none;
		font-size: 1em;
	}

	#main > section.three header h2 {
		font-size: 2.6em !important;
	}
}
